Lines Matching refs:result
20 unsigned long result = 0; in find_first_bit_inv() local
26 result += BITS_PER_LONG; in find_first_bit_inv()
30 return result; in find_first_bit_inv()
33 return result + size; /* Nope. */ in find_first_bit_inv()
35 return result + (__fls(tmp) ^ (BITS_PER_LONG - 1)); in find_first_bit_inv()
43 unsigned long result = offset & ~(BITS_PER_LONG - 1); in find_next_bit_inv() local
48 size -= result; in find_next_bit_inv()
58 result += BITS_PER_LONG; in find_next_bit_inv()
63 result += BITS_PER_LONG; in find_next_bit_inv()
67 return result; in find_next_bit_inv()
72 return result + size; /* Nope. */ in find_next_bit_inv()
74 return result + (__fls(tmp) ^ (BITS_PER_LONG - 1)); in find_next_bit_inv()