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

/barrelfish-master/lib/acpica/tests/templates/
H A DMakefile8 rm -f *.asl *.aml *.dsl *.hex diff.log
/barrelfish-master/lib/openssl-1.0.0d/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);
/barrelfish-master/lib/openssl-1.0.0d/test/
H A Dtest_padlock19 HASH=`cat $PROG | $PROG dgst -hex`
33 $PROG dgst -hex ) 2>/dev/null`
41 $PROG dgst -hex ) 2>/dev/null`
49 $PROG dgst -hex ) 2>/dev/null`
H A Dcasttest.c183 static char *hex="0123456789ABCDEF"; local
201 printf("%c",hex[i&0x0f]);
/barrelfish-master/lib/openssl-1.0.0d/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...]
/barrelfish-master/usr/eclipseclp/lib_tcl/widget/
H A Dutil-number.tcl60 # converts binary to hex number
77 regsub -all .... $bin {$t(&)} hex
78 return [subst $hex]
83 # converts hex number to bin
85 # hex number in hex format
89 ;proc hex2bin hex {
96 regsub {^0[xX]} $hex {} hex
97 regsub -all . $hex {
[all...]
H A Dprogressbar.tcl418 if {![regexp {^\#([0-9a-f]+)$} $c junk hex] || \
419 [set len [string length $hex]]>12 || $len%3 != 0} {
423 scan $hex "%${len}x%${len}x%${len}x" r g b
/barrelfish-master/lib/openssl-1.0.0d/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];
/barrelfish-master/include/
H A Dbitmap.h51 size_t bitmap_format(char *outbuf, size_t length, struct bitmap *bm, uint8_t hex);
52 size_t bitmap_parse(struct bitmap *outbm, char *inbuf, size_t length, uint8_t hex);
/barrelfish-master/lib/debug_log/
H A Ddebug_log.c62 char hex[16] = "0123456789ABCDEF";
74 buff[k] = hex[(ts & 15)];
/barrelfish-master/lib/acpica/tests/aslts/
H A DMakefile.def79 rm $$j.hex; \
/barrelfish-master/lib/openssl-1.0.0d/crypto/cast/
H A Dcasttest.c183 static char *hex="0123456789ABCDEF"; local
201 printf("%c",hex[i&0x0f]);
/barrelfish-master/tools/usbboot/libc/
H A Dprintf.c228 goto hex;
232 hex:
/barrelfish-master/kernel/
H A Dprintf.c493 goto hex;
496 hex:_uquad = UARG();
/barrelfish-master/lib/bitmap/
H A Dbitmap.c95 * \param hex flag to enable hexadecimal formatted output
99 size_t bitmap_format(char *outbuf, size_t length, struct bitmap *bm, uint8_t hex) argument
111 * \param hex parse input as hex
115 size_t bitmap_parse(struct bitmap *outbm, char *inbuf, size_t length, uint8_t hex) argument
/barrelfish-master/lib/libc/stdio/
H A Dvfprintf.c334 * F: at least two digits for decimal, at least one digit for hex
860 goto hex;
863 hex:
H A Dvfwprintf.c415 * F: at least two digits for decimal, at least one digit for hex
441 wchar_t ox[2]; /* space for 0x hex-prefix */
928 goto hex;
931 hex:
/barrelfish-master/lib/cxx/cxx/
H A Dios.cpp96 const ios_base::fmtflags ios_base::hex; member in class:ios_base
H A Dlocale.cpp4369 else if (__basefield == ios_base::hex)
4422 else if ((__flags & ios_base::basefield) == ios_base::hex)
/barrelfish-master/usr/eclipseclp/documents/userman/
H A Dumssyntax.tex281 ES \verb'x' hex digits ES & character with given hexadecimal character code &\\
311 ES \verb'x' hex digits ES & character with given hexadecimal character code &\\
/barrelfish-master/lib/pcre/
H A Dpcre_compile.c553 "non-hex character in \\x{} (closing brace missing?)\0"
566 /* Table to identify digits and hex digits. This is used when compiling
1335 greater than 0xff in utf or non-8bit mode, but only if the ddd are hex
1337 seems to read hex digits up to the first non-such, and ignore the rest, so
1390 /* If the sequence of hex digits does not end with '}', give an error.
1398 /* Read a single-byte hex-defined char (up to two hex digits after \x) */

Completed in 247 milliseconds