HomeSort by relevance Sort by last modified time
    Searched refs:hexdig (Results 1 - 10 of 10) sorted by null

  /bionic/libc/upstream-openbsd/lib/libc/gdtoa/
hd_init.c 34 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);
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) {
232 L |= (hexdig[*s1] & 0x0f) << n;
hexnan.c 64 if (!hexdig['0'])
81 if (!(h = hexdig[c])) {
gdtoaimp.h 541 #define hexdig __hexdig_D2A macro
572 extern unsigned char hexdig[];
  /external/chromium_org/third_party/openssl/openssl/crypto/asn1/
a_strex.c 240 static const char hexdig[] = "0123456789ABCDEF"; local
247 hextmp[0] = hexdig[*p >> 4];
248 hextmp[1] = hexdig[*p & 0xf];
  /external/openssl/crypto/asn1/
a_strex.c 240 static const char hexdig[] = "0123456789ABCDEF"; local
247 hextmp[0] = hexdig[*p >> 4];
248 hextmp[1] = hexdig[*p & 0xf];
  /external/chromium_org/third_party/openssl/openssl/crypto/x509v3/
v3_utl.c 368 static const char hexdig[] = "0123456789ABCDEF"; local
376 *q++ = hexdig[(*p >> 4) & 0xf];
377 *q++ = hexdig[*p & 0xf];
  /external/openssl/crypto/x509v3/
v3_utl.c 368 static const char hexdig[] = "0123456789ABCDEF"; local
376 *q++ = hexdig[(*p >> 4) & 0xf];
377 *q++ = hexdig[*p & 0xf];
  /ndk/sources/android/support/src/stdio/
strtod.c 435 CONST unsigned char hexdig[256] = { variable
    [all...]
  /external/chromium_org/base/third_party/dmg_fp/
dtoa.cc 1490 static unsigned char hexdig[256]; member in namespace:dmg_fp
1512 htinit(hexdig, USC "0123456789", 0x10);
1513 htinit(hexdig, USC "abcdef", 0x10 + 10);
1514 htinit(hexdig, USC "ABCDEF", 0x10 + 10);
    [all...]

Completed in 271 milliseconds