Home | History | Annotate | Download | only in intltest

Lines Matching defs:toHex

1599 static inline UChar toHex(int32_t i) {
1611 result += toHex((c >> 12) & 0xF);
1612 result += toHex((c >> 8) & 0xF);
1613 result += toHex((c >> 4) & 0xF);
1614 result += toHex( c & 0xF);