Searched refs:hexdig (Results 1 – 9 of 9) sorted by relevance
| /freebsd/crypto/openssl/include/internal/ |
| H A D | to_hex.h | 14 static ossl_inline size_t to_hex(char *buf, uint8_t n, const char hexdig[17]) in to_hex() 16 *buf++ = hexdig[(n >> 4) & 0xf]; in to_hex() 17 *buf = hexdig[n & 0xf]; in to_hex() 23 static const char hexdig[] = "0123456789abcdef"; in ossl_to_lowerhex() local 25 return to_hex(buf, n, hexdig); in ossl_to_lowerhex()
|
| /freebsd/contrib/gdtoa/ |
| H A D | hd_init.c | 34 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 D | gethex.c | 69 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 D | hexnan.c | 64 if (!hexdig['0']) 81 if (!(h = hexdig[c])) {
|
| H A D | gdtoaimp.h | 563 #define hexdig __hexdig_D2A macro 595 extern unsigned char hexdig[];
|
| /freebsd/crypto/openssl/crypto/ |
| H A D | o_str.c | 434 static const char hexdig[] = "0123456789ABCDEF"; in ossl_to_hex() local 436 return to_hex(buf, n, hexdig); in ossl_to_hex()
|
| /freebsd/sys/netgraph/ |
| H A D | ng_pptpgre.c | 369 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 D | ng_l2tp.c | 408 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 D | ng_pppoe.c | 971 static const char hexdig[16] = "0123456789abcdef"; in ng_pppoe_rcvmsg() local 978 ourmsg->data[hupos + 2 + i] != hexdig[j]; in ng_pppoe_rcvmsg()
|