| /mirbsd/src/gnu/usr.bin/perl/lib/ |
| D | charnames.pm | 168 my $hex = sprintf "%04x", $ord; 172 croak "Character 0x$hex with name '$fname' is above 0xFF"; 254 my $hex; 256 $hex = sprintf "%04X", $arg; 258 $hex = $1; 265 if (length($hex) > 5 && hex($hex) > 0x10FFFF) { 266 carp sprintf "Unicode characters only allocated up to U+10FFFF (you asked for U+%X)", $hex; 270 return $viacode{$hex} if exists $viacode{$hex}; 274 return unless $txt =~ m/^$hex\t\t(.+)/m; 276 $viacode{$hex} = $1;
|
| /mirbsd/src/gnu/usr.bin/binutils/gdb/ |
| D | auxv.c | 199 enum { dec, hex, str } flavor = hex; in fprint_target_auxv() enumerator 205 TAG (AT_NULL, _("End of vector"), hex); in fprint_target_auxv() 206 TAG (AT_IGNORE, _("Entry should be ignored"), hex); in fprint_target_auxv() 208 TAG (AT_PHDR, _("Program headers for program"), hex); in fprint_target_auxv() 212 TAG (AT_BASE, _("Base address of interpreter"), hex); in fprint_target_auxv() 213 TAG (AT_FLAGS, _("Flags"), hex); in fprint_target_auxv() 214 TAG (AT_ENTRY, _("Entry point of program"), hex); in fprint_target_auxv() 222 TAG (AT_HWCAP, _("Machine-dependent CPU capability hints"), hex); in fprint_target_auxv() 228 TAG (AT_SYSINFO, _("Special system info/entry points"), hex); in fprint_target_auxv() 229 TAG (AT_SYSINFO_EHDR, _("System-supplied DSO's ELF header"), hex); in fprint_target_auxv() [all …]
|
| D | rom68k-rom.c | 88 rom68k_supply_one_register (int regno, unsigned char *hex) in rom68k_supply_one_register() argument 94 while (*hex != '\0') in rom68k_supply_one_register() 95 if (is_hex_digit (*hex)) in rom68k_supply_one_register() 96 value = (value * 16) + hex_digit_value (*hex++); in rom68k_supply_one_register() 101 while (is_whitespace (*hex)) in rom68k_supply_one_register() 102 hex++; in rom68k_supply_one_register() 107 return hex; in rom68k_supply_one_register()
|
| D | sparc-stub.c | 272 hex (unsigned char ch) in hex() function 325 xmitcsum = hex (ch) << 4; in getpacket() 327 xmitcsum += hex (ch); in getpacket() 430 ch = hex(*buf++) << 4; in hex2mem() 431 ch |= hex(*buf++); in hex2mem() 533 hexValue = hex(**ptr); in hexToInt()
|
| D | m68k-stub.c | 518 hex (ch) in hex() function 572 xmitcsum = hex (ch) << 4; in getpacket() 574 xmitcsum += hex (ch); in getpacket() 679 ch = hex (*buf++) << 4; 680 ch = ch + hex (*buf++); 797 hexValue = hex (**ptr); in hexToInt()
|
| D | i386-stub.c | 439 hex (ch) in hex() function 493 xmitcsum = hex (ch) << 4; in getpacket() 495 xmitcsum += hex (ch); in getpacket() 641 ch = hex (*buf++) << 4; 642 ch = ch + hex (*buf++); 725 hexValue = hex (**ptr); in hexToInt()
|
| D | sh-stub.c | 198 static int hex (char); 305 hex (char ch) in hex() function 343 ch = hex (*buf++) << 4; in hex2mem() 344 ch = ch + hex (*buf++); in hex2mem() 364 hexValue = hex (**ptr); in hexToInt() 422 xmitcsum = hex (ch) << 4; in getpacket() 424 xmitcsum += hex (ch); in getpacket()
|
| /mirbsd/src/gnu/usr.bin/perl/t/lib/warnings/ |
| D | util | 6 Illegal hex digit ignored 7 my $a = hex "0xv9" ; 21 my $a = hex "0xffffffffffffffffffff" ; 23 $a = hex "0x1ffffffff" ; 36 my $a = hex "0xv9" ; 38 $a = hex "0xv9" ; 60 my $a = hex "0xffffffffffffffffffff" ; 62 $a = hex "0xffffffffffffffffffff" ; 88 my $a = hex "0x0fffffffe" ; 89 $a = hex "0x0ffffffff" ; [all …]
|
| /mirbsd/src/lib/libssl/src/apps/ |
| D | rand.c | 88 int hex = 0; in MAIN() local 140 if (!hex) in MAIN() 141 hex = 1; in MAIN() 160 if (hex && base64) in MAIN() 226 if (!hex) in MAIN()
|
| D | prime.c | 61 int hex=0; in MAIN() local 77 hex=1; in MAIN() 109 if(hex) in MAIN()
|
| /mirbsd/src/lib/libc/hash/ |
| D | helper.c | 37 #define hex mbsd_digits_HEX in HASHEnd() macro 39 #define hex mbsd_digits_hex in HASHEnd() macro 47 buf[i + i] = hex[digest[i] >> 4]; in HASHEnd() 48 buf[i + i + 1] = hex[digest[i] & 0x0f]; in HASHEnd()
|
| /mirbsd/src/lib/libssl/src/crypto/x509/ |
| D | x509_obj.c | 75 static char hex[17]="0123456789ABCDEF"; in X509_NAME_oneline() local 190 *(p++)=hex[(n>>4)&0x0f]; in X509_NAME_oneline() 191 *(p++)=hex[n&0x0f]; in X509_NAME_oneline() 202 *(p++)=hex[(n>>4)&0x0f]; in X509_NAME_oneline() 203 *(p++)=hex[n&0x0f]; in X509_NAME_oneline()
|
| /mirbsd/src/lib/libssl/src/doc/apps/ |
| D | errstr.pod | 15 display the meaning of the hex code. The hex code is the hex digits after the
|
| D | dgst.pod | 13 [B<-hex>] 42 B<hex> format output is used. 48 =item B<-hex> 50 digest is to be output as a hex dump. This is the default case for a "normal"
|
| /mirbsd/src/usr.sbin/httpd/src/main/ |
| D | util_md5.c | 93 const char *hex = "0123456789abcdef"; in ap_md5_binary() local 108 *r++ = hex[hash[i] >> 4]; in ap_md5_binary() 109 *r++ = hex[hash[i] & 0xF]; in ap_md5_binary()
|
| /mirbsd/src/gnu/usr.bin/perl/ext/Encode/t/ |
| D | Unicode.t | 39 pack("C*", map {hex($_)} qw<5c 0f 98 fc 30 00 5f 3e d8 2a df cd>); 41 pack("C*", map {hex($_)} qw<0f 5c fc 98 00 30 3e 5f 2a d8 cd df>); 43 pack("C*", map {hex($_)} qw<5c 0f 98 fc 30 00 5f 3e ff fd>); 45 pack("C*", map {hex($_)} qw<0f 5c fc 98 00 30 3e 5f fd ff>); 47 pack("C*", map {hex($_)} 50 pack("C*", map {hex($_)}
|
| /mirbsd/src/gnu/usr.bin/perl/ext/B/t/ |
| D | terse.t | 43 my ($hex, $op) = ('\(0x[a-f0-9]+\)', '\s+\w+'); 44 my %ops = map { $_ => qr/$_ $hex$op/ } 102 like( $items, qr/RV $hex \\42/, 'RV' );
|
| /mirbsd/src/sbin/ipsecctl/ |
| D | parse.y | 279 unsigned char *hex; variable 281 hex = $2; 282 if (!strncmp(hex, "0x", 2)) 283 hex += 2; 284 $$ = parsekey(hex, strlen(hex)); 291 unsigned char *hex; variable 298 if ((hex = calloc(sb.st_size, sizeof(unsigned char))) 303 if (read(fd, hex, sb.st_size) < sb.st_size) 306 $$ = parsekey(hex, sb.st_size);
|
| /mirbsd/src/gnu/usr.bin/perl/utils/ |
| D | h2ph.PL | 409 && do {my $hex = $1; 410 $hex =~ s/^0+//; 411 if (length $hex > 8 && !$Config{use64bitint}) { 413 $new .= hex(substr($hex, -8)) + 414 2**32 * hex(substr($hex, 0, -8)); 419 $new .= lc("0x$hex");
|
| /mirbsd/src/gnu/usr.bin/perl/t/uni/ |
| D | fold.t | 20 next if EBCDIC && hex $1 < 0x100; 35 my $a = pack("U0U*", hex $code); 36 my $b = pack("U0U*", map { hex } split " ", $mapping);
|
| /mirbsd/src/usr.bin/x99token/ |
| D | x99token.c | 43 int hex = 1; in main() local 57 hex = 0; in main() 161 if (!hex) in main()
|
| /mirbsd/src/gnu/usr.bin/perl/t/op/ |
| D | 64bitint.t | 67 print "not " unless hex($x) == 0x2dfdc1c35 && hex($x) > $f; 71 print "not " unless hex($x) == 0x2dfdc1c35 && hex($x) > $f; 75 print "not " unless hex($x) == 0x2dfdc1c35 && hex($x) > $f; 384 $q = hex "0x123456789abcdef0"; 388 printf "not ok 64 # hex \"0x123456789abcdef0\" = $q (%X)\n", $q;
|
| D | utf8decode.t | 161 my ($okay, $bytes, $Unicode, $byteslen, $hex, $charslen, $experr) = 163 my @hex = split(/:/, $hex); 164 unless (@hex == $byteslen) { 165 my $nhex = @hex;
|
| /mirbsd/src/usr.bin/m4/ |
| D | tokenizer.l | 33 hex 0[xX][0-9a-fA-F]+ 40 {hex}|{oct}|{dec} { yylval = number(); return(NUMBER); }
|
| /mirbsd/src/lib/libssl/src/doc/crypto/ |
| D | ASN1_STRING_print_ex.pod | 47 using exactly four characters for the hex representation. If it is 32 bits then 48 "\WXXXXXXXX" is used using eight characters of its hex representation. These forms 54 notation. Other characters use the "\XX" using exactly two characters of the hex 69 outputs the value of the string using the form #XXXX using hex format for each
|