Searched defs:hex (Results 1 - 25 of 130) sorted by relevance

123456

/external/chromium_org/third_party/icu/source/test/intltest/
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/icu/icu4c/source/test/intltest/
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/components/rappor/
H A Dbyte_vector_utils_unittest.cc21 std::string HexToString(const char* hex) { argument
23 base::HexStringToBytes(hex, &bv);
/external/chromium_org/third_party/libvpx/source/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/fonttools/Lib/fontTools/ttLib/tables/
H A DC_P_A_L_.py83 def hex(self): member in class:Color
87 return self.hex()
90 writer.simpletag("color", value=self.hex(), index=index)
/external/fonttools/Tools/fontTools/ttLib/tables/
H A DC_P_A_L_.py83 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/
H A Dpoloutil.cc26 char* hex = BN_bn2hex(bn); local
27 std::string hex_string(hex);
29 OPENSSL_free(hex);
/external/libvpx/libvpx/test/
H A Dmd5_helper.h44 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/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");
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...]
/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/third_party/libjingle/source/talk/examples/turnserver/
H A Dturnserver_main.cc48 std::string hex; local
49 bool ret = file_.GetStringValue(username, &hex);
52 size_t len = rtc::hex_decode(buf, sizeof(buf), hex);
/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/libcxxabi/test/
H A Dtest_exception_storage.cpp48 std::cout << "{ " << std::hex; member in class:std
/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/chromium_org/third_party/boringssl/src/crypto/x509/
H A Dx509_obj.c75 static const char hex[17]="0123456789ABCDEF"; local
166 *(p++)=hex[(n>>4)&0x0f];
167 *(p++)=hex[n&0x0f];
/external/chromium_org/v8/src/
H A Dostreams.cc101 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/libedit/src/
H A Dparse.c179 const Char hex[] = STR("0123456789ABCDEF"); local
186 h = Strchr(hex, *p++);
190 c = (c << 4) | ((int)(h - hex));
/external/openssl/crypto/x509/
H A Dx509_obj.c75 static const char hex[17]="0123456789ABCDEF"; local
190 *(p++)=hex[(n>>4)&0x0f];
191 *(p++)=hex[n&0x0f];
202 *(p++)=hex[(n>>4)&0x0f];
203 *(p++)=hex[n&0x0f];
/external/bluetooth/bluedroid/btif/src/
H A Dbtif_sock_util.c178 static inline void word2hex(const char* data, char** hex) argument
180 byte2hex(&data[1], hex);
181 byte2hex(&data[0], hex);
215 //write hex of data
238 //write hex of data
243 //write hex padding
/external/chromium_org/net/third_party/nss/ssl/
H A Dssltrace.c15 static const char *hex = "0123456789abcdef"; variable
54 *bp++ = hex[(ch >> 4) & 0xf];
55 *bp++ = hex[ch & 0xf];
96 * b) It dumps only hex, not ASCII.
113 *bp++ = hex[(ch >> 4) & 0xf];
114 *bp++ = hex[ch & 0xf];
/external/okhttp/okio/src/main/java/okio/
H A DByteString.java92 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) { argument
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 digi
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/sec/
H A DSECNamedCurves.java34 String hex)
36 return new BigInteger(1, Hex.decode(hex));
33 fromHex( String hex) argument
/external/chromium_org/net/spdy/
H A Dspdy_test_utils.cc35 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
[all...]
/external/chromium_org/third_party/skia/src/animator/
H A DSkMemberInfo.cpp213 char hex = poundPos[4]; local
214 if (is_hex(hex) == false) {

Completed in 6376 milliseconds

123456