HomeSort by relevance Sort by last modified time
    Searched refs:hex (Results 26 - 50 of 745) sorted by null

12 3 4 5 6 7 8 91011>>

  /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/qemu/telephony/
gsm.c 128 gsm_hex2_to_byte( const char* hex )
130 int hi = gsm_hexchar_to_int(hex[0]);
131 int lo = gsm_hexchar_to_int(hex[1]);
140 gsm_hex4_to_short( const char* hex )
142 int hi = gsm_hex2_to_byte(hex);
143 int lo = gsm_hex2_to_byte(hex+2);
152 gsm_hex2_to_byte0( const char* hex )
154 int hi = gsm_hexchar_to_int0(hex[0]);
155 int lo = gsm_hexchar_to_int0(hex[1]);
161 gsm_hex_from_byte( char* hex, int val
    [all...]
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 );
  /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...]
  /hardware/invensense/65xx/libsensors_iio/
MPLSupport.h 28 void convert_long_to_hex_char(long* quat, unsigned char* hex, int numElement);
  /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/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/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...]
  /art/runtime/arch/arm/
fault_handler_arm.cc 97 VLOG(signals) << "pc: " << std::hex << static_cast<void*>(ptr);
143 VLOG(signals) << "inst2: " << std::hex << inst2 << " checkinst2: " << checkinst2;
155 VLOG(signals) << "inst1: " << std::hex << inst1 << " checkinst1: " << checkinst1;
171 VLOG(signals) << "arm lr: " << std::hex << sc->arm_lr;
172 VLOG(signals) << "arm pc: " << std::hex << sc->arm_pc;
202 VLOG(signals) << "stack overflow handler with sp at " << std::hex << &uc;
203 VLOG(signals) << "sigcontext: " << std::hex << sc;
206 VLOG(signals) << "sp: " << std::hex << sp;
209 VLOG(signals) << "fault_addr: " << std::hex << fault_addr;
210 VLOG(signals) << "checking for stack overflow, sp: " << std::hex << sp <
    [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...]

Completed in 727 milliseconds

12 3 4 5 6 7 8 91011>>