Searched refs:hexdig (Results 1 – 9 of 9) sorted by relevance
/external/dropbear/ |
D | signkey.c | 262 static char hexdig(unsigned char x) { in hexdig() function 301 ret[pos] = hexdig(hash[i] >> 4); in sign_key_md5_fingerprint() 302 ret[pos+1] = hexdig(hash[i] & 0x0f); in sign_key_md5_fingerprint() 335 ret[pos] = hexdig(hash[i] >> 4); in sign_key_sha1_fingerprint() 336 ret[pos+1] = hexdig(hash[i] & 0x0f); in sign_key_sha1_fingerprint()
|
/external/openssl/patches/ |
D | fix_clang_build.patch | 42 - const static char hexdig[] = "0123456789ABCDEF"; 43 + static const char hexdig[] = "0123456789ABCDEF";
|
/external/chromium_org/third_party/openssl/openssl/patches/ |
D | fix_clang_build.patch | 42 - const static char hexdig[] = "0123456789ABCDEF"; 43 + static const char hexdig[] = "0123456789ABCDEF";
|
/external/chromium_org/third_party/openssl/openssl/crypto/asn1/ |
D | a_strex.c | 240 static const char hexdig[] = "0123456789ABCDEF"; in do_hex_dump() local 247 hextmp[0] = hexdig[*p >> 4]; in do_hex_dump() 248 hextmp[1] = hexdig[*p & 0xf]; in do_hex_dump()
|
/external/openssl/crypto/asn1/ |
D | a_strex.c | 240 static const char hexdig[] = "0123456789ABCDEF"; in do_hex_dump() local 247 hextmp[0] = hexdig[*p >> 4]; in do_hex_dump() 248 hextmp[1] = hexdig[*p & 0xf]; in do_hex_dump()
|
/external/chromium/base/third_party/dmg_fp/ |
D | dtoa.cc | 1490 static unsigned char hexdig[256]; variable 1512 htinit(hexdig, USC "0123456789", 0x10); in hexdig_init() 1513 htinit(hexdig, USC "abcdef", 0x10 + 10); in hexdig_init() 1514 htinit(hexdig, USC "ABCDEF", 0x10 + 10); in hexdig_init() 1562 if (!hexdig['0']) 1574 if ((c1 = hexdig[c])) 1781 if (!hexdig['0']) 1792 if (hexdig[*s]) 1807 if (!hexdig[*s]) 1811 if (hexdig[*s]) [all …]
|
/external/chromium_org/base/third_party/dmg_fp/ |
D | dtoa.cc | 1496 static unsigned char hexdig[256]; variable 1518 htinit(hexdig, USC "0123456789", 0x10); in hexdig_init() 1519 htinit(hexdig, USC "abcdef", 0x10 + 10); in hexdig_init() 1520 htinit(hexdig, USC "ABCDEF", 0x10 + 10); in hexdig_init() 1568 if (!hexdig['0']) 1580 if ((c1 = hexdig[c])) 1787 if (!hexdig['0']) 1798 if (hexdig[*s]) 1813 if (!hexdig[*s]) 1817 if (hexdig[*s]) [all …]
|
/external/chromium_org/third_party/openssl/openssl/crypto/x509v3/ |
D | v3_utl.c | 368 static const char hexdig[] = "0123456789ABCDEF"; in hex_to_string() local 376 *q++ = hexdig[(*p >> 4) & 0xf]; in hex_to_string() 377 *q++ = hexdig[*p & 0xf]; in hex_to_string()
|
/external/openssl/crypto/x509v3/ |
D | v3_utl.c | 368 static const char hexdig[] = "0123456789ABCDEF"; in hex_to_string() local 376 *q++ = hexdig[(*p >> 4) & 0xf]; in hex_to_string() 377 *q++ = hexdig[*p & 0xf]; in hex_to_string()
|