Home | History | Annotate | Download | only in common

Lines Matching refs:int8_t

55 U_CAPI int8_t U_EXPORT2
59 return (int8_t)GET_CATEGORY(props);
445 u_digit(UChar32 ch, int8_t radix) {
446 int8_t value;
448 value=(int8_t)u_charDigitValue(ch);
452 value=(int8_t)(ch-0x57); /* ch - 'a' + 10 */
454 value=(int8_t)(ch-0x37); /* ch - 'A' + 10 */
456 value=(int8_t)(ch-0xFF37); /* fullwidth ASCII a-z */
458 value=(int8_t)(ch-0xFF17); /* fullwidth ASCII A-Z */
464 return (int8_t)((value<radix) ? value : -1);
468 u_forDigit(int32_t digit, int8_t radix) {