Home
last modified time | relevance | path

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

/external/icu/icu4c/source/extra/uconv/
Duconv.cpp478 nibbleToHex(uint8_t n) { in nibbleToHex() function
814 str.append(nibbleToHex((uint8_t)errorBytes[i] >> 4)); in convertFile()
815 str.append(nibbleToHex((uint8_t)errorBytes[i])); in convertFile()
996 str.append(nibbleToHex((uint8_t)(c >> 20))); in convertFile()
999 str.append(nibbleToHex((uint8_t)(c >> 16))); in convertFile()
1001 str.append(nibbleToHex((uint8_t)(c >> 12))); in convertFile()
1002 str.append(nibbleToHex((uint8_t)(c >> 8))); in convertFile()
1003 str.append(nibbleToHex((uint8_t)(c >> 4))); in convertFile()
1004 str.append(nibbleToHex((uint8_t)c)); in convertFile()