Searched refs:result (Results 1 – 4 of 4) sorted by relevance
/lib/ |
D | find_next_bit.c | 27 unsigned long result = offset & ~(BITS_PER_LONG-1); in find_next_bit() local 32 size -= result; in find_next_bit() 42 result += BITS_PER_LONG; in find_next_bit() 47 result += BITS_PER_LONG; in find_next_bit() 51 return result; in find_next_bit() 57 return result + size; /* Nope. */ in find_next_bit() 59 return result + __ffs(tmp); in find_next_bit() 71 unsigned long result = offset & ~(BITS_PER_LONG-1); in find_next_zero_bit() local 76 size -= result; in find_next_zero_bit() 86 result += BITS_PER_LONG; in find_next_zero_bit() [all …]
|
D | parser.c | 123 static int match_number(substring_t *s, int *result, int base) in match_number() argument 134 *result = simple_strtol(buf, &endp, base); in match_number() 151 int match_int(substring_t *s, int *result) in match_int() argument 153 return match_number(s, result, 0); in match_int() 165 int match_octal(substring_t *s, int *result) in match_octal() argument 167 return match_number(s, result, 8); in match_octal() 179 int match_hex(substring_t *s, int *result) in match_hex() argument 181 return match_number(s, result, 16); in match_hex()
|
D | vsprintf.c | 56 unsigned long result = 0; in simple_strtoul() local 70 result = result * base + value; in simple_strtoul() 76 return result; in simple_strtoul() 102 unsigned long long result = 0; in simple_strtoull() local 116 result = result * base + value; in simple_strtoull() 122 return result; in simple_strtoull()
|
D | Kconfig.debug | 107 most likely result in an oops. 119 result in a larger kernel.
|