Searched refs:hex (Results 1 - 25 of 178) sorted by relevance

12345678

/freebsd-11-stable/contrib/netbsd-tests/ipf/
H A Dt_nat_ipf_exec.sh47 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 he
[all...]
H A Dt_nat_exec.sh43 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 he
[all...]
H A Dt_filter_exec.sh43 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...]
H A Dt_logging.sh75 test_case l1 logtest hex hex
/freebsd-11-stable/usr.bin/mkimg/tests/
H A DMakefile10 SOURCES!= cd ${.CURDIR}; echo *.hex
11 ${PACKAGE}FILES+= ${SOURCES:S,.hex,,g}
14 $f: $f.hex
/freebsd-11-stable/share/vt/fonts/
H A DMakefile15 .SUFFIXES: .fnt .fnt.uu .hex
16 .hex.fnt:
/freebsd-11-stable/contrib/gdb/gdb/
H A Dauxv.c199 enum { dec, hex, str } flavor = hex; enumerator in enum:__anon1488
205 TAG (AT_NULL, "End of vector", hex);
206 TAG (AT_IGNORE, "Entry should be ignored", hex);
208 TAG (AT_PHDR, "Program headers for program", hex);
212 TAG (AT_BASE, "Base address of interpreter", hex);
213 TAG (AT_FLAGS, "Flags", hex);
214 TAG (AT_ENTRY, "Entry point of program", hex);
222 TAG (AT_HWCAP, "Machine-dependent CPU capability hints", hex);
228 TAG (AT_SYSINFO, "Special system info/entry points", hex);
[all...]
H A Drom68k-rom.c34 /* Return true if C is a hex digit.
46 /* Convert hex digit A to a number. */
57 error ("Invalid hex digit %d", a);
75 /* Parse a string of hex digits starting at HEX, supply them as the
88 rom68k_supply_one_register (int regno, unsigned char *hex) argument
94 while (*hex != '\0')
95 if (is_hex_digit (*hex))
96 value = (value * 16) + hex_digit_value (*hex++);
101 while (is_whitespace (*hex))
102 hex
[all...]
/freebsd-11-stable/crypto/openssl/crypto/ts/
H A Dts_lib.c75 char *hex; local
79 if ((hex = BN_bn2hex(&num_bn))) {
81 result = result && BIO_write(bio, hex, strlen(hex)) > 0;
82 OPENSSL_free(hex);
/freebsd-11-stable/usr.sbin/ctld/
H A Dchap.c62 chap_hex2int(const char hex) argument
64 switch (hex) {
135 chap_hex2bin(const char *hex, void **binp, size_t *bin_lenp) argument
142 if (strncasecmp(hex, "0b", strlen("0b")) == 0)
143 return (chap_b642bin(hex + 2, binp, bin_lenp));
145 if (strncasecmp(hex, "0x", strlen("0x")) != 0) {
151 hex += strlen("0x");
152 hex_len = strlen(hex);
166 nibble = chap_hex2int(hex[i]);
169 hex[
212 unsigned char *hex, *tmp, ch; local
[all...]
/freebsd-11-stable/usr.sbin/iscsid/
H A Dchap.c62 chap_hex2int(const char hex) argument
64 switch (hex) {
135 chap_hex2bin(const char *hex, void **binp, size_t *bin_lenp) argument
142 if (strncasecmp(hex, "0b", strlen("0b")) == 0)
143 return (chap_b642bin(hex + 2, binp, bin_lenp));
145 if (strncasecmp(hex, "0x", strlen("0x")) != 0) {
151 hex += strlen("0x");
152 hex_len = strlen(hex);
166 nibble = chap_hex2int(hex[i]);
169 hex[
212 unsigned char *hex, *tmp, ch; local
[all...]
/freebsd-11-stable/contrib/netbsd-tests/bin/sleep/
H A Dt_sleep.sh44 atf_test_case hex
70 atf_add_test_case hex
/freebsd-11-stable/crypto/openssl/apps/
H A Dprime.c62 int hex = 0; local
79 if (!strcmp(*argv, "-hex"))
80 hex = 1;
127 s = hex ? BN_bn2hex(bn) : BN_bn2dec(bn);
133 if (hex)
156 BIO_printf(bio_err, "%-14s hex\n", "-hex");
H A Drand.c73 * -hex - hex encode output
86 int hex = 0; local
128 } else if (strcmp(argv[i], "-hex") == 0) {
129 if (!hex)
130 hex = 1;
144 if (hex && base64)
161 BIO_printf(bio_err, "-hex - hex encode output\n");
205 if (!hex)
[all...]
/freebsd-11-stable/contrib/llvm-project/lld/Common/
H A DStrings.cpp51 // Converts a hex string (e.g. "deadbeef") to a vector.
53 std::vector<uint8_t> hex; local
62 hex.push_back(h);
64 return hex;
/freebsd-11-stable/contrib/sendmail/src/
H A Dtlsh.c19 ** DATA2HEX -- create a printable hex string from binary data ("%02X:")
24 ** hex -- output buffer
29 ** >0: length of data in hex
33 data2hex(buf, blen, hex, hlen)
36 unsigned char *hex;
43 SM_REQUIRE(hex != NULL);
49 hex[h++] = hexcodes[(buf[r] & 0xf0) >> 4];
50 hex[h++] = hexcodes[(buf[r] & 0x0f)];
52 hex[h++] = ':';
56 hex[
[all...]
/freebsd-11-stable/contrib/ntp/lib/isc/
H A Dhex.c18 /* $Id: hex.c,v 1.20 2008/09/25 04:02:39 tbox Exp $ */
27 #include <isc/hex.h>
48 static const char hex[] = "0123456789ABCDEF"; variable
62 buf[0] = hex[(source->base[0] >> 4) & 0xf];
63 buf[1] = hex[(source->base[0]) & 0xf];
79 * State of a hex decoding process in progress.
84 int digits; /*%< Number of buffered hex digits */
100 if ((s = strchr(hex, toupper(c))) == NULL)
102 ctx->val[ctx->digits++] = s - hex;
/freebsd-11-stable/contrib/wpa/wpa_supplicant/examples/p2p/
H A Dp2p_invite.py33 print("BSSID = ", hex(bssid[0]) , ":" , \
34 hex(bssid[1]) , ":" , hex(bssid[2]) , ":", \
35 hex(bssid[3]) , ":" , hex(bssid[4]) , ":" , \
36 hex(bssid[5]))
/freebsd-11-stable/crypto/heimdal/admin/
H A Dktutil_locl.h63 #include <hex.h>
/freebsd-11-stable/sys/contrib/ngatm/netnatm/misc/
H A Dstraddr.c44 * ASCII format means each byte formatted as a 2-byte hex number
134 static char hex[16] = "0123456789abcdef"; local
160 *out++ = hex[(*in >> 4) & 0xf];
161 *out++ = hex[*in & 0xf];
181 *out++ = hex[(*in >> 4) & 0xf];
182 *out++ = hex[*in & 0xf];
/freebsd-11-stable/crypto/openssl/crypto/x509/
H A Dx509_obj.c82 static const char hex[17] = "0123456789ABCDEF"; local
200 *(p++) = hex[(n >> 4) & 0x0f];
201 *(p++) = hex[n & 0x0f];
209 *(p++) = hex[(n >> 4) & 0x0f];
210 *(p++) = hex[n & 0x0f];
/freebsd-11-stable/lib/librpcsvc/
H A Dxcrypt.c43 static char hex[16] = { variable
55 * The secret key is passed and returned in hex notation.
56 * Its length must be a multiple of 16 hex digits (64 bits).
88 * The secret key is passed and returned in hex notation.
89 * Once again, the length is a multiple of 16 hex digits
151 * Binary to hex conversion
161 hexnum[i*2] = hex[val >> 4];
162 hexnum[i*2+1] = hex[val & 0xf];
/freebsd-11-stable/sys/gdb/
H A Dgdb_cons.c54 /* /2 for hex conversion, -6 for protocol glue */
108 const char *hex = "0123456789abcdef"; local
110 gdb_tx_char(hex[(c>>4)&0xf]);
111 gdb_tx_char(hex[(c>>0)&0xf]);
/freebsd-11-stable/lib/libmd/
H A DmdXhl.c29 static const char hex[]="0123456789abcdef"; local
37 buf[i+i] = hex[digest[i] >> 4];
38 buf[i+i+1] = hex[digest[i] & 0x0f];
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DScopedPrinter.h92 template <typename T> HexNumber hex(T Value) { return HexNumber(Value); } function in class:llvm::ScopedPrinter
108 startLine() << Label << ": " << Name << " (" << hex(Value) << ")\n";
110 startLine() << Label << ": " << hex(Value) << "\n";
142 startLine() << Label << " [ (" << hex(Value) << ")\n";
144 startLine() << " " << Flag.Name << " (" << hex(Flag.Value) << ")\n";
150 startLine() << Label << " [ (" << hex(Value) << ")\n";
155 startLine() << " " << hex(Flag) << "\n";
239 OS << hex(Item);
246 startLine() << Label << ": " << hex(Value) << "\n";
250 startLine() << Label << ": " << Str << " (" << hex(Valu
[all...]

Completed in 145 milliseconds

12345678