Lines Matching refs:result
28 unsigned long result = offset & ~(BITS_PER_LONG-1); in find_next_bit() local
33 size -= result; in find_next_bit()
43 result += BITS_PER_LONG; in find_next_bit()
48 result += BITS_PER_LONG; in find_next_bit()
52 return result; in find_next_bit()
58 return result + size; /* Nope. */ in find_next_bit()
60 return result + __ffs(tmp); in find_next_bit()
71 unsigned long result = 0; in find_first_bit() local
77 result += BITS_PER_LONG; in find_first_bit()
81 return result; in find_first_bit()
85 return result + size; /* Nope. */ in find_first_bit()
87 return result + __ffs(tmp); in find_first_bit()