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

1 2 3 4 5 6 7 8 91011>>

  /src/external/bsd/unbound/dist/testcode/
readhex.h 2 * testcode/readhex.h - read hex data.
46 * Helper to convert hex string to packet buffer.
48 * @param hex: string of hex data. Spaces and ';...' comments are skipped.
50 void hex_to_buf(struct sldns_buffer* pkt, const char* hex);
  /src/tests/ipf/
t_nat_ipf_exec.sh 47 if [ $outfmt = hex ] ; then
72 test_case ni1 natipftest multi hex hex -T update_ipid=1
73 test_case ni2 natipftest single hex hex -T update_ipid=1
74 test_case ni3 natipftest single hex hex -T update_ipid=1
75 test_case ni4 natipftest single hex hex -T update_ipid=1
76 test_case ni5 natipftest single hex hex -T update_ipid=
    [all...]
t_nat_exec.sh 43 if [ $outfmt = hex ] ; then
70 test_case n8 nattest hex hex -T update_ipid=0
71 test_case n9 nattest hex hex -T update_ipid=0
72 test_case n10 nattest hex hex -T update_ipid=0
74 test_case n12 nattest hex hex -T update_ipid=0
78 test_case n16 nattest hex hex -
    [all...]
t_filter_exec.sh 43 if [ $outfmt = hex ] ; then
68 if [ $outfmt = hex ] ; then
91 if [ $outfmt = hex ] ; then
122 test_case f12 dotest hex hex
123 test_case f13 dotest hex hex
127 test_case f17 mtest hex hex
131 test_case f24 mtest hex tex
    [all...]
  /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...]
hex_code.c 145 unsigned int hex; local
152 hex = cp[0];
153 if (hex >= '0' && hex <= '9')
154 bin = (hex - '0') << 4;
155 else if (hex >= 'A' && hex <= 'F')
156 bin = (hex - 'A' + 10) << 4;
157 else if (hex >= 'a' && hex <= 'f'
    [all...]
  /src/sys/external/isc/libsodium/dist/test/default/
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...]
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...]
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);
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.disasm/
h8300s.exp 31 global hex
42 global hex
65 global hex
87 global hex
109 global hex
129 global hex
145 global hex
174 global hex
204 global hex
220 global hex
    [all...]
am33.exp 33 global hex
55 global hex
85 global hex
110 global hex
169 global hex
188 global hex
213 global hex
235 global hex
253 global hex
282 global hex
    [all...]
mn10300.exp 33 global hex
61 global hex
90 global hex
115 global hex
139 global hex
158 global hex
185 global hex
213 global hex
239 global hex
269 global hex
    [all...]
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.disasm/
h8300s.exp 31 global hex
42 global hex
65 global hex
87 global hex
109 global hex
129 global hex
145 global hex
174 global hex
204 global hex
220 global hex
    [all...]
am33.exp 33 global hex
55 global hex
85 global hex
110 global hex
169 global hex
188 global hex
213 global hex
235 global hex
253 global hex
282 global hex
    [all...]
mn10300.exp 33 global hex
61 global hex
90 global hex
115 global hex
139 global hex
158 global hex
185 global hex
213 global hex
239 global hex
269 global hex
    [all...]
  /src/external/gpl3/gdb.old/dist/gdbsupport/
