Home
last modified time | relevance | path

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

/third_party/FreeBSD/contrib/gdtoa/
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()
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;
Dhexnan.c64 if (!hexdig['0'])
81 if (!(h = hexdig[c])) {
Dgdtoaimp.h560 #define hexdig __hexdig_D2A macro
592 extern unsigned char hexdig[];
/third_party/openssl/crypto/
Do_str.c225 static const char hexdig[] = "0123456789ABCDEF"; in buf2hexstr_sep() local
244 *q++ = hexdig[(*p >> 4) & 0xf]; in buf2hexstr_sep()
245 *q++ = hexdig[*p & 0xf]; in buf2hexstr_sep()
/third_party/openssl/crypto/asn1/
Da_strex.c237 static const char hexdig[] = "0123456789ABCDEF"; in do_hex_dump() local
244 hextmp[0] = hexdig[*p >> 4]; in do_hex_dump()
245 hextmp[1] = hexdig[*p & 0xf]; in do_hex_dump()