Searched defs:bitmap (Results 1 - 2 of 2) sorted by relevance

/system/extras/ext4_utils/
H A Dext4_utils.c108 int bitmap_get_bit(u8 *bitmap, u32 bit) argument
110 if (bitmap[bit / 8] & (1 << (bit % 8)))
116 void bitmap_clear_bit(u8 *bitmap, u32 bit) argument
118 bitmap[bit / 8] &= ~(1 << (bit % 8));
H A Dallocate.c182 static int bitmap_set_bit(u8 *bitmap, u32 bit) argument
184 if (bitmap[bit / 8] & 1 << (bit % 8))
187 bitmap[bit / 8] |= 1 << (bit % 8);
191 static int bitmap_set_8_bits(u8 *bitmap, u32 bit) argument
193 int ret = bitmap[bit / 8];
194 bitmap[bit / 8] = 0xFF;

Completed in 581 milliseconds