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

/freebsd-10.1-release/contrib/gdb/gdb/
H A Ddsrec.c224 const static char hextab[] = "0123456789ABCDEF"; local
300 *p++ = hextab[k >> 4];
301 *p++ = hextab[k & 0xf];
307 *p++ = hextab[checksum >> 4];
308 *p++ = hextab[checksum & 0xf];
/freebsd-10.1-release/contrib/telnet/libtelnet/
H A Dpk.c216 static char hextab[17] = "0123456789ABCDEF"; variable
233 out[op++] = hextab[(buf[l] & 0xf0) >> 4];
234 out[op++] = hextab[(buf[l] & 0x0f)];
/freebsd-10.1-release/contrib/ipfilter/ipsend/
H A Ddlcommon.c1152 static char hextab[] = { local
1157 return (hextab[c & 0x0f]);

Completed in 53 milliseconds