HomeSort by: relevance | last modified time | path
    Searched defs:hex (Results 1 - 25 of 157) sorted by relevancy

1 2 3 4 5 6 7

  /src/external/gpl3/binutils/dist/libctf/
ctf-sha1.c 23 static const char hex[] = "0123456789abcdef"; variable
46 buf[2 * i] = hex[align.digest[i] >> 4];
47 buf[2 * i + 1] = hex[align.digest[i] & 0xf];
  /src/external/gpl3/binutils.old/dist/libctf/
ctf-sha1.c 23 static const char hex[] = "0123456789abcdef"; variable
46 buf[2 * i] = hex[align.digest[i] >> 4];
47 buf[2 * i + 1] = hex[align.digest[i] & 0xf];
  /src/external/gpl3/gdb/dist/libctf/
ctf-sha1.c 23 static const char hex[] = "0123456789abcdef"; variable
46 buf[2 * i] = hex[align.digest[i] >> 4];
47 buf[2 * i + 1] = hex[align.digest[i] & 0xf];
  /src/external/gpl3/gdb.old/dist/libctf/
ctf-sha1.c 23 static const char hex[] = "0123456789abcdef"; variable
46 buf[2 * i] = hex[align.digest[i] >> 4];
47 buf[2 * i + 1] = hex[align.digest[i] & 0xf];
  /src/external/mpl/bind/dist/tests/isc/
crc64_test.c 57 char hex[16 + 1]; local
58 snprintf(hex, sizeof(hex), "%016" PRIX64, crc);
60 assert_memory_equal(hex, result, result ? strlen(result) : 0);
  /src/sys/arch/emips/stand/common/
printf.c 36 const char *hex = "0123456789abcdef"; local
73 *s++ = hex[u & 0xfu];
  /src/sys/external/isc/libsodium/dist/test/default/
kdf.c 11 char hex[crypto_kdf_BYTES_MAX * 2 + 1]; local
26 sodium_bin2hex(hex, sizeof hex, subkey, crypto_kdf_BYTES_MAX);
27 printf("%s\n", hex);
35 sodium_bin2hex(hex, sizeof hex, subkey, (size_t) i);
36 printf("%s\n", hex);
scalarmult.c 23 static char hex[crypto_scalarmult_BYTES * 2 + 1]; variable
38 sodium_bin2hex(hex, sizeof hex, alicepk, crypto_scalarmult_BYTES);
39 printf("%s\n", hex);
42 sodium_bin2hex(hex, sizeof hex, bobpk, crypto_scalarmult_BYTES);
43 printf("%s\n", hex);
47 sodium_bin2hex(hex, sizeof hex, k, crypto_scalarmult_BYTES);
48 printf("%s\n", hex);
    [all...]
stream.c 19 static char hex[2 * 192 + 1]; variable
29 sodium_bin2hex(hex, sizeof hex, h, sizeof h);
30 printf("%s\n", hex);
40 sodium_bin2hex(hex, sizeof hex, h, sizeof h);
41 printf("%s\n", hex);
46 sodium_bin2hex(hex, sizeof hex, output, 64);
47 printf("%s\n", hex);
    [all...]
kx.c 19 char hex[65]; local
30 sodium_bin2hex(hex, sizeof hex, client_pk, crypto_kx_PUBLICKEYBYTES);
31 printf("client_pk: [%s]\n", hex);
32 sodium_bin2hex(hex, sizeof hex, client_sk, crypto_kx_SECRETKEYBYTES);
33 printf("client_sk: [%s]\n", hex);
92 sodium_bin2hex(hex, sizeof hex, server_rx, crypto_kx_SESSIONKEYBYTES);
93 printf("server_rx: [%s]\n", hex);
    [all...]
