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

1234567891011>>

/macosx-10.10/ruby-106/ruby/test/scanf/
H A Dtest_scanf.rb176 [ "%o%d%x", "21912a3", [ "21".oct, 912, "a3".hex ] ],
177 [ "%3o%4d%3x", "21912a3", [ "21".oct, 912, "a3".hex ] ],
178 [ "%3o%4d%5x", "2191240xa3", [ "21".oct, 9124, "a3".hex ] ],
179 [ "%3d%3x", "12abc", [12, "abc".hex] ],
180 [ "%s%i%d", "hello +0xdef 123", [ "hello", "def".hex, 123] ],
181 [ "%s%i%d", "hello -0xdef 123", [ "hello", -"def".hex, 123] ],
184 [ "%s%5i%3i%4i", "hello 0x123 123 0123", [ "hello", "0x123".hex, 123,"0123".oct] ],
187 [ "%s%5x%d", "hello 0xdef 123", [ "hello", "def".hex, 123] ],
188 [ "%s%6x%d", "hello +0xdef 123", [ "hello", "def".hex, 123] ],
189 [ "%s%6x%d", "hello -0xdef 123", [ "hello", -"def".hex, 12
[all...]
/macosx-10.10/ICU-531.30/icuSources/test/intltest/
H A Dtestutil.h24 static UnicodeString hex(UChar32 ch);
26 static UnicodeString hex(const UnicodeString& s);
28 static UnicodeString hex(const UnicodeString& s, UChar sep);
30 static UnicodeString hex(const uint8_t* bytes, int32_t len);
H A Dtestutil.cpp30 UnicodeString TestUtility::hex(UChar32 ch) { function in class:TestUtility
36 UnicodeString TestUtility::hex(const UnicodeString& s) { function in class:TestUtility
37 return hex(s, 44 /*,*/);
40 UnicodeString TestUtility::hex(const UnicodeString& s, UChar sep) { function in class:TestUtility
54 UnicodeString TestUtility::hex(const uint8_t* bytes, int32_t len) { function in class:TestUtility
/macosx-10.10/Heimdal-398.1.2/
H A Dcode-size.txt18 echo " __TEXT __DATA __OBJC others dec hex"
40 __TEXT __DATA __OBJC others dec hex
44 __TEXT __DATA __OBJC others dec hex
48 __TEXT __DATA __OBJC others dec hex
54 __TEXT __DATA __OBJC others dec hex
58 __TEXT __DATA __OBJC others dec hex
62 __TEXT __DATA __OBJC others dec hex
68 __TEXT __DATA __OBJC others dec hex
72 __TEXT __DATA __OBJC others dec hex
76 __TEXT __DATA __OBJC others dec hex
[all...]
/macosx-10.10/postfix-255/postfix/src/util/
H A Dhex_quote.c9 /* VSTRING *hex_quote(hex, raw)
10 /* VSTRING *hex;
13 /* VSTRING *hex_unquote(raw, hex)
15 /* const char *hex;
21 /* value is the hex argument.
58 VSTRING *hex_quote(VSTRING *hex, const char *raw) argument
63 VSTRING_RESET(hex);
66 VSTRING_ADDCH(hex, ch);
68 vstring_sprintf_append(hex, "%%%02X", ch);
71 VSTRING_TERMINATE(hex);
77 hex_unquote(VSTRING *raw, const char *hex) argument
132 VSTRING *hex = vstring_alloc(100); local
[all...]
H A Dhex_code.c84 unsigned int hex; local
91 hex = cp[0];
92 if (hex >= '0' && hex <= '9')
93 bin = (hex - '0') << 4;
94 else if (hex >= 'A' && hex <= 'F')
95 bin = (hex - 'A' + 10) << 4;
96 else if (hex >= 'a' && hex <
[all...]
/macosx-10.10/Security-57031.1.35/Security/libsecurity_transform/
H A DNSData+HexString.h11 +(id)dataWithHexString:(NSString*)hex;
/macosx-10.10/bind9-45.101/bind9/contrib/idn/idnkit-1.0-src/lib/
H A Ddebug.c57 static char *hex = "0123456789abcdef"; variable
78 *p++ = hex[c >> 4];
79 *p++ = hex[c & 15];
114 *p++ = hex[c >> 4];
115 *p++ = hex[c & 15];
152 *p++ = hex[(*s >> 28) & 0x0f];
153 *p++ = hex[(*s >> 24) & 0x0f];
157 *p++ = hex[(*s >> 20) & 0x0f];
158 *p++ = hex[(*s >> 16) & 0x0f];
162 *p++ = hex[(*
[all...]
/macosx-10.10/tcl-105/tcl_ext/tclae/tclae/library/
H A Daelegacy.tcl13 binary scan [encoding convertto macRoman $string] H* hex
14 return "\u00ab${hex}\u00bb"
/macosx-10.10/CPANInternal-159.1/JSON-PP-2.27203/t/
H A D109_encode.t32 is($json->encode(chr hex 3042 ), q|"\u3042"|);
33 is($json->encode(chr hex 12345 ), q|"\ud808\udf45"|);
36 is($json->encode(chr hex 3042 ), $json->encode(chr 66));
37 is($json->encode(chr hex 12345 ), $json->encode(chr 69));
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/virtchannel_transform/
H A Dhex.tcl6 # Package tcl::transform::hex 1
10 # Meta description Implementation of a hex transformation,
32 proc ::tcl::transform::hex {chan} {
33 ::chan push $chan [hex::implementation new]
37 oo::class create ::tcl::transform::hex::implementation {
41 # bytes -> hex
42 binary scan $data H* hex
43 return $hex
47 # hex -> bytes
57 package provide tcl::transform::hex
[all...]
/macosx-10.10/JavaScriptCore-7600.1.17/tests/mozilla/ecma/GlobalObject/
H A D15.1.2.5-2.js129 var hex = new Array();
136 hex[index] = Math.floor( n / Math.pow(16,mag) );
140 hex[hex.length] = n % 16;
144 for ( var index = 0 ; index < hex.length ; index++ ) {
145 switch ( hex[index] ) {
165 string += hex[index];
H A D15.1.2.5-3.js152 var hex = new Array();
159 hex[index] = Math.floor( n / Math.pow(16,mag) );
163 hex[hex.length] = n % 16;
167 for ( var index = 0 ; index < hex.length ; index++ ) {
168 switch ( hex[index] ) {
188 string += hex[index];
H A D15.1.2.4.js151 var hex = new Array();
158 hex[index] = Math.floor( n / Math.pow(16,mag) );
162 hex[hex.length] = n % 16;
166 for ( var index = 0 ; index < hex.length ; index++ ) {
167 switch ( hex[index] ) {
187 string += hex[index];
H A D15.1.2.5-1.js117 // unicode chars represented by two hex digits
151 var hex = new Array();
158 hex[index] = Math.floor( n / Math.pow(16,mag) );
162 hex[hex.length] = n % 16;
166 for ( var index = 0 ; index < hex.length ; index++ ) {
167 switch ( hex[index] ) {
187 string += hex[index];
/macosx-10.10/cups-408/cups/cgi-bin/
H A Dhtml.c89 static const char *hex = /* Hexadecimal characters */ local
126 *dstptr++ = hex[(*src & 255) >> 4];
127 *dstptr++ = hex[*src & 15];
/macosx-10.10/Heimdal-398.1.2/lib/asn1/
H A DREADME.template38 __TEXT __DATA __OBJC others dec hex
43 __TEXT __DATA __OBJC others dec hex
48 __TEXT __DATA __OBJC others dec hex
53 __TEXT __DATA __OBJC others dec hex
71 __TEXT __DATA __OBJC others dec hex
88 __TEXT __DATA __OBJC others dec hex
93 __TEXT __DATA __OBJC others dec hex
98 __TEXT __DATA __OBJC others dec hex
102 __TEXT __DATA __OBJC others dec hex
111 __TEXT __DATA __OBJC others dec hex
[all...]
/macosx-10.10/JavaScriptCore-7600.1.17/yarr/
H A DYarrCanonicalizeUCS2.js138 // Helper function to convert a number to a fixed width hex representation of a C uint16_t.
139 function hex(x) function
189 characters += hex(set[j]) + ", ";
204 print(" { " + hex(info.begin) + ", " + hex(info.end) + ", " + hex(typeAndValue[1]) + ", " + typeAndValue[0] + " },");
213 print(" { " + hex(info.begin) + ", " + hex(info.end) + ", " + hex(typeAndValue[1]) + ", " + typeAndValue[0] + " },");
/macosx-10.10/apache-793/httpd/test/
H A Dcheck_chunked45 my $chunklen = hex($1);
/macosx-10.10/msdosfs-209.1.1/
H A DHexDump.py25 hex = " ".join(map(HexByte, line))
27 print "%s%-*s |%s|" % (offStr, 3*bytesPerLine, hex, ascii)
/macosx-10.10/ruby-106/ruby/tool/
H A Dvtlh.rb6 addr = stat[0].hex + 0x00400000
/macosx-10.10/OpenSSL098-52/src/apps/
H A Dprime.c63 int hex=0; local
78 if(!strcmp(*argv,"-hex"))
79 hex=1;
111 if(hex)
127 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...]
/macosx-10.10/cups-408/cups/cups/
H A Dmd5passwd.c113 char * /* O - MD5 sum in hex */
116 /* O - MD5 sum in hex */
120 static const char hex[] = "0123456789abcdef"; local
130 *md5ptr++ = hex[*sum >> 4];
131 *md5ptr++ = hex[*sum & 15];
/macosx-10.10/ruby-106/ruby/lib/
H A Dsecurerandom.rb15 # p SecureRandom.hex(10) #=> "52750b30ffbc7de3b362"
16 # p SecureRandom.hex(10) #=> "92b15d6c8dc4beb5f559"
17 # p SecureRandom.hex(11) #=> "6aca1b5c58e4863e6b81b8"
18 # p SecureRandom.hex(12) #=> "94b2fff3e7fd9b9c391a2306"
19 # p SecureRandom.hex(13) #=> "39b290146bea6ce975c37cfc23"
125 # SecureRandom.hex generates a random hex string.
135 # p SecureRandom.hex #=> "eb693ec8252cd630102fd0d0fb7c3485"
136 # p SecureRandom.hex #=> "91dc3bfb4de5b11d029d376634589b61"
140 def self.hex( singleton method in class:SecureRandom
[all...]

Completed in 399 milliseconds

1234567891011>>