Home
last modified time | relevance | path

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

/external/capstone/tests/
Dtest_iter.c37 #define X86_CODE64 "\x55\x48\x8b\x05\xb8\x13\x00\x00" in test() macro
91 (unsigned char *)X86_CODE64, in test()
92 sizeof(X86_CODE64) - 1, in test()
Dtest_basic.c36 #define X86_CODE64 "\x55\x48\x8b\x05\xb8\x13\x00\x00" in test() macro
94 (unsigned char*)X86_CODE64, in test()
95 sizeof(X86_CODE64) - 1, in test()
Dtest_detail.c36 #define X86_CODE64 "\x55\x48\x8b\x05\xb8\x13\x00\x00" in test() macro
94 (unsigned char *)X86_CODE64, in test()
95 sizeof(X86_CODE64) - 1, in test()
Dtest_x86.c148 #define X86_CODE64 "\x55\x48\x8b\x05\xb8\x13\x00\x00" in test() macro
193 (unsigned char *)X86_CODE64, in test()
194 sizeof(X86_CODE64) - 1, in test()
/external/capstone/bindings/python/
Dtest_lite.py12 X86_CODE64 = b"\x55\x48\x8b\x05\xb8\x13\x00\x00" variable
26 (CS_ARCH_X86, CS_MODE_64, X86_CODE64, "X86 64 (Intel syntax)", 0),
Dtest_basic.py16 X86_CODE64 = b"\x55\x48\x8b\x05\xb8\x13\x00\x00" variable
38 (CS_ARCH_X86, CS_MODE_64, X86_CODE64, "X86 64 (Intel syntax)", 0),
Dtest_detail.py10 X86_CODE64 = b"\x55\x48\x8b\x05\xb8\x13\x00\x00" variable
32 (CS_ARCH_X86, CS_MODE_64, X86_CODE64, "X86 64 (Intel syntax)", 0),
Dtest_x86.py10 X86_CODE64 = b"\x55\x48\x8b\x05\xb8\x13\x00\x00" variable
18 (CS_ARCH_X86, CS_MODE_64, X86_CODE64, "X86 64 (Intel syntax)", 0),
/external/capstone/bindings/vb6/
DForm1.frm157 Const X86_CODE64 As String = "\x55\x48\x8b\x05\xb8\x13\x00\x00"
173 code = toBytes(X86_CODE64)
/external/capstone/bindings/java/
DTestX86.java22 static final String X86_CODE64 = "55488b05b8130000"; field in TestX86
143 …new Test.platform(Capstone.CS_ARCH_X86, Capstone.CS_MODE_64, hexString2Byte(X86_CODE64), "X86 64 (… in main()