Searched refs:htoc (Results 1 – 2 of 2) sorted by relevance
1186 static uint16_t htoc[16] = {'0', '1', '2', '3', variable1206 unicode[2] = htoc[(uint16_t)(crc & 0xf000) >> 12]; in UdfTxName()1207 unicode[3] = htoc[(uint16_t)(crc & 0xf00) >> 8]; in UdfTxName()1208 unicode[4] = htoc[(uint16_t)(crc & 0xf0) >> 4]; in UdfTxName()1209 unicode[5] = htoc[crc & 0xf]; in UdfTxName()1274 unicode[k++] = htoc[(uint16_t)(crc & 0xf000) >> 12]; in UdfTxName()1275 unicode[k++] = htoc[(uint16_t)(crc & 0xf00) >> 8]; in UdfTxName()1276 unicode[k++] = htoc[(uint16_t)(crc & 0xf0) >> 4]; in UdfTxName()1277 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()