Lines Matching defs:startbit
41 (n1->startbit == n2->startbit) &&
66 new->startbit = n->startbit;
129 offset = e_iter->startbit;
185 offset >= e_iter->startbit + EBITMAP_SIZE) {
190 e_iter->startbit = offset - (offset % EBITMAP_SIZE);
195 ebmap->highbit = e_iter->startbit + EBITMAP_SIZE;
231 while (n1 && n2 && (n1->startbit <= n2->startbit)) {
232 if (n1->startbit < n2->startbit) {
239 u32 lastsetbit = n2->startbit + i * EBITMAP_UNIT_SIZE +
269 while (n && (n->startbit <= bit)) {
270 if ((n->startbit + EBITMAP_SIZE) > bit)
284 while (n && n->startbit <= bit) {
285 if ((n->startbit + EBITMAP_SIZE) > bit) {
304 e->highbit = prev->startbit
328 new->startbit = bit - (bit % EBITMAP_SIZE);
333 e->highbit = new->startbit + EBITMAP_SIZE;
368 u32 mapunit, count, startbit, index;
410 startbit = le32_to_cpu(ebitmap_start);
412 if (startbit & (mapunit - 1)) {
415 startbit, mapunit);
418 if (startbit > e->highbit - mapunit) {
421 startbit, (e->highbit - mapunit));
425 if (!n || startbit >= n->startbit + EBITMAP_SIZE) {
434 tmp->startbit = startbit - (startbit % EBITMAP_SIZE);
440 } else if (startbit <= n->startbit) {
443 startbit, n->startbit);
454 index = (startbit - n->startbit) / EBITMAP_UNIT_SIZE;
553 hash = jhash_1word(node->startbit, hash);