HomeSort by relevance Sort by last modified time
    Searched defs:hex (Results 1 - 25 of 856) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/i386/
list-1.s 5 .globl hex
6 .type hex, @function
7 hex: label
  /external/boringssl/src/crypto/test/
test_util.cc 33 // Print a byte slice as hex.
34 static const char hex[] = "0123456789abcdef"; local
36 os << hex[in.data[i] >> 4]; local
37 os << hex[in.data[i] & 0xf]; local
  /bootable/recovery/otautil/include/otautil/
print_sha1.h 26 const char* hex = "0123456789abcdef"; local
29 result.push_back(hex[(sha1[i] >> 4) & 0xf]);
30 result.push_back(hex[sha1[i] & 0xf]);
  /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;
ActionScriptTarget.java 66 * if the int is below 255, we encode as hex literal
78 // encode as hex
83 String hex = Integer.toHexString(v|0x10000).substring(1,5); local
84 return "\\u"+hex;
Perl5Target.java 63 String hex = Integer.toHexString(c | 0x10000).toUpperCase().substring(1, 5); local
65 buf.append(hex);
  /external/fonttools/Lib/fontTools/ttLib/tables/
C_P_A_L_.py 83 def hex(self): member in class:Color
87 return self.hex()
90 writer.simpletag("color", value=self.hex(), index=index)
  /external/libcups/cups/
md5passwd.c 104 char * /* O - MD5 sum in hex */
107 /* O - MD5 sum in hex */
111 static const char hex[] = "0123456789abcdef"; local
112 /* Hex digits */
121 *md5ptr++ = hex[*sum >> 4];
122 *md5ptr++ = hex[*sum & 15];
  /developers/samples/android/input/autofill/AutofillFramework/afservice/src/main/java/com/example/android/autofill/service/util/
SecurityHelper.java 63 String hex = Integer.toHexString(bytes[i]); local
64 int length = hex.length();
66 hex = "0" + hex;
69 hex = hex.substring(length - 2, length);
71 builder.append(hex.toUpperCase());
  /art/libartbase/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 >> (kBitsPerIntPtrT - 4)];
68 hex++;
69 hex++;
77 hex += gap * 3;
83 *hex++ = gHexDigit[*addr >> 4];
84 *hex++ = gHexDigit[*addr & 0x0f];
85 hex++
    [all...]
  /external/boringssl/src/tool/
rand.cc 29 "-hex", kBooleanArgument,
30 "Hex encoded output."
38 bool forever = true, hex = false; local
61 hex = args_map.count("-hex") > 0;
74 if (hex) {
91 if (hex && fwrite("\n", 1, 1, stdout) != 1) {
  /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/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/
RegexUtilitiesTest.java 61 Transliterator hex = Transliterator.getInstance("hex"); field in class:RegexUtilitiesTest
86 assertEquals("Doubled character works" + hex.transform(s), expected, pattern);
  /external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
RegexUtilitiesTest.java 58 Transliterator hex = Transliterator.getInstance("hex"); field in class:RegexUtilitiesTest
83 assertEquals("Doubled character works" + hex.transform(s), expected, pattern);
  /external/libvpx/libvpx/test/
md5_helper.h 51 static const char hex[16] = { local
60 res_[i * 2 + 0] = hex[tmp[i] >> 4];
61 res_[i * 2 + 1] = hex[tmp[i] & 0xf];
  /external/nanohttpd/core/src/test/java/fi/iki/elonen/
HttpParsingTest.java 52 String hex = Integer.toHexString(i); local
53 String input = "%" + hex;
  /external/webrtc/webrtc/examples/turnserver/
turnserver_main.cc 31 std::string hex; local
32 bool ret = file_.GetStringValue(username, &hex);
35 size_t len = rtc::hex_decode(buf, sizeof(buf), hex);
  /hardware/libhardware/modules/sensors/dynamic_sensor/HidUtils/
StreamIoUtil.h 161 ss << std::hex; member in class:HidUtil::std
  /hardware/libhardware/modules/sensors/dynamic_sensor/HidUtils/test/
HidParserExample2.cpp 25 LOG_D << "Descriptor [" << descriptor.size() << "]: " << std::hex; member in class:std
  /libcore/luni/src/test/java/libcore/java/nio/file/
AtomicMoveNotSupportedExceptionTest.java 38 String hex = "ACED00057372002D6A6176612E6E696F2E66696C652E41746F6D69634D6F76654E6F745375707" local
74 SerializationTester.deserializeHex(hex);
77 assertEquals(hex, hex1);
DirectoryNotEmptyExceptionTest.java 38 String hex = "ACED0005737200286A6176612E6E696F2E66696C652E4469726563746F72794E6F74456D70747" local
72 .deserializeHex(hex);
75 assertEquals(hex, hex1);
FileSystemLoopExceptionTest.java 35 String hex = "ACED0005737200256A6176612E6E696F2E66696C652E46696C6553797374656D4C6F6F7045786" local
69 .deserializeHex(hex);
72 assertEquals(hex, hex1);
NotDirectoryExceptionTest.java 37 String hex = "ACED0005737200236A6176612E6E696F2E66696C652E4E6F744469726563746F7279457863657" local
71 .deserializeHex(hex);
74 assertEquals(hex, hex1);
  /external/boringssl/src/crypto/x509/
x509_obj.c 85 static const char hex[17] = "0123456789ABCDEF"; local
178 *(p++) = hex[(n >> 4) & 0x0f];
179 *(p++) = hex[n & 0x0f];
  /external/capstone/bindings/java/
TestPpc.java 12 // from http://stackoverflow.com/questions/140131/convert-a-string-representation-of-a-hex-dump-to-a-byte-array-using-java
26 private static String hex(int i) { method in class:TestPpc
30 private static String hex(long i) { method in class:TestPpc

Completed in 2120 milliseconds

1 2 3 4 5 6 7 8 91011>>