Searched refs:hexDigit (Results 1 - 10 of 10) sorted by relevance

/external/owasp/sanitizer/src/main/org/owasp/html/
H A DEncoding.java231 int hexDigit = (codepoint >>> (digit << 2)) & 0xf;
232 output.append(HEX_NUMERAL[hexDigit]);
/external/icu/icu4c/source/test/intltest/
H A Dconvtest.cpp771 hexDigit(uint8_t digit) { function
782 *out++=hexDigit((uint8_t)(b>>4));
783 *out++=hexDigit((uint8_t)(b&0xf));
790 *out++=hexDigit((uint8_t)(b>>4));
791 *out++=hexDigit((uint8_t)(b&0xf));
812 *out++=hexDigit((uint8_t)((c>>16)&0xf));
814 *out++=hexDigit((uint8_t)((c>>12)&0xf));
815 *out++=hexDigit((uint8_t)((c>>8)&0xf));
816 *out++=hexDigit((uint8_t)((c>>4)&0xf));
817 *out++=hexDigit((uint8_
[all...]
H A Ditspoof.cpp310 int hexDigit = (c>>bitNum) & 0x0f; local
311 if (hexDigit != 0 || doZeroes) {
313 dest.append((UChar)(hexDigit<=9? hexDigit + 0x30: hexDigit -10 + 0x41));
/external/icu/icu4c/source/test/cintltst/
H A Dbocu1tst.c754 hexDigit(uint8_t digit) { function
772 *out++=hexDigit((uint8_t)(b>>4));
773 *out++=hexDigit((uint8_t)(b&0xf));
/external/icu/icu4c/source/tools/makeconv/
H A Dgenmbcs.cpp108 hexDigit(uint8_t digit) { function
116 *s++=hexDigit((uint8_t)(*bytes>>4));
117 *s++=hexDigit((uint8_t)(*bytes&0xf));
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
H A DHttpUrl.java1332 int hexDigit = decodeHexDigit(c);
1333 if (hexDigit == -1) break;
1334 value = (value << 4) + hexDigit;
/external/swiftshader/third_party/LLVM/lib/Support/
H A DAPFloat.cpp324 unsigned int hexDigit; local
339 hexDigit = hexDigitValue(*p);
343 if (hexDigit == -1U)
/external/clang/lib/AST/
H A DItaniumMangle.cpp972 llvm::integerPart hexDigit local
974 hexDigit >>= (digitBitIndex % llvm::integerPartWidth);
975 hexDigit &= 0xF;
982 buffer[stringIndex] = charForHex[hexDigit];
/external/llvm/lib/Support/
H A DAPFloat.cpp316 unsigned int hexDigit; local
331 hexDigit = hexDigitValue(*p);
335 if (hexDigit == -1U)
/external/owasp/sanitizer/distrib/lib/
H A Dowasp-java-html-sanitizer.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/owasp/ org/owasp/html/ org/owasp/html/AbstractTokenStream ...

Completed in 1781 milliseconds