Searched refs:DIGIT_0 (Results 1 – 3 of 3) sorted by relevance
33 #define DIGIT_0 0x0030 macro43 if( ((c>=DIGIT_0)&&(c<=DIGIT_9)) || in ufmt_digitvalue()47 return c - DIGIT_0 - (c >= 0x0041 ? (c >= 0x0061 ? 39 : 7) : 0); in ufmt_digitvalue()64 #define TO_UC_DIGIT(a) a <= 9 ? (DIGIT_0 + a) : (0x0037 + a)65 #define TO_LC_DIGIT(a) a <= 9 ? (DIGIT_0 + a) : (0x0057 + a)89 buffer[length++] = DIGIT_0; /*zero padding */ in ufmt_64tou()184 while(buffer[count] == DIGIT_0 || u_isspace(buffer[count])) { in ufmt_utop()
4 …DIGIT_0:48,DIGIT_9:57,SEMICOLON:59,LESS_THAN_SIGN:60,EQUALS_SIGN:61,GREATER_THAN_SIGN:62,QUESTION_… property