rsp-low.h 23 /* Convert number NIB to a hex digit. */
28 hex to *BUF. Returns BUF+1. */
32 /* Write the low byte of BYTE in hex to *BUF. Returns BUF+2. */
36 /* Read hex digits from BUFF and convert to a number, which is stored
37 in RESULT. Reads until a non-hex digit is seen. Returns a pointer
44 extern std::string hex2str (const char *hex);
48 extern std::string hex2str (const char *hex, int count);
52 resulting characters are stored in HEX, followed by a NUL
55 extern int bin2hex (const gdb_byte *bin, char *hex, int count);
57 extern int bin2hex (gdb::array_view<gdb_byte> bin, char *hex);
    [all...]
  /src/external/gpl3/gdb/dist/gdbsupport/
rsp-low.h 23 /* Convert number NIB to a hex digit. */
28 hex to *BUF. Returns BUF+1. */
32 /* Write the low byte of BYTE in hex to *BUF. Returns BUF+2. */
36 /* Read hex digits from BUFF and convert to a number, which is stored
37 in RESULT. Reads until a non-hex digit is seen. Returns a pointer
44 extern std::string hex2str (const char *hex);
48 extern std::string hex2str (const char *hex, int count);
52 resulting characters are stored in HEX, followed by a NUL
55 extern int bin2hex (const gdb_byte *bin, char *hex, int count);
57 extern int bin2hex (gdb::array_view<gdb_byte> bin, char *hex);
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.threads/
pthread_cond_wait.exp 48 global hex
54 set btb "\[^\r\n\]+\[\r\n\]+\#${decimal}\[ \t\]+${hex} (\\\[PAC\\\] )?in "
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.threads/
pthread_cond_wait.exp 48 global hex
54 set btb "\[^\r\n\]+\[\r\n\]+\#${decimal}\[ \t\]+${hex} (\\\[PAC\\\] )?in "
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.cp/
local-static.exp 50 {"S::method()" "S_M" {= \\{void \\(S \\* const\\)\\} $hex <S::method\\(\\)>}
53 {"S::method() const" "S_M_C" {= \\{void \\(const S \\* const\\)\\} $hex <S::method\\(\\) const>}
56 {"S::method() volatile" "S_M_V" {= \\{void \\(volatile S \\* const\\)\\} $hex <S::method\\(\\) volatile>}
59 {"S::method() const volatile" "S_M_CV" {= \\{void \\(const volatile S \\* const\\)\\} $hex <S::method\\(\\) const volatile>}
62 {"S::method() volatile const" "S_M_CV" {= \\{void \\(const volatile S \\* const\\)\\} $hex <S::method\\(\\) const volatile>}
65 {"S::method(void)" "S_M" {= \\{void \\(S \\* const\\)\\} $hex <S::method\\(\\)>}}
66 {"S::method(void) const" "S_M_C" {= \\{void \\(const S \\* const\\)\\} $hex <S::method\\(\\) const>}}
67 {"S::method(void) volatile" "S_M_V" {= \\{void \\(volatile S \\* const\\)\\} $hex <S::method\\(\\) volatile>}}
68 {"S::method(void) const volatile" "S_M_CV" {= \\{void \\(const volatile S \\* const\\)\\} $hex <S::method\\(\\) const volatile>}}
69 {"S::method(void) volatile const" "S_M_CV" {= \\{void \\(const volatile S \\* const\\)\\} $hex <S::method\\(\\) const volatile>}
    [all...]
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/
local-static.exp 50 {"S::method()" "S_M" {= \\{void \\(S \\* const\\)\\} $hex <S::method\\(\\)>}
53 {"S::method() const" "S_M_C" {= \\{void \\(const S \\* const\\)\\} $hex <S::method\\(\\) const>}
56 {"S::method() volatile" "S_M_V" {= \\{void \\(volatile S \\* const\\)\\} $hex <S::method\\(\\) volatile>}
59 {"S::method() const volatile" "S_M_CV" {= \\{void \\(const volatile S \\* const\\)\\} $hex <S::method\\(\\) const volatile>}
62 {"S::method() volatile const" "S_M_CV" {= \\{void \\(const volatile S \\* const\\)\\} $hex <S::method\\(\\) const volatile>}
65 {"S::method(void)" "S_M" {= \\{void \\(S \\* const\\)\\} $hex <S::method\\(\\)>}}
66 {"S::method(void) const" "S_M_C" {= \\{void \\(const S \\* const\\)\\} $hex <S::method\\(\\) const>}}
67 {"S::method(void) volatile" "S_M_V" {= \\{void \\(volatile S \\* const\\)\\} $hex <S::method\\(\\) volatile>}}
68 {"S::method(void) const volatile" "S_M_CV" {= \\{void \\(const volatile S \\* const\\)\\} $hex <S::method\\(\\) const volatile>}}
69 {"S::method(void) volatile const" "S_M_CV" {= \\{void \\(const volatile S \\* const\\)\\} $hex <S::method\\(\\) const volatile>}
    [all...]
  /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.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];

Completed in 20 milliseconds

1 2 3 4 5 6 7 8 91011>>