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

/external/dropbear/
H A Dsignkey.c262 static char hexdig(unsigned char x) { function
301 ret[pos] = hexdig(hash[i] >> 4);
302 ret[pos+1] = hexdig(hash[i] & 0x0f);
335 ret[pos] = hexdig(hash[i] >> 4);
336 ret[pos+1] = hexdig(hash[i] & 0x0f);
/external/chromium_org/third_party/openssl/openssl/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];
/external/openssl/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];
/external/chromium_org/third_party/openssl/openssl/crypto/x509v3/
H A Dv3_utl.c368 static const char hexdig[] = "0123456789ABCDEF"; local
376 *q++ = hexdig[(*p >> 4) & 0xf];
377 *q++ = hexdig[*p & 0xf];
/external/openssl/crypto/x509v3/
H A Dv3_utl.c368 static const char hexdig[] = "0123456789ABCDEF"; local
376 *q++ = hexdig[(*p >> 4) & 0xf];
377 *q++ = hexdig[*p & 0xf];
/external/chromium/base/third_party/dmg_fp/
H A Ddtoa.cc1490 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);
1562 if (!hexdig['0'])
1574 if ((c1 = hexdig[c]))
1781 if (!hexdig['0'])
1792 if (hexdig[*s])
1807 if (!hexdig[*s])
1811 if (hexdig[*
[all...]
/external/chromium_org/base/third_party/dmg_fp/
H A Ddtoa.cc1496 static unsigned char hexdig[256]; member in namespace:dmg_fp
1518 htinit(hexdig, USC "0123456789", 0x10);
1519 htinit(hexdig, USC "abcdef", 0x10 + 10);
1520 htinit(hexdig, USC "ABCDEF", 0x10 + 10);
1568 if (!hexdig['0'])
1580 if ((c1 = hexdig[c]))
1787 if (!hexdig['0'])
1798 if (hexdig[*s])
1813 if (!hexdig[*s])
1817 if (hexdig[*
[all...]

Completed in 104 milliseconds