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

  /external/dropbear/
signkey.c 262 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/openssl/crypto/asn1/
a_strex.c 228 static const char hexdig[] = "0123456789ABCDEF"; local
235 hextmp[0] = hexdig[*p >> 4];
236 hextmp[1] = hexdig[*p & 0xf];
  /external/openssl/crypto/x509v3/
v3_utl.c 368 const static char hexdig[] = "0123456789ABCDEF"; local
376 *q++ = hexdig[(*p >> 4) & 0xf];
377 *q++ = hexdig[*p & 0xf];
  /external/chromium/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 187 milliseconds