Home
last modified time | relevance | path

Searched refs:hexDigit (Results 1 – 8 of 8) sorted by relevance

/external/icu/icu4c/source/test/intltest/
Dconvtest.cpp769 hexDigit(uint8_t digit) { in hexDigit() function
780 *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()
Ditspoof.cpp352 int hexDigit = (c>>bitNum) & 0x0f; in appendHexUChar() local
353 if (hexDigit != 0 || doZeroes) { in appendHexUChar()
355 dest.append((UChar)(hexDigit<=9? hexDigit + 0x30: hexDigit -10 + 0x41)); in appendHexUChar()
/external/owasp/sanitizer/src/main/org/owasp/html/
DEncoding.java231 int hexDigit = (codepoint >>> (digit << 2)) & 0xf; in appendNumericEntity() local
232 output.append(HEX_NUMERAL[hexDigit]); in appendNumericEntity()
/external/icu/icu4c/source/test/cintltst/
Dbocu1tst.c752 hexDigit(uint8_t digit) { in hexDigit() function
770 *out++=hexDigit((uint8_t)(b>>4)); in printBytes()
771 *out++=hexDigit((uint8_t)(b&0xf)); in printBytes()
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
DHttpUrl.java1405 int hexDigit = decodeHexDigit(c);
1406 if (hexDigit == -1) break;
1407 value = (value << 4) + hexDigit;
/external/icu/icu4c/source/tools/makeconv/
Dgenmbcs.cpp106 hexDigit(uint8_t digit) { in hexDigit() function
114 *s++=hexDigit((uint8_t)(*bytes>>4)); in printBytes()
115 *s++=hexDigit((uint8_t)(*bytes&0xf)); in printBytes()
/external/clang/lib/AST/
DItaniumMangle.cpp709 llvm::integerPart hexDigit in mangleFloat() local
711 hexDigit >>= (digitBitIndex % llvm::integerPartWidth); in mangleFloat()
712 hexDigit &= 0xF; in mangleFloat()
719 buffer[stringIndex] = charForHex[hexDigit]; in mangleFloat()
/external/llvm/lib/Support/
DAPFloat.cpp315 unsigned int hexDigit; in trailingHexadecimalFraction() local
330 hexDigit = hexDigitValue(*p); in trailingHexadecimalFraction()
334 if (hexDigit == -1U) in trailingHexadecimalFraction()