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

  /external/boringssl/src/tool/
rand.cc 75 static const char hextable[16 + 1] = "0123456789abcdef"; local
77 hex_buf[i*2] = hextable[buf[i] >> 4];
78 hex_buf[i*2 + 1] = hextable[buf[i] & 0xf];
  /external/boringssl/src/crypto/bio/
hexdump.c 75 static const char hextable[] = "0123456789abcdef"; local
76 out[0] = hextable[b>>4];
77 out[1] = hextable[b&0x0f];
  /external/boringssl/src/crypto/bn_extra/
convert.c 77 static const char hextable[] = "0123456789abcdef"; variable
102 *(p++) = hextable[v >> 4];
103 *(p++) = hextable[v & 0x0f];
355 if (BIO_write(bp, &hextable[v], 1) != 1) {
  /prebuilts/go/darwin-x86/src/encoding/hex/
hex.go 15 const hextable = "0123456789abcdef" const
27 dst[i*2] = hextable[v>>4]
28 dst[i*2+1] = hextable[v&0x0f]
  /prebuilts/go/linux-x86/src/encoding/hex/
hex.go 15 const hextable = "0123456789abcdef" const
27 dst[i*2] = hextable[v>>4]
28 dst[i*2+1] = hextable[v&0x0f]
  /external/boringssl/src/ssl/
ssl_lib.cc 337 static const char hextable[] = "0123456789abcdef"; local
345 *(out++) = (uint8_t)hextable[in[i] >> 4];
346 *(out++) = (uint8_t)hextable[in[i] & 0xf];
    [all...]

Completed in 926 milliseconds