Lines Matching refs:end_index
14 uint32_t start_index, uint32_t end_index) {
15 if (start_index >= end_index) return false;
16 end_index--;
21 unsigned int end_cell_index = end_index >> Bitmap::kBitsPerCellLog2;
22 MarkBit::CellType end_index_mask = 1u << Bitmap::IndexInCell(end_index);
43 uint32_t start_index, uint32_t end_index) {
44 if (start_index >= end_index) return true;
45 end_index--;
50 unsigned int end_cell_index = end_index >> Bitmap::kBitsPerCellLog2;
51 MarkBit::CellType end_index_mask = 1u << Bitmap::IndexInCell(end_index);