Searched defs:htoc (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/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];
1218 unicode[3] = htoc[(uint16_t)(crc & 0xf00) >> 8];
1219 unicode[4] = htoc[(uint16_t)(crc & 0xf0) >> 4];
1220 unicode[5] = htoc[crc & 0xf];
1285 unicode[k++] = htoc[(uint16_t)(crc & 0xf000) >> 12];
1286 unicode[k++] = htoc[(uint16_t)(crc & 0xf00) >> 8];
1287 unicode[k++] = htoc[(uint16_t)(crc & 0xf0) >> 4];
1288 unicode[k++] = htoc[crc & 0xf];
/illumos-gate/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];
1812 out_str[k++] = htoc[(uint16_t)(crc & 0xf00) >> 8];
1813 out_str[k++] = htoc[(uint16_t)(crc & 0xf0) >> 4];
1814 out_str[k++] = htoc[crc & 0xf];

Completed in 217 milliseconds