Lines Matching refs:result
19 unsigned long result = 0; in find_first_bit_inv() local
25 result += BITS_PER_LONG; in find_first_bit_inv()
29 return result; in find_first_bit_inv()
32 return result + size; /* Nope. */ in find_first_bit_inv()
34 return result + (__fls(tmp) ^ (BITS_PER_LONG - 1)); in find_first_bit_inv()
42 unsigned long result = offset & ~(BITS_PER_LONG - 1); in find_next_bit_inv() local
47 size -= result; in find_next_bit_inv()
57 result += BITS_PER_LONG; in find_next_bit_inv()
62 result += BITS_PER_LONG; in find_next_bit_inv()
66 return result; in find_next_bit_inv()
71 return result + size; /* Nope. */ in find_next_bit_inv()
73 return result + (__fls(tmp) ^ (BITS_PER_LONG - 1)); in find_next_bit_inv()