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/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.cpp712 llvm::integerPart hexDigit in mangleFloat() local
714 hexDigit >>= (digitBitIndex % llvm::integerPartWidth); in mangleFloat()
715 hexDigit &= 0xF; in mangleFloat()
722 buffer[stringIndex] = charForHex[hexDigit]; in mangleFloat()
/external/llvm/lib/Support/
DAPFloat.cpp312 unsigned int hexDigit; in trailingHexadecimalFraction() local
327 hexDigit = hexDigitValue(*p); in trailingHexadecimalFraction()
331 if (hexDigit == -1U) in trailingHexadecimalFraction()
/external/owasp/sanitizer/distrib/lib/
Dowasp-java-html-sanitizer.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/owasp/ org/ ...