/external/rust/crates/nom/src/ |
D | util.rs | 11 fn to_hex(&self, chunk_size: usize) -> String; in to_hex() method 24 fn to_hex(&self, chunk_size: usize) -> String { in to_hex() method 72 fn to_hex(&self, chunk_size: usize) -> String { in to_hex() method 166 println!("{}: Error({:?}) at:\n{}", context, e, i.to_hex(8)); in dbg_dmp() 202 …tln!("Error({:?}) at l.{} by ' {} '\n{}", e, l, nom_stringify!($submac!($($args)*)), $i.to_hex(8));
|
/external/rust/crates/ring/src/rsa/ |
D | convert_nist_rsa_test_vectors.py | 55 def to_hex(bytes): function 61 return to_hex(from_hex(hex)) 104 hex_sig = to_hex(sig) 120 print('Key = %s' % to_hex(der)) 140 print('Key = %s' % to_hex(der))
|
/external/capstone/bindings/python/ |
D | test_lite.py | 6 from xprint import to_hex 67 print(to_hex(code)) 78 print("Code: %s" % to_hex(code))
|
D | test_customized_mnem.py | 8 from xprint import to_hex 15 print("%s\t" % to_hex(code, False), end="")
|
D | test_basic.py | 9 from xprint import to_hex 73 print(to_hex(code)) 84 print("Code: %s" % to_hex(code))
|
D | test_skipdata.py | 8 from xprint import to_hex 31 print("Code: %s" % to_hex(code))
|
D | test_mos65xx.py | 7 from xprint import to_hex, to_x 55 print("Code: %s" % to_hex(MOS65XX_CODE))
|
D | test_xcore.py | 8 from xprint import to_x, to_hex 56 print("Code: %s" % to_hex(code))
|
D | test_mips.py | 7 from xprint import to_hex, to_x 55 print("Code: %s" % to_hex(code))
|
D | test_sparc.py | 8 from xprint import to_hex, to_x_32 60 print("Code: %s" % to_hex(code))
|
D | test_systemz.py | 8 from xprint import to_x, to_hex 62 print("Code: %s" % to_hex(code))
|
D | test_ppc.py | 7 from xprint import to_hex, to_x_32 68 print("Code: %s" % to_hex(code))
|
D | test_tms320c64x.py | 8 from xprint import to_x, to_hex, to_x_32 78 print("Code: %s" % to_hex(code))
|
D | test_m68k.py | 7 from xprint import to_hex, to_x 98 print("Code: %s " % to_hex(code))
|
D | test_arm64.py | 8 from xprint import to_hex, to_x 114 print("Code: %s" % to_hex(code))
|
D | test_arm.py | 8 from xprint import to_hex, to_x_32 135 print("Code: %s" % to_hex(code))
|
D | xprint.py | 9 def to_hex(s, prefix_0x = True): function
|
D | test_x86.py | 7 from xprint import to_hex, to_x, to_x_32 273 print("Code: %s" % to_hex(code))
|
/external/capstone/suite/ |
D | ppcbranch.py | 35 def to_hex(s): function 45 print("Code: %s" %(to_hex(code))),
|
D | x86odd.py | 85 def to_hex(s): function 95 print("Code: %s" %(to_hex(code))),
|
D | fuzz.py | 50 def to_hex(s): function
|
D | benchmark.py | 44 def to_hex(s): function
|
/external/skqp/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()
|
/external/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()
|
/external/angle/src/tests/restricted_traces/ |
D | restricted_trace_gold_tests.py | 142 def to_hex(num): function 147 return 'None' if num == None else to_hex(num)
|