Home
last modified time | relevance | path

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

/openbsd/src/lib/libc/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.c66 if (!hexdig['0'])
78 if (hexdig[*s])
93 if (!hexdig[*s])
97 if (hexdig[*s])
102 while(hexdig[*s])
115 while(hexdig[*s])
133 if ((n = hexdig[*s]) == 0 || n > 0x19) {
138 while((n = hexdig[*++s]) !=0 && n <= 0x19) {
229 L |= (hexdig[*s1] & 0x0f) << n;
Dhexnan.c64 if (!hexdig['0'])
81 if (!(h = hexdig[c])) {
Dgdtoaimp.h540 #define hexdig __hexdig_D2A macro
572 extern unsigned char hexdig[];
/openbsd/src/sys/lib/libsa/
Dprintf.c76 const char hexdig[] = "0123456789abcdef"; variable
233 *p++ = hexdig[ull & 15]; in kdoprnt()
270 *p++ = hexdig[ul % base]; in kprintn()
289 *p++ = hexdig[ull % base]; in kprintn64()
/openbsd/src/lib/libcrypto/asn1/
Da_strex.c268 static const char hexdig[] = "0123456789ABCDEF"; in do_hex_dump() local
275 hextmp[0] = hexdig[*p >> 4]; in do_hex_dump()
276 hextmp[1] = hexdig[*p & 0xf]; in do_hex_dump()