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

/barrelfish-master/lib/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[];
/barrelfish-master/lib/openssl-1.0.0d/crypto/asn1/
H A Da_strex.c240 static const char hexdig[] = "0123456789ABCDEF"; local
247 hextmp[0] = hexdig[*p >> 4];
248 hextmp[1] = hexdig[*p & 0xf];
/barrelfish-master/lib/openssl-1.0.0d/crypto/x509v3/
H A Dv3_utl.c368 const static char hexdig[] = "0123456789ABCDEF"; local
376 *q++ = hexdig[(*p >> 4) & 0xf];
377 *q++ = hexdig[*p & 0xf];

Completed in 41 milliseconds