Searched refs:hexDigit (Results 1 – 8 of 8) sorted by relevance
769 hexDigit(uint8_t digit) { in hexDigit() function780 *out++=hexDigit((uint8_t)(b>>4)); in printBytes()781 *out++=hexDigit((uint8_t)(b&0xf)); in printBytes()788 *out++=hexDigit((uint8_t)(b>>4)); in printBytes()789 *out++=hexDigit((uint8_t)(b&0xf)); in printBytes()810 *out++=hexDigit((uint8_t)((c>>16)&0xf)); in printUnicode()812 *out++=hexDigit((uint8_t)((c>>12)&0xf)); in printUnicode()813 *out++=hexDigit((uint8_t)((c>>8)&0xf)); in printUnicode()814 *out++=hexDigit((uint8_t)((c>>4)&0xf)); in printUnicode()815 *out++=hexDigit((uint8_t)(c&0xf)); in printUnicode()
352 int hexDigit = (c>>bitNum) & 0x0f; in appendHexUChar() local353 if (hexDigit != 0 || doZeroes) { in appendHexUChar()355 dest.append((UChar)(hexDigit<=9? hexDigit + 0x30: hexDigit -10 + 0x41)); in appendHexUChar()
231 int hexDigit = (codepoint >>> (digit << 2)) & 0xf; in appendNumericEntity() local232 output.append(HEX_NUMERAL[hexDigit]); in appendNumericEntity()
752 hexDigit(uint8_t digit) { in hexDigit() function770 *out++=hexDigit((uint8_t)(b>>4)); in printBytes()771 *out++=hexDigit((uint8_t)(b&0xf)); in printBytes()
1405 int hexDigit = decodeHexDigit(c);1406 if (hexDigit == -1) break;1407 value = (value << 4) + hexDigit;
106 hexDigit(uint8_t digit) { in hexDigit() function114 *s++=hexDigit((uint8_t)(*bytes>>4)); in printBytes()115 *s++=hexDigit((uint8_t)(*bytes&0xf)); in printBytes()
709 llvm::integerPart hexDigit in mangleFloat() local711 hexDigit >>= (digitBitIndex % llvm::integerPartWidth); in mangleFloat()712 hexDigit &= 0xF; in mangleFloat()719 buffer[stringIndex] = charForHex[hexDigit]; in mangleFloat()
315 unsigned int hexDigit; in trailingHexadecimalFraction() local330 hexDigit = hexDigitValue(*p); in trailingHexadecimalFraction()334 if (hexDigit == -1U) in trailingHexadecimalFraction()