Home
last modified time | relevance | path

Searched refs:hexdig (Results 1 – 9 of 9) sorted by relevance

/freebsd/contrib/gdtoa/
H A Dhd_init.c34 unsigned char hexdig[256]; variable
52 htinit(hexdig, USC "0123456789", 0x10); in hexdig_init_D2A()
53 htinit(hexdig, USC "abcdef", 0x10 + 10); in hexdig_init_D2A()
54 htinit(hexdig, USC "ABCDEF", 0x10 + 10); in hexdig_init_D2A()
H A Dgethex.c69 if (!hexdig['0'])
81 if (hexdig[*s])
96 if (!hexdig[*s])
100 if (hexdig[*s])
105 while(hexdig[*s])
118 while(hexdig[*s])
136 if ((n = hexdig[*s]) == 0 || n > 0x19) {
141 while((n = hexdig[*++s]) !=0 && n <= 0x19) {
226 L |= (hexdig[*s1] & 0x0f) << n;
H A Dhexnan.c64 if (!hexdig['0'])
81 if (!(h = hexdig[c])) {
H A Dgdtoaimp.h563 #define hexdig __hexdig_D2A macro
595 extern unsigned char hexdig[];
/freebsd/crypto/openssl/crypto/
H A Do_str.c225 static const char hexdig[] = "0123456789ABCDEF"; in buf2hexstr_sep() local
246 *q++ = hexdig[(*p >> 4) & 0xf]; in buf2hexstr_sep()
247 *q++ = hexdig[*p & 0xf]; in buf2hexstr_sep()
/freebsd/crypto/openssl/crypto/asn1/
H A Da_strex.c238 static const char hexdig[] = "0123456789ABCDEF"; in do_hex_dump() local
245 hextmp[0] = hexdig[*p >> 4]; in do_hex_dump()
246 hextmp[1] = hexdig[*p & 0xf]; in do_hex_dump()
/freebsd/sys/netgraph/
H A Dng_pptpgre.c369 static const char hexdig[16] = "0123456789abcdef"; in ng_pptpgre_newhook() local
381 for (j = 0; j < 16 && hex[i] != hexdig[j]; j++); in ng_pptpgre_newhook()
H A Dng_l2tp.c408 static const char hexdig[16] = "0123456789abcdef"; in ng_l2tp_newhook() local
422 for (j = 0; j < 16 && hex[i] != hexdig[j]; j++); in ng_l2tp_newhook()
H A Dng_pppoe.c971 static const char hexdig[16] = "0123456789abcdef"; in ng_pppoe_rcvmsg() local
978 ourmsg->data[hupos + 2 + i] != hexdig[j]; in ng_pppoe_rcvmsg()