Searched refs:hexDigit (Results 1 – 8 of 8) sorted by relevance
920 hexDigit(uint8_t digit) { in hexDigit() function931 *out++=hexDigit((uint8_t)(b>>4)); in printBytes()932 *out++=hexDigit((uint8_t)(b&0xf)); in printBytes()939 *out++=hexDigit((uint8_t)(b>>4)); in printBytes()940 *out++=hexDigit((uint8_t)(b&0xf)); in printBytes()961 *out++=hexDigit((uint8_t)((c>>16)&0xf)); in printUnicode()963 *out++=hexDigit((uint8_t)((c>>12)&0xf)); in printUnicode()964 *out++=hexDigit((uint8_t)((c>>8)&0xf)); in printUnicode()965 *out++=hexDigit((uint8_t)((c>>4)&0xf)); in printUnicode()966 *out++=hexDigit((uint8_t)(c&0xf)); in printUnicode()
328 int hexDigit = (c>>bitNum) & 0x0f; in appendHexUChar() local329 if (hexDigit != 0 || doZeroes) { in appendHexUChar()331 dest.append((UChar)(hexDigit<=9? hexDigit + 0x30: hexDigit -10 + 0x41)); in appendHexUChar()
363 return hexDigit[(nibble & 0xF)]; in toHex()368 private static final char[] hexDigit = { field in BundleItem
756 hexDigit(uint8_t digit) { in hexDigit() function774 *out++=hexDigit((uint8_t)(b>>4)); in printBytes()775 *out++=hexDigit((uint8_t)(b&0xf)); in printBytes()
111 hexDigit(uint8_t digit) { in hexDigit() function119 *s++=hexDigit((uint8_t)(*bytes>>4)); in printBytes()120 *s++=hexDigit((uint8_t)(*bytes&0xf)); in printBytes()
1217 UINT hexDigit = (val & 0xF000) >> 12; in ContinueString() local1219 if (hexDigit < 10) in ContinueString()1220 m_SB.Add(L'0' + (WCHAR)hexDigit); in ContinueString()1222 m_SB.Add(L'A' + (WCHAR)hexDigit); in ContinueString()
442 unsigned int hexDigit; in trailingHexadecimalFraction() local458 hexDigit = hexDigitValue(*p); in trailingHexadecimalFraction()462 if (hexDigit == -1U) in trailingHexadecimalFraction()