PKUOS - Pintos
Pintos source browser for PKU Operating System course
|
From the outside, a bitmap is an array of bits. More...
Data Fields | |
size_t | bit_cnt |
Number of bits. More... | |
elem_type * | bits |
Elements that represent bits. More... | |
From the outside, a bitmap is an array of bits.
From the inside, it's an array of elem_type (defined above) that simulates an array of bits.
size_t bitmap::bit_cnt |
Number of bits.
Definition at line 29 of file bitmap.c.
Referenced by bitmap_buf_size(), bitmap_contains(), bitmap_count(), bitmap_create(), bitmap_create_in_buf(), bitmap_dump(), bitmap_scan(), bitmap_set(), bitmap_set_multiple(), bitmap_size(), bitmap_test(), and last_mask().
elem_type* bitmap::bits |
Elements that represent bits.
Definition at line 30 of file bitmap.c.
Referenced by bitmap_create(), bitmap_create_in_buf(), bitmap_destroy(), bitmap_dump(), bitmap_flip(), bitmap_mark(), bitmap_reset(), and bitmap_test().