Home
last modified time | relevance | path

Searched refs:hextab (Results 1 – 5 of 5) sorted by relevance

/NextBSD/contrib/subversion/subversion/libsvn_subr/
HDquoprint.c65 static const char hextab[] = "0123456789ABCDEF"; variable
101 buf[1] = hextab[(*p >> 4) & 0xf]; in encode_bytes()
102 buf[2] = hextab[*p & 0xf]; in encode_bytes()
232 find1 = strchr(hextab, inbuf[1]); in decode_bytes()
233 find2 = strchr(hextab, inbuf[2]); in decode_bytes()
236 c = (char)(((find1 - hextab) << 4) | (find2 - hextab)); in decode_bytes()
/NextBSD/contrib/gdb/gdb/
HDdsrec.c224 const static char hextab[] = "0123456789ABCDEF"; in make_srec() local
300 *p++ = hextab[k >> 4]; in make_srec()
301 *p++ = hextab[k & 0xf]; in make_srec()
307 *p++ = hextab[checksum >> 4]; in make_srec()
308 *p++ = hextab[checksum & 0xf]; in make_srec()
/NextBSD/contrib/dma/
HDcrypto.c263 static char hextab[] = "0123456789abcdef"; in smtp_auth_md5() local
288 ascii_digest[2*i] = hextab[digest[i] >> 4]; in smtp_auth_md5()
289 ascii_digest[2*i+1] = hextab[digest[i] & 15]; in smtp_auth_md5()
/NextBSD/contrib/telnet/libtelnet/
HDpk.c216 static char hextab[17] = "0123456789ABCDEF"; variable
233 out[op++] = hextab[(buf[l] & 0xf0) >> 4]; in pk_encode()
234 out[op++] = hextab[(buf[l] & 0x0f)]; in pk_encode()
/NextBSD/contrib/ipfilter/ipsend/
HDdlcommon.c1152 static char hextab[] = { local
1157 return (hextab[c & 0x0f]);