Home
last modified time | relevance | path

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

/third_party/icu/icu4c/source/test/intltest/
Dconvtest.cpp920 hexDigit(uint8_t digit) { in hexDigit() function
931 *out++=hexDigit((uint8_t)(b>>4)); in printBytes()
932 *out++=hexDigit((uint8_t)(b&0xf)); in printBytes()
939 *out++=hexDigit((uint8_t)(b>>4)); in printBytes()
940 *out++=hexDigit((uint8_t)(b&0xf)); in printBytes()
961 *out++=hexDigit((uint8_t)((c>>16)&0xf)); in printUnicode()
963 *out++=hexDigit((uint8_t)((c>>12)&0xf)); in printUnicode()
964 *out++=hexDigit((uint8_t)((c>>8)&0xf)); in printUnicode()
965 *out++=hexDigit((uint8_t)((c>>4)&0xf)); in printUnicode()
966 *out++=hexDigit((uint8_t)(c&0xf)); in printUnicode()
Ditspoof.cpp328 int hexDigit = (c>>bitNum) & 0x0f; in appendHexUChar() local
329 if (hexDigit != 0 || doZeroes) { in appendHexUChar()
331 dest.append((UChar)(hexDigit<=9? hexDigit + 0x30: hexDigit -10 + 0x41)); in appendHexUChar()
/third_party/icu/tools/unicodetools/com/ibm/rbm/
DBundleItem.java363 return hexDigit[(nibble & 0xF)]; in toHex()
368 private static final char[] hexDigit = { field in BundleItem
/third_party/icu/icu4c/source/test/cintltst/
Dbocu1tst.c756 hexDigit(uint8_t digit) { in hexDigit() function
774 *out++=hexDigit((uint8_t)(b>>4)); in printBytes()
775 *out++=hexDigit((uint8_t)(b&0xf)); in printBytes()
/third_party/icu/icu4c/source/tools/makeconv/
Dgenmbcs.cpp111 hexDigit(uint8_t digit) { in hexDigit() function
119 *s++=hexDigit((uint8_t)(*bytes>>4)); in printBytes()
120 *s++=hexDigit((uint8_t)(*bytes&0xf)); in printBytes()
/third_party/skia/third_party/externals/icu/source/tools/makeconv/
Dgenmbcs.cpp111 hexDigit(uint8_t digit) { in hexDigit() function
119 *s++=hexDigit((uint8_t)(*bytes>>4)); in printBytes()
120 *s++=hexDigit((uint8_t)(*bytes&0xf)); in printBytes()
/third_party/skia/third_party/externals/d3d12allocator/src/
DD3D12MemAlloc.cpp1217 UINT hexDigit = (val & 0xF000) >> 12; in ContinueString() local
1219 if (hexDigit < 10) in ContinueString()
1220 m_SB.Add(L'0' + (WCHAR)hexDigit); in ContinueString()
1222 m_SB.Add(L'A' + (WCHAR)hexDigit); in ContinueString()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DAPFloat.cpp442 unsigned int hexDigit; in trailingHexadecimalFraction() local
458 hexDigit = hexDigitValue(*p); in trailingHexadecimalFraction()
462 if (hexDigit == -1U) in trailingHexadecimalFraction()