Home
last modified time | relevance | path

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

/titanic_50/usr/src/cmd/fs.d/udfs/fstyp/
H A Dud_lib.c1197 static uint16_t htoc[16] = {'0', '1', '2', '3', variable
1217 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()
/titanic_50/usr/src/uts/common/fs/udfs/
H A Dudf_subr.c1354 static uint16_t htoc[16] = {'0', '1', '2', '3', variable
1811 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()