Searched refs:htoc (Results 1 – 2 of 2) sorted by relevance
1197 static uint16_t htoc[16] = {'0', '1', '2', '3', variable1217 unicode[2] = htoc[(uint16_t)(crc & 0xf000) >> 12]; in UdfTxName()1218 unicode[3] = htoc[(uint16_t)(crc & 0xf00) >> 8]; in UdfTxName()1219 unicode[4] = htoc[(uint16_t)(crc & 0xf0) >> 4]; in UdfTxName()1220 unicode[5] = htoc[crc & 0xf]; in UdfTxName()1285 unicode[k++] = htoc[(uint16_t)(crc & 0xf000) >> 12]; in UdfTxName()1286 unicode[k++] = htoc[(uint16_t)(crc & 0xf00) >> 8]; in UdfTxName()1287 unicode[k++] = htoc[(uint16_t)(crc & 0xf0) >> 4]; in UdfTxName()1288 unicode[k++] = htoc[crc & 0xf]; in UdfTxName()
1354 static uint16_t htoc[16] = {'0', '1', '2', '3', variable1811 out_str[k++] = htoc[(uint16_t)(crc & 0xf000) >> 12]; in ud_uncompress()1812 out_str[k++] = htoc[(uint16_t)(crc & 0xf00) >> 8]; in ud_uncompress()1813 out_str[k++] = htoc[(uint16_t)(crc & 0xf0) >> 4]; in ud_uncompress()1814 out_str[k++] = htoc[crc & 0xf]; in ud_uncompress()