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

1234567891011>>

/external/chromium_org/third_party/icu/source/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
/external/icu4c/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
/external/chromium_org/net/spdy/
H A Dspdy_test_utils.cc30 std::string hex; local
37 hex += mark ? '*' : ' ';
38 hex += kHexChars[(*p & 0xf0) >> 4];
39 hex += kHexChars[*p & 0x0f];
40 hex += mark ? '*' : ' ';
42 hex += " ";
45 hex = hex + " ";
48 hex += (*p >= 0x20 && *p <= 0x7f) ? (*p) : '.';
50 hex
[all...]
/external/chromium_org/third_party/JSON/JSON-2.59/t/
H A De09_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));
/external/qemu/telephony/
H A Dgsm.h34 /* try to convert a hex string into a byte string, assumes 'dst' is properly sized, and hexlen is even.
36 extern int gsm_hex_to_bytes ( cbytes_t hex, int hexlen, bytes_t dst );
38 /* convert a hex string into a byte string, assumes 'dst' is properly sized, and hexlen is even.
40 extern void gsm_hex_to_bytes0 ( cbytes_t hex, int hexlen, bytes_t dst );
42 /* convert a byte string into a hex string, assumes 'hex' is properly sized */
43 extern void gsm_hex_from_bytes( char* hex, cbytes_t src, int srclen );
51 /* convert a 2-char hex value into an int, returns -1 on error */
52 extern int gsm_hex2_to_byte( const char* hex );
54 /* convert a 2-char hex valu
[all...]
H A Dgsm.c128 gsm_hex2_to_byte( const char* hex )
130 int hi = gsm_hexchar_to_int(hex[0]);
131 int lo = gsm_hexchar_to_int(hex[1]);
140 gsm_hex4_to_short( const char* hex )
142 int hi = gsm_hex2_to_byte(hex);
143 int lo = gsm_hex2_to_byte(hex+2);
152 gsm_hex2_to_byte0( const char* hex )
154 int hi = gsm_hexchar_to_int0(hex[0]);
155 int lo = gsm_hexchar_to_int0(hex[1]);
161 gsm_hex_from_byte( char* hex, in argument
170 gsm_hex_from_short( char* hex, int val ) argument
181 gsm_hex_to_bytes0( cbytes_t hex, int hexlen, bytes_t dst ) argument
194 gsm_hex_to_bytes( cbytes_t hex, int hexlen, bytes_t dst ) argument
210 gsm_hex_from_bytes( char* hex, cbytes_t src, int srclen ) argument
[all...]
H A Dsms.h56 extern int sms_address_from_hex ( SmsAddress address, const char* hex, int hexlen );
57 extern int sms_address_to_hex ( SmsAddress address, char* hex, int hexsize );
71 extern SmsPDU smspdu_create_from_hex( const char* hex, int hexlen );
73 extern int smspdu_to_hex( SmsPDU pdu, char* hex, int hexsize );
/external/chromium_org/tools/grit/grit/format/
H A Dc_format.py52 "Return the octal form of the hex numbers"
53 hex = match.group("hex")
55 while len(hex):
56 next_num = int(hex[2:4], 16)
58 hex = hex[4:]
76 r"(?P<escaped_backslashes>%s)(?P<hex>%s)"
/external/qemu/android/utils/
H A Dmisc.h59 /* decodes a sequence of 'len' hexadecimal chars from 'hex' into
62 extern int hex2int( const uint8_t* hex, int len );
64 /* encodes an integer 'val' into 'len' hexadecimal charaters into 'hex' */
65 extern void int2hex( uint8_t* hex, int len, int val );
/external/chromium_org/v8/test/mjsunit/
H A Dunicode-test.js9138 function hex(x) { function
9155 out += "\\x" + hex(c >> 4) + hex(c);
9157 out += "\\u" + hex(c >> 12) + hex(c >> 8) + hex(c >> 4) + hex(c);
/external/v8/test/mjsunit/
H A Dunicode-test.js9138 function hex(x) { function
9155 out += "\\x" + hex(c >> 4) + hex(c);
9157 out += "\\u" + hex(c >> 12) + hex(c >> 8) + hex(c >> 4) + hex(c);
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
H A DJavaScriptTarget.java40 String hex = Integer.toHexString(v|0x10000).substring(1,5);
41 return "\\u"+hex;
/external/chromium_org/media/webm/
H A Dwebm_info_parser.cc53 DVLOG(1) << "Multiple values for id " << std::hex << id << " specified";
63 DVLOG(1) << "Unexpected float for id" << std::hex << id;
/external/chromium_org/third_party/sqlite/src/test/
H A Dcollate1.test55 db function hex {format 0x%X}
67 INSERT INTO collate1t1 VALUES(45, hex(45));
69 INSERT INTO collate1t1 VALUES(281, hex(281));
79 SELECT c2 FROM collate1t1 ORDER BY 1 COLLATE hex;
84 SELECT c2 FROM collate1t1 ORDER BY 1 COLLATE hex DESC;
89 SELECT c2 FROM collate1t1 ORDER BY 1 COLLATE hex ASC;
94 SELECT c2 COLLATE hex FROM collate1t1 ORDER BY 1
99 SELECT c2 COLLATE hex FROM collate1t1 ORDER BY 1 ASC
104 SELECT c2 COLLATE hex FROM collate1t1 ORDER BY 1 DESC
126 SELECT c1, c2 FROM collate1t1 ORDER BY 1 COLLATE numeric, 2 COLLATE hex;
[all...]
/external/chromium_org/third_party/openssl/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");
/external/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");
/external/chromium/chrome/browser/sync/util/
H A Dcrypto_helpers.cc47 string hex = base::HexEncode(reinterpret_cast<char*>(&bin_digest_.front()), local
49 StringToLowerASCII(&hex);
50 return hex;
/external/libnfc-nci/halimpl/bcm2079x/adaptation/
H A Dspdhelper.cpp61 static char hex[] = "0123456789ABCDEF"; local
63 c[0] = hex[((b >> 4) & 0x0F)];
64 c[1] = hex[((b >> 0) & 0x0F)];
/external/libvpx/libvpx/test/
H A Dmd5_helper.h46 static const char hex[16] = { local
55 res_[i * 2 + 0] = hex[tmp[i] >> 4];
56 res_[i * 2 + 1] = hex[tmp[i] & 0xf];
/external/smack/src/org/xbill/DNS/utils/
H A Dhexdump.java6 * A routine to produce a nice looking hex dump
13 private static final char [] hex = "0123456789ABCDEF".toCharArray(); field in class:hexdump
16 * Dumps a byte array into hex format.
43 sb.append(hex[(value >> 4)]);
44 sb.append(hex[(value & 0xF)]);
/external/chromium_org/win8/test/
H A Dui_automation_client.cc177 LOG_IF(ERROR, FAILED(result)) << std::hex << result;
201 LOG(ERROR) << std::hex << result;
226 LOG(ERROR) << std::hex << result;
233 LOG(ERROR) << std::hex << result;
243 LOG(ERROR) << std::hex << result;
259 LOG(ERROR) << std::hex << result;
279 LOG(ERROR) << std::hex << result;
288 LOG(ERROR) << std::hex << result;
319 LOG(ERROR) << std::hex << hr;
384 LOG(ERROR) << std::hex << resul
[all...]
/external/chromium_org/win8/metro_driver/
H A Dprint_document_source.cc23 NOTREACHED() << "Failed to QI for ID2D1Multithread " << std::hex << hr;
114 LOG(ERROR) << "Failed to get IPrintPreviewDXGIPackageTarget " << std::hex
127 LOG(ERROR) << "Failed to get preview_page_collection " << std::hex << hr;
133 LOG(ERROR) << "Failed to copy preview_page_collection " << std::hex << hr;
151 LOG(ERROR) << "Failed to QI for IPrintTaskOptionsCore " << std::hex << hr;
161 LOG(ERROR) << "Failed to GetPageDescription " << std::hex << hr;
182 LOG(ERROR) << "Failed to CreatePrintControl " << std::hex << hr;
197 LOG_IF(ERROR, FAILED(hr)) << "Failed to get page's metafile " << std::hex
230 LOG(ERROR) << "Failed to QI for IPrintTaskOptionsCore " << std::hex << hr;
237 LOG(ERROR) << "Failed to GetPageDescription " << std::hex << h
[all...]
H A Dprint_handler.cc77 LOG(ERROR) << "Failed to create PrintManagerStatic " << std::hex << hr;
84 LOG(ERROR) << "Failed to get PrintManager for current view " << std::hex
94 << std::hex << hr;
101 LOG(ERROR) << "Failed to create DisplayPropertiesStatics " << std::hex
112 << std::hex << hr;
162 LOG(ERROR) << "Failed to create D3D11 device/context " << std::hex << hr;
168 LOG(ERROR) << "Failed to QI D3D11 device " << std::hex << hr;
184 LOG(ERROR) << "Failed to create D2D1 factory " << std::hex << hr;
191 LOG(ERROR) << "Failed to QI for IDXGIDevice " << std::hex << hr;
198 LOG(ERROR) << "Failed to Create D2DDevice " << std::hex << h
[all...]

Completed in 1113 milliseconds

1234567891011>>