Searched refs:DIGIT (Results 1 – 25 of 194) sorted by relevance
12345678
22 17 number : DIGIT23 18 | number DIGIT41 DIGIT shift 360 number : DIGIT . (17)83 DIGIT shift 396 DIGIT shift 3135 number : number . DIGIT (18)137 DIGIT shift 23158 DIGIT shift 3217 DIGIT shift 3[all …]
21 #define DIGIT(x) (isdigit(x) ? (x) - '0' : islower(x) ? (x) + 10 - 'a' : (x) + 10 - 'A') macro110 val = (DIGIT(*str) << 6) + (DIGIT(*(str + 1)) << 3) + in backslash()111 DIGIT(*(str + 2)); in backslash()127 val = DIGIT(*(str + 2)); in backslash()129 val = (val << 4) + DIGIT(*(str + 3)); in backslash()