codecs.c 15 const char *hex; local
24 hex = "Cafe : 6942";
25 sodium_hex2bin(buf4, sizeof buf4, hex, strlen(hex), ": ", &bin_len,
29 printf("dt1: %ld\n", (long) (hex_end - hex));
31 hex = "Cafe : 6942";
32 sodium_hex2bin(buf4, sizeof buf4, hex, strlen(hex), ": ", &bin_len, NULL);
36 hex = "deadbeef";
37 if (sodium_hex2bin(buf1, 1U, hex, 8U, NULL, &bin_len, &hex_end) != -1)
    [all...]
  /src/external/bsd/libbind/dist/isc/
hex.c 1 /* $NetBSD: hex.c,v 1.1.1.1 2009/04/12 15:33:46 christos Exp $ */
27 static const char hex[17] = "0123456789abcdef"; variable
65 if ((s = strchr(hex, tolower(c))) == NULL)
67 x = (x<<4) | (s - hex);
97 fputc(hex[(buf[0]>>4)&0xf], fp);
98 fputc(hex[buf[0]&0xf], fp);
113 *t++ = hex[(buf[0]>>4)&0xf];
114 *t++ = hex[buf[0]&0xf];
  /src/lib/libc/md/
mdXhl.c 50 static const char hex[]="0123456789abcdef"; variable
62 buf[i+i] = hex[(u_int32_t)digest[i] >> 4];
63 buf[i+i+1] = hex[digest[i] & 0x0f];
  /src/crypto/external/apache2/openssl/dist/crypto/ts/
ts_lib.c 23 char *hex; local
28 if ((hex = BN_bn2hex(num_bn))) {
30 result = result && BIO_write(bio, hex, strlen(hex)) > 0;
31 OPENSSL_free(hex);
  /src/crypto/external/bsd/heimdal/dist/lib/otp/
otptest.c 75 char *hex; member in struct:test
133 sum += test_one (key, "hexadecimal", t->hex, otp_print_hex,
  /src/crypto/external/bsd/openssl/dist/crypto/ts/
ts_lib.c 23 char *hex; local
28 if ((hex = BN_bn2hex(num_bn))) {
30 result = result && BIO_write(bio, hex, strlen(hex)) > 0;
31 OPENSSL_free(hex);
  /src/crypto/external/bsd/openssl.old/dist/crypto/ts/
ts_lib.c 23 char *hex; local
28 if ((hex = BN_bn2hex(num_bn))) {
30 result = result && BIO_write(bio, hex, strlen(hex)) > 0;
31 OPENSSL_free(hex);
  /src/external/bsd/iscsi/dist/src/lib/
md5hl.c 59 static const char hex[]="0123456789abcdef"; variable
71 buf[i+i] = hex[(uint32_t)digest[i] >> 4];
72 buf[i+i+1] = hex[digest[i] & 0x0f];
  /src/external/ibm-public/postfix/dist/src/util/
hex_quote.c 11 /* VSTRING *hex_quote(hex, raw)
12 /* VSTRING *hex;
15 /* VSTRING *hex_unquote(raw, hex)
17 /* const char *hex;
23 /* value is the hex argument.
65 VSTRING *hex_quote(VSTRING *hex, const char *raw)
70 VSTRING_RESET(hex);
73 VSTRING_ADDCH(hex, ch);
75 vstring_sprintf_append(hex, "%%%02X", ch);
78 VSTRING_TERMINATE(hex);
137 VSTRING *hex = vstring_alloc(100); local
    [all...]
  /src/crypto/external/apache2/openssl/dist/test/testutil/
testutil_init.c 27 char buffer[256], *hex; local
35 hex = OPENSSL_buf2hexstr((const unsigned char *)&tid, sizeof(tid));
37 hex, OSSL_trace_get_category_name(category));
38 OPENSSL_free(hex);
  /src/crypto/external/bsd/libsaslc/dist/src/
crypto.c 184 static const char hex[] = "0123456789abcdef"; local
193 r[j] = hex[(unsigned)hash[i] >> 4];
194 r[j + 1] = hex[hash[i] & 0x0F];
  /src/crypto/external/bsd/openssl/dist/test/testutil/
testutil_init.c 27 char buffer[256], *hex; local
35 hex = OPENSSL_buf2hexstr((const unsigned char *)&tid, sizeof(tid));
37 hex, OSSL_trace_get_category_name(category));
38 OPENSSL_free(hex);
  /src/crypto/external/bsd/openssl.old/dist/crypto/x509/
x509_obj.c 33 static const char hex[17] = "0123456789ABCDEF"; local
151 *(p++) = hex[(n >> 4) & 0x0f];
152 *(p++) = hex[n & 0x0f];
160 *(p++) = hex[(n >> 4) & 0x0f];
161 *(p++) = hex[n & 0x0f];
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
long_long.c 66 long long bin, oct, dec, hex; member in struct:__anon18139
71 val.bin = 0x123456789abcdefLL; /* 64 bits = 16 hex digits */
76 val.hex = val.bin - val.dec | val.oct;
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
long_long.c 66 long long bin, oct, dec, hex; member in struct:__anon20883
71 val.bin = 0x123456789abcdefLL; /* 64 bits = 16 hex digits */
76 val.hex = val.bin - val.dec | val.oct;

Completed in 40 milliseconds

1 2 3 4 5 6 7