/external/chromium_org/third_party/icu/source/test/intltest/ |
testutil.h | 24 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);
|
testutil.cpp | 14 static const UChar HEX[16]={48,49,50,51,52,53,54,55,56,57,65,66,67,68,69,70}; 19 buf.append(HEX[0xF&(ch>>20)]); 21 buf.append(HEX[0xF&(ch>>16)]); 23 buf.append(HEX[0xF&(ch>>12)]); 24 buf.append(HEX[0xF&(ch>>8)]); 25 buf.append(HEX[0xF&(ch>>4)]); 26 buf.append(HEX[0xF&ch]); 30 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 [all...] |
/external/icu/icu4c/source/test/intltest/ |
testutil.h | 24 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);
|
testutil.cpp | 14 static const UChar HEX[16]={48,49,50,51,52,53,54,55,56,57,65,66,67,68,69,70}; 19 buf.append(HEX[0xF&(ch>>20)]); 21 buf.append(HEX[0xF&(ch>>16)]); 23 buf.append(HEX[0xF&(ch>>12)]); 24 buf.append(HEX[0xF&(ch>>8)]); 25 buf.append(HEX[0xF&(ch>>4)]); 26 buf.append(HEX[0xF&ch]); 30 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 [all...] |
/art/runtime/base/ |
hex_dump.cc | 40 (16 * 3) + /* 16 hex digits and space */ 60 char* hex = out; local 62 (16 * 3) + /* 16 hex digits and space */ 2 /* white space */; 65 *hex++ = gHexDigit[line_offset >> (kBitsPerWord - 4)]; 68 hex++; 69 hex++; 77 hex += gap * 3; 83 *hex++ = gHexDigit[*addr >> 4]; 84 *hex++ = gHexDigit[*addr & 0x0f]; 85 hex++ [all...] |
/device/asus/flo/conn_init/ |
conn_init.c | 26 char hex[7]; local 28 memset(hex, 0, 7); 45 wfc_util_atoh( macAddress, 12, (unsigned char *)hex, 6); 46 wfc_util_qcom_check_config((unsigned char *)hex);
|
/device/lge/mako/conn_init/ |
conn_init.c | 26 char hex[7]; local 28 memset(hex, 0, 7); 45 wfc_util_atoh( macAddress, 12, (unsigned char *)hex, 6); 46 wfc_util_qcom_check_config((unsigned char *)hex);
|
/external/libcxx/test/input.output/iostreams.base/std.ios.manip/basefield.manip/ |
hex.pass.cpp | 14 // ios_base& hex(ios_base& str); 26 std::ios_base& r = std::hex(ios); 28 assert(ios.flags() & std::ios::hex);
|
/external/libcxx/test/input.output/iostreams.base/ios.base/fmtflags.state/ |
flags_fmtflags.pass.cpp | 33 test::fmtflags f = t.flags(test::hex | test::right); 35 assert(t.flags() == (test::hex | test::right));
|
setf_fmtflags.pass.cpp | 33 test::fmtflags f = t.setf(test::hex | test::right); 35 assert(t.flags() == (test::skipws | test::dec | test::hex | test::right));
|
/external/chromium_org/net/spdy/ |
spdy_test_utils.cc | 35 std::string hex; local 42 hex += mark ? '*' : ' '; 43 hex += kHexChars[(*p & 0xf0) >> 4]; 44 hex += kHexChars[*p & 0x0f]; 45 hex += mark ? '*' : ' '; 47 hex += " "; 50 hex = hex + " "; 53 hex += (*p >= 0x20 && *p <= 0x7f) ? (*p) : '.'; 55 hex = hex + '\n' [all...] |
/external/libvpx/libvpx/test/ |
md5_helper.h | 44 static const char hex[16] = { local 53 res_[i * 2 + 0] = hex[tmp[i] >> 4]; 54 res_[i * 2 + 1] = hex[tmp[i] & 0xf];
|
/external/ltrace/etc/ |
syscalls.conf | 21 int open(string, hex(uint), oct(uint)); 121 int openat(at_dirfd_t, string, hex(uint), oct(uint)); 124 int unlinkat(at_dirfd_t, string, hex(uint)); 126 int linkat(at_dirfd_t, string, at_dirfd_t, string, hex(uint)); 128 int faccessat(at_dirfd_t, string, oct(uint), hex(uint)); 129 int fchmodat(at_dirfd_t, string, oct(uint), hex(uint)); 130 int fchownat(at_dirfd_t, string, int, int, hex(uint)); 132 int fstatat(at_dirfd_t, string, addr, hex(uint)); 133 int utimensat(at_dirfd_t, string, addr, hex(uint)); 136 addr shmat(int, addr, hex(uint)) [all...] |
/external/chromium_org/tools/grit/grit/format/ |
c_format.py | 52 "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/okhttp/okio/src/main/java/okio/ |
ByteString.java | 92 public String hex() { method in class:ByteString 102 /** Decodes the hex-encoded bytes and returns their value a byte string. */ 103 public static ByteString decodeHex(String hex) { 104 if (hex.length() % 2 != 0) throw new IllegalArgumentException("Unexpected hex string: " + hex); 106 byte[] result = new byte[hex.length() / 2]; 108 int d1 = decodeHexDigit(hex.charAt(i * 2)) << 4; 109 int d2 = decodeHexDigit(hex.charAt(i * 2 + 1)); 119 throw new IllegalArgumentException("Unexpected hex digit: " + c) [all...] |
/art/runtime/arch/arm64/ |
fault_handler_arm64.cc | 79 VLOG(signals) << "pc: " << std::hex 121 VLOG(signals) << "inst2: " << std::hex << inst2 << " checkinst2: " << checkinst2; 133 VLOG(signals) << "inst1: " << std::hex << inst1 << " checkinst1: " << checkinst1; 161 VLOG(signals) << "stack overflow handler with sp at " << std::hex << &uc; 162 VLOG(signals) << "sigcontext: " << std::hex << sc; 165 VLOG(signals) << "sp: " << std::hex << sp; 168 VLOG(signals) << "fault_addr: " << std::hex << fault_addr; 169 VLOG(signals) << "checking for stack overflow, sp: " << std::hex << sp <<
|
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/ |
JavaScriptTarget.java | 40 String hex = Integer.toHexString(v|0x10000).substring(1,5); local 41 return "\\u"+hex;
|
/external/chromium_org/third_party/sqlite/src/test/ |
collate1.test | 31 # Collation type 'HEX'. If an argument can be interpreted as a hexadecimal 36 db collate HEX hex_collate 55 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 AS [all...] |
/external/nanohttpd/core/src/test/java/fi/iki/elonen/ |
HttpParsingTest.java | 14 String hex = Integer.toHexString(i); local 15 String input = "%" + hex;
|
/external/chromium_org/third_party/codesighs/ |
nm_wrap_osx.pl | 83 my($prev_size) = hex($addr) - hex($prev_addr);
|
/external/openssl/apps/ |
prime.c | 63 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_org/third_party/libvpx/source/libvpx/test/ |
md5_helper.h | 46 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/google-tv-pairing-protocol/cpp/src/polo/util/ |
poloutil.cc | 26 char* hex = BN_bn2hex(bn); local 27 std::string hex_string(hex); 29 OPENSSL_free(hex);
|
/external/libnfc-nci/halimpl/bcm2079x/adaptation/ |
spdhelper.cpp | 61 static char hex[] = "0123456789ABCDEF"; local 63 c[0] = hex[((b >> 4) & 0x0F)]; 64 c[1] = hex[((b >> 0) & 0x0F)];
|
/external/chromium_org/win8/test/ |
ui_automation_client.cc | 177 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 << result [all...] |