/external/chromium_org/third_party/codesighs/ |
nm_wrap_osx.pl | 83 my($prev_size) = hex($addr) - hex($prev_addr);
|
/external/chromium_org/third_party/openssl/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");
|
rand.c | 72 * -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/chromium_org/third_party/openssl/openssl/crypto/poly1305/ |
poly1305test.c | 98 static void hex_decode(unsigned char *out, const char* hex) 102 while (*hex != 0) 104 unsigned char v = hex_digit(*hex++); 106 v |= hex_digit(*hex++);
|
/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");
|
rand.c | 72 * -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/qemu/telephony/ |
sms.h | 56 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 );
|
/packages/apps/Email/src/com/android/email/mail/transport/ |
DiscourseLogger.java | 72 final String hex = "00" + Integer.toHexString(b); local 73 mReceivingLine.append("\\x" + hex.substring(hex.length() - 2, hex.length()));
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/tests/ |
test_pass1.py | 33 "hex": "\u0123\u4567\u89AB\uCDEF\uabcd\uef4A",
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/tests/ |
test_pass1.py | 33 "hex": "\u0123\u4567\u89AB\uCDEF\uabcd\uef4A",
|
/external/chromium/chrome/browser/sync/util/ |
crypto_helpers.cc | 47 string hex = base::HexEncode(reinterpret_cast<char*>(&bin_digest_.front()), local 49 StringToLowerASCII(&hex); 50 return 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/smack/src/org/xbill/DNS/utils/ |
hexdump.java | 6 * 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/ |
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...] |
/external/chromium_org/win8/metro_driver/ |
print_document_source.cc | 23 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 << hr [all...] |
print_handler.cc | 77 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 << hr [all...] |
/external/chromium_org/chrome/test/logging/win/ |
file_logger.cc | 105 << "; hr=" << std::hex << hr; 121 << i << "; hr=" << std::hex << hr; 142 << "Failed to stop a previous trace session; hr=" << std::hex << hr; 167 << "; hr=" << std::hex << hr; 181 << "Failed to flush events; hr=" << std::hex << hr; 184 << "Failed to stop ETW session; hr=" << std::hex << hr;
|
/external/chromium_org/third_party/libxslt/libexslt/ |
crypto.c | 48 * @hex: buffer to store hex version of blob 49 * @hexlen: length of buffer to store hex version of blob 51 * Helper function which encodes a binary blob as hex. 55 unsigned char *hex, int hexlen) { 67 hex[pos++] = bin2hex[hi]; 68 hex[pos++] = bin2hex[lo]; 71 hex[pos] = '\0'; 76 * @hex: hex version of blob to conver 498 unsigned char hex[MD5_DIGEST_LENGTH * 2 + 1]; local 531 unsigned char hex[MD5_DIGEST_LENGTH * 2 + 1]; local 564 unsigned char hex[SHA1_DIGEST_LENGTH * 2 + 1]; local 597 xmlChar *bin = NULL, *hex = NULL; local [all...] |
/external/wpa_supplicant_8/wpa_supplicant/examples/p2p/ |
p2p_invite.py | 33 print "BSSID = ", hex(bssid[0]) , ":" , \ 34 hex(bssid[1]) , ":" , hex(bssid[2]) , ":", \ 35 hex(bssid[3]) , ":" , hex(bssid[4]) , ":" , \ 36 hex(bssid[5])
|
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/ |
turnserver_main.cc | 48 std::string hex; local 49 bool ret = file_.GetStringValue(username, &hex); 52 size_t len = talk_base::hex_decode(buf, sizeof(buf), hex);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/ios.base/ios.types/ios_fmtflags/ |
fmtflags.pass.cpp | 17 // static const fmtflags hex; 30 // static const fmtflags basefield = dec | oct | hex; 41 assert(std::ios_base::hex); 59 & std::ios_base::hex 78 | std::ios_base::hex));
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
Color.js | 57 // Simple - #hex, rgb(), nickname, hsl() 62 if (match[1]) { // hex 63 var hex = match[1].toUpperCase(); 65 if (hex.length === 3) { 67 hex = hex.charAt(0) + hex.charAt(0) + hex.charAt(1) + hex.charAt(1) + hex.charAt(2) + hex.charAt(2) [all...] |
/external/chromium_org/third_party/openssl/openssl/crypto/chacha/ |
chachatest.c | 111 static void hex_decode(unsigned char *out, const char* hex) 115 while (*hex != 0) 117 unsigned char v = hex_digit(*hex++); 119 v |= hex_digit(*hex++);
|
/external/ipsec-tools/src/racoon/ |
prsa_tok.l | 52 hex [0-9a-fA-F] 53 word6 {hex}{0,4} 67 return HEX;
|
/external/okhttp/src/test/java/com/squareup/okhttp/ |
RequestTest.java | 83 StringBuilder hex = new StringBuilder(); local 85 if ((b & 0xff) < 0x10) hex.append('0'); 86 hex.append(Integer.toHexString(b & 0xff)); 88 return hex.toString();
|