Searched refs:hextoascii (Results 1 - 3 of 3) sorted by relevance

/freebsd-12-stable/stand/common/
H A Dpnp.c175 const char hextoascii[] = "0123456789abcdef"; local
180 idbuf[3] = hextoascii[(data[2] >> 4)];
181 idbuf[4] = hextoascii[(data[2] & 0xf)];
182 idbuf[5] = hextoascii[(data[3] >> 4)];
183 idbuf[6] = hextoascii[(data[3] & 0xf)];
/freebsd-12-stable/usr.sbin/kldxref/
H A Dkldxref.c155 const char hextoascii[] = "0123456789abcdef"; local
162 idbuf[3] = hextoascii[(data[2] >> 4)];
163 idbuf[4] = hextoascii[(data[2] & 0xf)];
164 idbuf[5] = hextoascii[(data[3] >> 4)];
165 idbuf[6] = hextoascii[(data[3] & 0xf)];
/freebsd-12-stable/sys/isa/
H A Disa_common.c1137 const char hextoascii[] = "0123456789abcdef"; local
1144 idbuf[3] = hextoascii[(data[2] >> 4)];
1145 idbuf[4] = hextoascii[(data[2] & 0xf)];
1146 idbuf[5] = hextoascii[(data[3] >> 4)];
1147 idbuf[6] = hextoascii[(data[3] & 0xf)];

Completed in 119 milliseconds