Home
last modified time | relevance | path

Searched refs:to_hex (Results 1 – 10 of 10) sorted by relevance

/third_party/node/test/fixtures/wpt/common/
Dutils.js68 var uuid = [to_hex(rand_int(32), 8),
69 to_hex(rand_int(16), 4),
70 to_hex(0x4000 | rand_int(12), 4),
71 to_hex(0x8000 | rand_int(14), 4),
72 to_hex(rand_int(48), 12)].join("-")
92 function to_hex(x, length) { function
/third_party/skia/src/utils/
DSkParse.cpp33 static int to_hex(int c) in to_hex() function
47 return to_hex(c) >= 0; in is_hex()
120 while ((digit = to_hex(*str)) >= 0) in FindHex()
/third_party/rust/crates/minimal-lexical/etc/correctness/test-parse-unittests/
Dto_toml.py55 def to_hex(self): member in FloatMixin
134 self.assertEqual(float32.to_hex(), '3f800000')
195 self.assertEqual(float64.to_hex(), '3ff0000000000000')
265 conversion_test.add('hex', float64.to_hex())
/third_party/nghttp2/src/
Ddeflatehd.cc71 static void to_hex(char *dest, const uint8_t *src, size_t len) { in to_hex() function
95 to_hex(hex.data(), buf, buflen); in output_to_json()
/third_party/skia/third_party/externals/angle2/src/tests/restricted_traces/
Drestricted_trace_gold_tests.py135 def to_hex(num): function
140 return 'None' if num == None else to_hex(num)
/third_party/python/Modules/
Dbinascii.c1375 to_hex (unsigned char ch, unsigned char *s) in to_hex() function
1527 to_hex(databuf[in], &odata[out]); in binascii_b2a_qp_impl()
1543 to_hex(ch, &odata[out]); in binascii_b2a_qp_impl()
/third_party/rust/crates/nom/src/
Dtraits.rs1343 fn to_hex(&self, chunk_size: usize) -> String; in to_hex() method
1356 fn to_hex(&self, chunk_size: usize) -> String { in to_hex() method
1404 fn to_hex(&self, chunk_size: usize) -> String { in to_hex() method
Derror.rs600 println!("{}: Error({:?}) at:\n{}", context, e, i.to_hex(8)); in dbg_dmp()
/third_party/rust/crates/nom/tests/
Dissues.rs37 println!("{}", input.to_hex(8)); in spaces_or_int()
/third_party/rust/crates/nom/doc/
Dmaking_a_new_parser_from_scratch.md155 println!("bytes:\n{}", &data[0..100].to_hex(8));