OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:hex
(Results
176 - 200
of
750
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/liblouis_nacl/
liblouis.js
334
* @param {string}
hex
Hexadecimal string.
338
cvox.LibLouis.Translator.decodeHexString_ = function(
hex
) {
339
if (!/^([0-9a-f]{2})*$/i.test(
hex
)) {
342
var array = new Uint8Array(
hex
.length / 2);
344
for (var i = 0; i <
hex
.length; i += 2) {
345
array[idx++] = parseInt(
hex
.substring(i, i + 2), 16);
359
var
hex
= '';
362
hex
+= (b < 0x10 ? '0' : '') + b.toString(16);
364
return
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
407
sms_address_from_hex ( SmsAddress address, const char*
hex
, int hexlen )
409
const char* hexend =
hex
+ hexlen;
415
address->len = num_digits = gsm_hex2_to_byte(
hex
);
416
address->toa = gsm_hex2_to_byte(
hex
+2 );
417
hex
+= 4;
420
if (
hex
+ len*2 > hexend)
424
address->data[nn] = gsm_hex2_to_byte(
hex
+ nn*2 );
430
sms_address_to_hex ( SmsAddress address, char*
hex
, int hexlen )
435
if (
hex
== NULL)
439
gsm_hex_from_byte(
hex
, address->len )
[
all
...]
/external/chromium_org/components/rappor/
byte_vector_utils_unittest.cc
21
std::string HexToString(const char*
hex
) {
23
base::HexStringToBytes(
hex
, &bv);
/external/chromium_org/sandbox/win/src/
app_container.cc
119
DLOG(ERROR) << "AppContainerRegisterSid error:" << std::
hex
<< rv;
144
DLOG(ERROR) << "AppContainerUnregisterSid error:" << std::
hex
<< rv;
/external/chromium_org/third_party/webrtc/base/
macutils.cc
67
ss << "0x" << std::
hex
<< fc;
139
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:])
/external/chromium_org/tools/deep_memory_profiler/subcommands/
expand.py
125
precedence += '%s-' %
hex
(addr[0])[2:]
126
precedence += '%s' %
hex
(addr[1])[2:]
/external/chromium_org/v8/test/cctest/
test-ostreams.cc
56
oss << value << " " <<
hex
<< value;
120
os << 123 <<
hex
<< 123 << endl << 123 << dec << 123 << 123;
/external/chromium_org/v8/test/mjsunit/
number-literal.js
15
test('
hex
-int', '0x20', '32');
/external/fonttools/Lib/fontTools/ttLib/tables/
S_I_N_G_.py
37
self.METAMD5 = "[" +
hex
(byteord(self.METAMD5[0]))
39
self.METAMD5 = self.METAMD5 + ", " +
hex
(byteord(char))
_h_e_a_d.py
61
value =
hex
(value)
/external/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);
/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))
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_loading.py
73
self.assertEqual(
hex
(f_ord_addr),
hex
(f_name_addr))
/art/compiler/dex/quick/
resource_mask.cc
172
<< "(" << std::
hex
<< std::setw(16) << mask.masks_[0]
173
<< ", "<< std::
hex
<< std::setw(16) << mask.masks_[1]
174
<< ") != (" << std::
hex
<< std::setw(16) << res->masks_[0]
175
<< ", "<< std::
hex
<< std::setw(16) << res->masks_[1] << ")";
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/socket/
inet_ntop.cc
82
output << std::
hex
<< host_tuples[i];
/external/libcxx/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/
get_unsigned_int.pass.cpp
71
hex
(ios);
get_unsigned_long.pass.cpp
71
hex
(ios);
get_unsigned_long_long.pass.cpp
71
hex
(ios);
get_unsigned_short.pass.cpp
71
hex
(ios);
/external/libcxxabi/test/
test_exception_storage.cpp
48
std::cout << "{ " << std::
hex
;
member in class:std
Completed in 1106 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>