Lines Matching refs:result
21 unsigned long result = 0; in find_first_bit_inv() local
27 result += BITS_PER_LONG; in find_first_bit_inv()
31 return result; in find_first_bit_inv()
34 return result + size; /* Nope. */ in find_first_bit_inv()
36 return result + (__fls(tmp) ^ (BITS_PER_LONG - 1)); in find_first_bit_inv()
44 unsigned long result = offset & ~(BITS_PER_LONG - 1); in find_next_bit_inv() local
49 size -= result; in find_next_bit_inv()
59 result += BITS_PER_LONG; in find_next_bit_inv()
64 result += BITS_PER_LONG; in find_next_bit_inv()
68 return result; in find_next_bit_inv()
73 return result + size; /* Nope. */ in find_next_bit_inv()
75 return result + (__fls(tmp) ^ (BITS_PER_LONG - 1)); in find_next_bit_inv()