Searched refs:EBITMAP_SIZE (Results 1 – 2 of 2) sorted by relevance
32 !memcmp(n1->maps, n2->maps, EBITMAP_SIZE / 8)) in ebitmap_cmp()60 memcpy(new->maps, n->maps, EBITMAP_SIZE / 8); in ebitmap_cpy()117 if ( (n->startbit + EBITMAP_SIZE) > bit ) in ebitmap_get_bit()133 if ( (n->startbit + EBITMAP_SIZE) > bit ) in ebitmap_set_bit()145 s = find_first_bit(n->maps, EBITMAP_SIZE); in ebitmap_set_bit()146 if ( s < EBITMAP_SIZE ) in ebitmap_set_bit()182 new->startbit = bit - (bit % EBITMAP_SIZE); in ebitmap_set_bit()187 e->highbit = new->startbit + EBITMAP_SIZE; in ebitmap_set_bit()250 e->highbit += EBITMAP_SIZE - 1; in ebitmap_read()251 e->highbit -= (e->highbit % EBITMAP_SIZE); in ebitmap_read()[all …]
22 #define EBITMAP_SIZE (EBITMAP_UNIT_NUMS * EBITMAP_UNIT_SIZE) macro48 ofs = find_first_bit((*n)->maps, EBITMAP_SIZE); in ebitmap_start_positive()49 if ( ofs < EBITMAP_SIZE ) in ebitmap_start_positive()66 ofs = find_next_bit((*n)->maps, EBITMAP_SIZE, bit - (*n)->startbit + 1); in ebitmap_next_positive()67 if ( ofs < EBITMAP_SIZE ) in ebitmap_next_positive()72 ofs = find_first_bit((*n)->maps, EBITMAP_SIZE); in ebitmap_next_positive()73 if ( ofs < EBITMAP_SIZE ) in ebitmap_next_positive()
Completed in 3 milliseconds