Find the first zero bit in the bitmap, at the specified offset.
| 80 | |
| 81 | // Find the first zero bit in the bitmap, at the specified offset. |
| 82 | inline bool BitmapFindFirstZero(const uint8_t *bitmap, size_t offset, |
| 83 | size_t bitmap_size, size_t *idx) { |
| 84 | return BitmapFindFirst(bitmap, offset, bitmap_size, false, idx); |
| 85 | } |
| 86 | |
| 87 | // Returns true if the bitmap contains only ones. |
| 88 | inline bool BitmapIsAllSet(const uint8_t *bitmap, size_t offset, size_t bitmap_size) { |