Home
last modified time | relevance | path

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

/third_party/icu/icu4c/source/test/intltest/
Dconvtest.cpp912 hexDigit(uint8_t digit) { in hexDigit() function
923 *out++=hexDigit((uint8_t)(b>>4)); in printBytes()
924 *out++=hexDigit((uint8_t)(b&0xf)); in printBytes()
931 *out++=hexDigit((uint8_t)(b>>4)); in printBytes()
932 *out++=hexDigit((uint8_t)(b&0xf)); in printBytes()
953 *out++=hexDigit((uint8_t)((c>>16)&0xf)); in printUnicode()
955 *out++=hexDigit((uint8_t)((c>>12)&0xf)); in printUnicode()
956 *out++=hexDigit((uint8_t)((c>>8)&0xf)); in printUnicode()
957 *out++=hexDigit((uint8_t)((c>>4)&0xf)); in printUnicode()
958 *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.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()
/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/flutter/skia/third_party/externals/icu/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()
/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/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()