/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/ |
long.pass.cpp | 78 hex(os);
|
long_double.pass.cpp | 78 hex(os);
|
long_long.pass.cpp | 78 hex(os);
|
short.pass.cpp | 78 hex(os);
|
unsigned_int.pass.cpp | 78 hex(os);
|
unsigned_long.pass.cpp | 78 hex(os);
|
unsigned_long_long.pass.cpp | 78 hex(os);
|
unsigned_short.pass.cpp | 78 hex(os);
|
/external/bluetooth/bluedroid/btif/src/ |
btif_config_util.cpp | 92 static inline int hex2byte(char hex) 94 if('0' <= hex && hex <= '9') 95 return hex - '0'; 96 if('a' <= hex && hex <= 'z') 97 return hex - 'a' + 0xa; 98 if('A' <= hex && hex <= 'Z') 99 return hex - 'A' + 0xa [all...] |
/external/valgrind/main/coregrind/m_gdbserver/ |
remote-utils.c | 473 /* Convert hex digit A to a number. */ 483 error ("Reply contains invalid hex digit 0x%x\n", a); 487 int unhexify (char *bin, const char *hex, int count) 492 if (hex[0] == 0 || hex[1] == 0) { 493 /* Hex string is short, or of uneven length. 497 *bin++ = fromhex (hex[0]) * 16 + fromhex (hex[1]); 498 hex += 2; 518 /* Convert number NIB to a hex digit. * [all...] |
/external/wpa_supplicant_8/src/utils/ |
common.c | 26 int hex2byte(const char *hex) 29 a = hex2num(*hex++); 32 b = hex2num(*hex++); 122 * hexstr2bin - Convert ASCII hex string into binary data 123 * @hex: ASCII hex string (e.g., "01ab") 125 * @len: Length of the text to convert in bytes (of buf); hex will be double 127 * Returns: 0 on success, -1 on failure (invalid hex string) 129 int hexstr2bin(const char *hex, u8 *buf, size_t len) 133 const char *ipos = hex; [all...] |
/external/chromium_org/media/audio/win/ |
core_audio_util_win.cc | 112 os << "wFormatTag: 0x" << std::hex << format.Format.wFormatTag 120 << ", dwChannelMask: 0x" << std::hex << format.dwChannelMask; 216 LOG(ERROR) << "IMMDeviceCollection::EnumAudioEndpoints: " << std::hex << hr; 255 << std::hex << hr; 294 << std::hex << hr; 443 DVLOG(1) << "IMMDevice::QueryInterface: " << std::hex << hr; 450 DVLOG(1) << "IMMEndpoint::GetDataFlow: " << std::hex << hr; 467 DVLOG_IF(1, FAILED(hr)) << "IMMDevice::Activate: " << std::hex << hr; 630 << std::hex << channel_config 730 DVLOG(2) << "stream_flags: 0x" << std::hex << stream_flags [all...] |
/art/compiler/dex/quick/ |
codegen_util.cc | 134 LOG(INFO) << "-------- entry offset: 0x" << std::hex << dest; 140 LOG(INFO) << "-------- dalvik offset: 0x" << std::hex 144 LOG(INFO) << "-------- exit offset: 0x" << std::hex << dest; 147 LOG(INFO) << reinterpret_cast<uintptr_t>(base_addr) + offset << " (0x" << std::hex 167 LOG(INFO) << "LsafepointPC_0x" << std::hex << lir->offset << "_" << lir->dalvik_offset << ":"; 170 LOG(INFO) << "LexportedPC_0x" << std::hex << lir->offset << "_" << lir->dalvik_offset << ":"; 174 << std::hex << lir->operands[0] << "|" << std::dec << 422 LOG(INFO) << "Switch table for offset 0x" << std::hex << bx_offset; 430 << std::hex << keys[elems] << ", disp: 0x" 431 << std::hex << disp [all...] |
/external/chromium_org/media/mp3/ |
mp3_stream_parser.cc | 188 DVLOG(1) << "Unexpected start code 0x" << std::hex << start_code; 260 DVLOG(2) << "Header data :" << std::hex 273 MEDIA_LOG(log_cb_) << "Invalid header data :" << std::hex 285 << std::hex 294 MEDIA_LOG(log_cb_) << "Invalid bitrate :" << std::hex 305 MEDIA_LOG(log_cb_) << "Invalid sample rate :" << std::hex
|
/external/oprofile/libutil++/ |
bfd_support.cpp | 74 cverb << vbfd << " with crc32 = " << hex << file_crc << endl; 317 << " with crc32 = " << hex << crc32 << endl; 545 cverb << vbfd << "mini_syms: " << dec << nr_mini_syms << hex << endl; 546 cverb << vbfd << "synth_syms: " << dec << nr_synth_syms << hex << endl; 589 << nr_syms << hex << endl; 604 << nr_syms << hex << endl;
|
/external/qemu/telephony/ |
sms.c | 406 sms_address_from_hex ( SmsAddress address, const char* hex, int hexlen ) 408 const char* hexend = hex + hexlen; 414 address->len = num_digits = gsm_hex2_to_byte( hex ); 415 address->toa = gsm_hex2_to_byte( hex+2 ); 416 hex += 4; 419 if (hex + len*2 > hexend) 423 address->data[nn] = gsm_hex2_to_byte( hex + nn*2 ); 429 sms_address_to_hex ( SmsAddress address, char* hex, int hexlen ) 434 if (hex == NULL) 438 gsm_hex_from_byte( hex, address->len ) [all...] |
/external/chromium/third_party/libjingle/source/talk/base/ |
macutils.cc | 82 ss << "0x" << std::hex << fc; 149 ss << std::hex << ver;
|
/external/chromium_org/chromeos/audio/ |
cras_audio_handler.cc | 368 << "0x" << std::hex << node_id; 382 << "0x" << std::hex << node_id; 410 << "0x" << std::hex << active_input_node_id_; 425 << "0x" << std::hex << active_output_node_id_; 602 << " current active input node id = 0x" << std::hex 608 << " current active input node id = 0x" << std::hex 616 << " current active output node id = 0x" << std::hex 622 << " current active output node id = 0x" << std::hex
|
/external/chromium_org/media/mp2t/ |
ts_packet.cc | 32 << std::hex << static_cast<int>(buf[idx]) << std::dec; 57 << std::hex << static_cast<int>(buf[0]) << std::dec;
|
/external/chromium_org/sandbox/win/src/ |
app_container.cc | 118 DLOG(ERROR) << "AppContainerRegisterSid error:" << std::hex << rv; 143 DLOG(ERROR) << "AppContainerUnregisterSid error:" << std::hex << rv;
|
/external/chromium_org/third_party/libjingle/source/talk/base/ |
macutils.cc | 84 ss << "0x" << std::hex << fc; 156 ss << std::hex << ver;
|
/external/chromium_org/tools/crx_id/ |
crx_id.py | 51 """ Convert bytes to pairs of hex digits. E.g., \x00\x11 -> "{0x00, 0x11}" 59 result.append('0x' + hex(dig1)[2:] + hex(dig2)[2:])
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/ |
put_long.pass.cpp | 124 hex(ios); 134 hex(ios); 145 hex(ios); 158 hex(ios); 171 hex(ios); 249 hex(ios); 263 hex(ios); 277 hex(ios);
|
put_unsigned_long.pass.cpp | 124 hex(ios); 134 hex(ios); 145 hex(ios); 158 hex(ios); 171 hex(ios); 249 hex(ios); 263 hex(ios); 277 hex(ios);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/ |
test_loading.py | 73 self.assertEqual(hex(f_ord_addr), hex(f_name_addr))
|