Lines Matching refs:c
11 char c; in hex_digit_value() local
13 c = ch - '0'; in hex_digit_value()
15 c = ch - 'a' + 10; in hex_digit_value()
17 c = ch - 'A' + 10; in hex_digit_value()
19 c = -1; in hex_digit_value()
21 return c; in hex_digit_value()
30 char c, digit; in strtoul_hex() local
39 c = *s; in strtoul_hex()
41 } while (is_space(c)); in strtoul_hex()
43 if ((c == '0') && ((*s == 'x') || (*s == 'X'))) { in strtoul_hex()
44 c = s[1]; in strtoul_hex()
52 digit = hex_digit_value(c); in strtoul_hex()
62 c = *s; in strtoul_hex()
64 digit = hex_digit_value(c); in strtoul_hex()