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

123456

/freebsd-10.0-release/contrib/gdb/gdb/
H A Dauxv.c199 enum { dec, hex, str } flavor = hex; enumerator in enum:__anon1214
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...]
H A Di386-stub.c57 * g return the value of the CPU registers hex data or ENN
60 * mAA..AA,LLLL Read LLLL bytes at address AA..AA hex data or ENN
80 * <checksum> :: < two hex digits computed as modulo 256 sum of <packetinfo>>
439 hex (ch) function
493 xmitcsum = hex (ch) << 4;
495 xmitcsum += hex (ch);
595 /* convert the memory pointed to by mem into hex, placing result in buf */
625 /* convert the hex array pointed to by buf into binary to be placed in mem */
641 ch = hex (*buf++) << 4;
642 ch = ch + hex (*bu
[all...]
/freebsd-10.0-release/crypto/openssl/crypto/ts/
H A Dts_lib.c74 char *hex; local
78 if ((hex = BN_bn2hex(&num_bn)))
81 result = result && BIO_write(bio, hex, strlen(hex)) > 0;
82 OPENSSL_free(hex);
/freebsd-10.0-release/sys/boot/arm/at91/libat91/
H A Dprintf.c27 const char *hex = "0123456789abcdef"; local
60 *s++ = hex[u & 0xfu];
/freebsd-10.0-release/crypto/openssl/apps/
H A Dprime.c63 int hex=0; local
81 if(!strcmp(*argv,"-hex"))
82 hex=1;
134 s=hex ? BN_bn2hex(bn) : BN_bn2dec(bn);
140 if(hex)
157 BIO_printf(bio_err,"%-14s hex\n","-hex");
H A Drand.c72 * -hex - hex encode output
85 int hex = 0; local
135 else if (strcmp(argv[i], "-hex") == 0)
137 if (!hex)
138 hex = 1;
157 if (hex && base64)
173 BIO_printf(bio_err, "-hex - hex encode output\n");
223 if (!hex)
[all...]
/freebsd-10.0-release/contrib/subversion/subversion/libsvn_subr/
H A Dmd5.c49 static const char *hex = "0123456789abcdef";
55 str[i*2] = hex[digest[i] >> 4];
56 str[i*2+1] = hex[digest[i] & 0x0f];
48 static const char *hex = "0123456789abcdef"; local
H A Dsha1.c48 static const char *hex = "0123456789abcdef";
54 str[i*2] = hex[digest[i] >> 4];
55 str[i*2+1] = hex[digest[i] & 0x0f];
47 static const char *hex = "0123456789abcdef"; local
/freebsd-10.0-release/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-10.0-release/lib/libmd/
H A DmdXhl.c28 static const char hex[]="0123456789abcdef"; local
36 buf[i+i] = hex[digest[i] >> 4];
37 buf[i+i+1] = hex[digest[i] & 0x0f];
/freebsd-10.0-release/crypto/heimdal/admin/
H A Dktutil_locl.h63 #include <hex.h>
/freebsd-10.0-release/crypto/openssl/crypto/x509/
H A Dx509_obj.c75 static const char hex[17]="0123456789ABCDEF"; local
190 *(p++)=hex[(n>>4)&0x0f];
191 *(p++)=hex[n&0x0f];
202 *(p++)=hex[(n>>4)&0x0f];
203 *(p++)=hex[n&0x0f];
/freebsd-10.0-release/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-10.0-release/contrib/llvm/tools/llvm-readobj/
H A DStreamWriter.h75 HexNumber hex(T Value) { function in class:llvm::StreamWriter
93 startLine() << Label << ": " << Name << " (" << hex(Value) << ")\n";
95 startLine() << Label << ": " << hex(Value) << "\n";
120 startLine() << Label << " [ (" << hex(Value) << ")\n";
124 startLine() << " " << I->Name << " (" << hex(I->Value) << ")\n";
131 startLine() << Label << " [ (" << hex(Value) << ")\n";
136 startLine() << " " << hex(Flag) << "\n";
177 startLine() << Label << ": " << hex(Value) << "\n";
182 startLine() << Label << ": " << Str << " (" << hex(Value) << ")\n";
/freebsd-10.0-release/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-10.0-release/sys/gdb/
H A Dgdb_cons.c54 /* /2 for hex conversion, -6 for protocol glue */
109 const char *hex = "0123456789abcdef"; local
111 gdb_tx_char(hex[(c>>4)&0xf]);
112 gdb_tx_char(hex[(c>>0)&0xf]);
/freebsd-10.0-release/contrib/tcpdump/
H A Dprint-esp.c161 static u_int hexdigit(netdissect_options *ndo, char hex) argument
163 if (hex >= '0' && hex <= '9')
164 return (hex - '0');
165 else if (hex >= 'A' && hex <= 'F')
166 return (hex - 'A' + 10);
167 else if (hex >= 'a' && hex <= 'f')
168 return (hex
187 espprint_decode_hex(netdissect_options *ndo, u_char *binbuf, unsigned int binbuf_len, char *hex) argument
[all...]
H A Daddrtoname.c316 static const char hex[] = "0123456789abcdef"; variable
498 *cp++ = hex[*ep >> 4 ];
499 *cp++ = hex[*ep++ & 0xf];
502 *cp++ = hex[*ep >> 4 ];
503 *cp++ = hex[*ep++ & 0xf];
530 *cp++ = hex[*(ep + i - 1) >> 4];
531 *cp++ = hex[*(ep + i - 1) & 0xf];
566 *cp++ = hex[*ep >> 4];
567 *cp++ = hex[*ep++ & 0xf];
570 *cp++ = hex[*e
[all...]
/freebsd-10.0-release/contrib/libstdc++/include/backward/
H A Diomanip.h52 using std::hex;
/freebsd-10.0-release/lib/libz/test/
H A Dinfcover.c239 decodes liberally, in that hex digits can be adjacent, in which case two in
240 a row writes a byte. Or they can delimited by any non-hex character, where
241 the delimiters are ignored except when a single hex digit is followed by a
245 local unsigned char *h2b(const char *hex, unsigned *len) argument
250 in = malloc((strlen(hex) + 1) >> 1);
256 if (*hex >= '0' && *hex <= '9')
257 val = (val << 4) + *hex - '0';
258 else if (*hex >= 'A' && *hex <
284 inf(char *hex, char *what, unsigned step, int win, unsigned len, int err) argument
507 try(char *hex, char *id, int err) argument
[all...]
/freebsd-10.0-release/usr.bin/m4/
H A Dtokenizer.l40 hex 0[xX][0-9a-fA-F]+
47 {hex}|{oct}|{dec} { yylval = number(); return(NUMBER); }
/freebsd-10.0-release/contrib/gdb/gdb/gdbserver/
H A Dremote-utils.c181 /* Convert hex digit A to a number. */
191 error ("Reply contains invalid hex digit");
196 unhexify (char *bin, const char *hex, int count) argument
202 if (hex[0] == 0 || hex[1] == 0)
208 *bin++ = fromhex (hex[0]) * 16 + fromhex (hex[1]);
209 hex += 2;
231 /* Convert number NIB to a hex digit. */
243 hexify (char *hex, cons argument
[all...]
/freebsd-10.0-release/usr.sbin/iscsid/
H A Dlogin.c255 login_hex2int(const char hex) argument
257 switch (hex) {
305 login_hex2bin(const char *hex, char **binp, size_t *bin_lenp) argument
312 if (strncasecmp(hex, "0x", strlen("0x")) != 0) {
317 hex += strlen("0x");
318 hex_len = strlen(hex);
332 nibble = login_hex2int(hex[i]);
335 hex[i]);
358 unsigned char *hex, *tmp, ch; local
363 hex
[all...]
/freebsd-10.0-release/contrib/subversion/subversion/libsvn_ra_svn/
H A Dcram.c189 char hex[2 * APR_MD5_DIGESTSIZE + 1];
204 hex_encode(hex, digest);
205 hex[sizeof(hex) - 1] = '\0';
206 reply = apr_psprintf(pool, "%s %s", user, hex);
188 char hex[2 * APR_MD5_DIGESTSIZE + 1]; local

Completed in 140 milliseconds

123456