Searched refs:hexDigit (Results 1 – 9 of 9) sorted by relevance
912 hexDigit(uint8_t digit) { in hexDigit() function923 *out++=hexDigit((uint8_t)(b>>4)); in printBytes()924 *out++=hexDigit((uint8_t)(b&0xf)); in printBytes()931 *out++=hexDigit((uint8_t)(b>>4)); in printBytes()932 *out++=hexDigit((uint8_t)(b&0xf)); in printBytes()953 *out++=hexDigit((uint8_t)((c>>16)&0xf)); in printUnicode()955 *out++=hexDigit((uint8_t)((c>>12)&0xf)); in printUnicode()956 *out++=hexDigit((uint8_t)((c>>8)&0xf)); in printUnicode()957 *out++=hexDigit((uint8_t)((c>>4)&0xf)); in printUnicode()958 *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
754 hexDigit(uint8_t digit) { in hexDigit() function772 *out++=hexDigit((uint8_t)(b>>4)); in printBytes()773 *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()
110 hexDigit(uint8_t digit) { in hexDigit() function118 *s++=hexDigit((uint8_t)(*bytes>>4)); in printBytes()119 *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()