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

1 2 3 4 5 6 7 8 91011>>

  /external/icu/icu4c/source/test/intltest/
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...]
  /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);
  /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);
DelphiTarget.java 65 String hex = Integer.toHexString(v | 0x10000).substring(1, 5); local
66 return "'#$" + hex + "'";
  /frameworks/base/tests/CoreTests/android/core/
Sha1Test.java 57 StringBuffer hex = new StringBuffer(bytes.length * 2); local
61 hex.append("0");
63 hex.append(Integer.toString((int) bytes[i] & 0xff, 16));
66 return hex.toString();
  /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 >> (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 28 "-hex", kBooleanArgument,
29 "Hex encoded output."
37 bool forever = true, hex = false; local
60 hex = args_map.count("-hex") > 0;
73 if (hex) {
90 if (hex && fwrite("\n", 1, 1, stdout) != 1) {
  /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/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/libcxxabi/test/
test_exception_storage.pass.cpp 48 std::cout << "{ " << std::hex; member in class:std
  /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/libvpx/libvpx/test/
md5_helper.h 45 static const char hex[16] = { local
54 res_[i * 2 + 0] = hex[tmp[i] >> 4];
55 res_[i * 2 + 1] = hex[tmp[i] & 0xf];
  /external/nanohttpd/core/src/test/java/fi/iki/elonen/
HttpParsingTest.java 14 String hex = Integer.toHexString(i); local
15 String input = "%" + hex;
  /external/openssh/
sshbuf-misc.c 78 const char hex[] = "0123456789abcdef"; local
85 ret[j++] = hex[(p[i] >> 4) & 0xf];
86 ret[j++] = hex[p[i] & 0xf];
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/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];
  /ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/test/
test_exception_storage.cpp 54 std::cout << "{ " << std::hex; member in class:std
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_future_builtins.py 4 from future_builtins import hex, oct, map, zip, filter namespace
8 self.assertEqual(hex(0), '0x0')
9 self.assertEqual(hex(16), '0x10')
10 self.assertEqual(hex(16L), '0x10')
11 self.assertEqual(hex(-16), '-0x10')
12 self.assertEqual(hex(-16L), '-0x10')
13 self.assertRaises(TypeError, hex, {})
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_future_builtins.py 4 from future_builtins import hex, oct, map, zip, filter namespace
8 self.assertEqual(hex(0), '0x0')
9 self.assertEqual(hex(16), '0x10')
10 self.assertEqual(hex(16L), '0x10')
11 self.assertEqual(hex(-16), '-0x10')
12 self.assertEqual(hex(-16L), '-0x10')
13 self.assertRaises(TypeError, hex, {})
  /external/boringssl/src/crypto/x509/
x509_obj.c 77 static const char hex[17]="0123456789ABCDEF"; local
168 *(p++)=hex[(n>>4)&0x0f];
169 *(p++)=hex[n&0x0f];
  /external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
RegexUtilitiesTest.java 55 Transliterator hex = Transliterator.getInstance("hex"); field in class:RegexUtilitiesTest
79 assertEquals("Doubled character works" + hex.transform(s), expected, pattern);
TestUtility.java 14 public static String hex(char ch) { method in class:TestUtility
19 public static String hex(int ch) { method in class:TestUtility
24 public static String hex(String s) { method in class:TestUtility
25 return hex(s,",");
28 public static String hex(String s, String sep) { method in class:TestUtility
30 String result = hex(s.charAt(0));
33 result += hex(s.charAt(i));
126 System.out.println(TestUtility.hex(cc) + "\t" + block);
136 System.out.println(TestUtility.hex(cc) + "\t" + script);
  /external/v8/src/
ostreams.cc 101 OStream& OStream::hex() { function in class:v8::internal::OStream
117 OStream& hex(OStream& os) { // NOLINT(runtime/references) function in namespace:v8::internal
118 return os.hex();
  /external/v8/test/mjsunit/
unicode-test.js 9138 function hex(x) { function
    [all...]

Completed in 1182 milliseconds

1 2 3 4 5 6 7 8 91011>>