Home
last modified time | relevance | path

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

/external/turbine/java/com/google/turbine/parse/
DUnicodeEscapePreprocessor.java76 char acc = (char) ((hexDigit(ch) & 0xff) << 12); in unicodeEscape()
78 acc |= (char) ((hexDigit(ch) & 0xff) << 8); in unicodeEscape()
80 acc |= (char) ((hexDigit(ch) & 0xff) << 4); in unicodeEscape()
82 acc |= (char) (hexDigit(ch) & 0xff); in unicodeEscape()
88 private static int hexDigit(char d) { in hexDigit() method in UnicodeEscapePreprocessor
/external/icu/icu4c/source/test/intltest/
Dconvtest.cpp841 hexDigit(uint8_t digit) { in hexDigit() function
852 *out++=hexDigit((uint8_t)(b>>4)); in printBytes()
853 *out++=hexDigit((uint8_t)(b&0xf)); in printBytes()
860 *out++=hexDigit((uint8_t)(b>>4)); in printBytes()
861 *out++=hexDigit((uint8_t)(b&0xf)); in printBytes()
882 *out++=hexDigit((uint8_t)((c>>16)&0xf)); in printUnicode()
884 *out++=hexDigit((uint8_t)((c>>12)&0xf)); in printUnicode()
885 *out++=hexDigit((uint8_t)((c>>8)&0xf)); in printUnicode()
886 *out++=hexDigit((uint8_t)((c>>4)&0xf)); in printUnicode()
887 *out++=hexDigit((uint8_t)(c&0xf)); in printUnicode()
Ditspoof.cpp310 int hexDigit = (c>>bitNum) & 0x0f; in appendHexUChar() local
311 if (hexDigit != 0 || doZeroes) { in appendHexUChar()
313 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.c754 hexDigit(uint8_t digit) { in hexDigit() function
772 *out++=hexDigit((uint8_t)(b>>4)); in printBytes()
773 *out++=hexDigit((uint8_t)(b&0xf)); in printBytes()
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
DHttpUrl.java1332 int hexDigit = decodeHexDigit(c);
1333 if (hexDigit == -1) break;
1334 value = (value << 4) + hexDigit;
/external/icu/icu4c/source/tools/makeconv/
Dgenmbcs.cpp110 hexDigit(uint8_t digit) { in hexDigit() function
118 *s++=hexDigit((uint8_t)(*bytes>>4)); in printBytes()
119 *s++=hexDigit((uint8_t)(*bytes&0xf)); in printBytes()
/external/clang/lib/AST/
DItaniumMangle.cpp972 llvm::integerPart hexDigit in mangleFloat() local
974 hexDigit >>= (digitBitIndex % llvm::integerPartWidth); in mangleFloat()
975 hexDigit &= 0xF; in mangleFloat()
982 buffer[stringIndex] = charForHex[hexDigit]; in mangleFloat()
/external/swiftshader/third_party/LLVM/lib/Support/
DAPFloat.cpp324 unsigned int hexDigit; in trailingHexadecimalFraction() local
339 hexDigit = hexDigitValue(*p); in trailingHexadecimalFraction()
343 if (hexDigit == -1U) in trailingHexadecimalFraction()
/external/llvm/lib/Support/
DAPFloat.cpp316 unsigned int hexDigit; in trailingHexadecimalFraction() local
331 hexDigit = hexDigitValue(*p); in trailingHexadecimalFraction()
335 if (hexDigit == -1U) in trailingHexadecimalFraction()
/external/owasp/sanitizer/distrib/lib/
Dowasp-java-html-sanitizer.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/owasp/ org/ ...
/external/error_prone/javac/
Djavac-9+181-r4173-1.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ META- ...