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

  /external/boringssl/src/tool/
rand.cc 74 static const char hextable[] = "0123456789abdef"; local
76 hex_buf[i*2] = hextable[buf[i] >> 4];
77 hex_buf[i*2 + 1] = hextable[buf[i] & 0xf];
  /external/boringssl/src/crypto/bio/
hexdump.c 73 static const char hextable[] = "0123456789abcdef"; local
74 out[0] = hextable[b>>4];
75 out[1] = hextable[b&0x0f];
  /external/boringssl/src/crypto/bn/
convert.c 204 static const char hextable[] = "0123456789abcdef"; variable
231 *(p++) = hextable[v >> 4];
232 *(p++) = hextable[v & 0x0f];
488 if (BIO_write(bp, &hextable[v], 1) != 1) {
  /external/boringssl/src/ssl/
ssl_lib.c 2185 static const char hextable[] = "0123456789abcdef"; local
    [all...]

Completed in 7525 milliseconds