Searched refs:hexdig (Results 1 - 8 of 8) sorted by relevance

/freebsd-9.3-release/contrib/gdtoa/
H A Dhd_init.c34 unsigned char hexdig[256]; variable
52 htinit(hexdig, USC "0123456789", 0x10);
53 htinit(hexdig, USC "abcdef", 0x10 + 10);
54 htinit(hexdig, USC "ABCDEF", 0x10 + 10);
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-9.3-release/crypto/openssl/crypto/asn1/
H A Da_strex.c271 static const char hexdig[] = "0123456789ABCDEF"; local
278 hextmp[0] = hexdig[*p >> 4];
279 hextmp[1] = hexdig[*p & 0xf];
/freebsd-9.3-release/crypto/openssl/crypto/x509v3/
H A Dv3_utl.c407 const static char hexdig[] = "0123456789ABCDEF"; local
416 *q++ = hexdig[(*p >> 4) & 0xf];
417 *q++ = hexdig[*p & 0xf];
/freebsd-9.3-release/sys/netgraph/
H A Dng_pptpgre.c320 static const char hexdig[16] = "0123456789abcdef"; local
332 for (j = 0; j < 16 && hex[i] != hexdig[j]; j++);
H A Dng_l2tp.c403 static const char hexdig[16] = "0123456789abcdef"; local
417 for (j = 0; j < 16 && hex[i] != hexdig[j]; j++);

Completed in 76 milliseconds