Searched refs:to_hex (Results 1 – 10 of 10) sorted by relevance
/third_party/node/test/fixtures/wpt/common/ |
D | utils.js | 68 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/ |
D | SkParse.cpp | 33 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/ |
D | to_toml.py | 55 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/ |
D | deflatehd.cc | 71 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/ |
D | restricted_trace_gold_tests.py | 135 def to_hex(num): function 140 return 'None' if num == None else to_hex(num)
|
/third_party/python/Modules/ |
D | binascii.c | 1375 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/ |
D | traits.rs | 1343 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
|
D | error.rs | 600 println!("{}: Error({:?}) at:\n{}", context, e, i.to_hex(8)); in dbg_dmp()
|
/third_party/rust/crates/nom/tests/ |
D | issues.rs | 37 println!("{}", input.to_hex(8)); in spaces_or_int()
|
/third_party/rust/crates/nom/doc/ |
D | making_a_new_parser_from_scratch.md | 155 println!("bytes:\n{}", &data[0..100].to_hex(8));
|