Home
last modified time | relevance | path

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

/external/capstone/tests/
Dtest_basic.c33 #define X86_CODE16 "\x8d\x4c\x32\x08\x01\xd8\x81\xc6\x34\x12\x00\x00" in test() macro
71 (unsigned char*)X86_CODE16, in test()
72 sizeof(X86_CODE16) - 1, in test()
Dtest_x86.c151 #define X86_CODE16 "\x8d\x4c\x32\x08\x01\xd8\x81\xc6\x34\x12\x00\x00\x05\x23\x01\x00\x00\x36\x8b\x8… in test() macro
170 (unsigned char *)X86_CODE16, in test()
171 sizeof(X86_CODE16) - 1, in test()
Dtest_iter.c34 #define X86_CODE16 "\x8d\x4c\x32\x08\x01\xd8\x81\xc6\x34\x12\x00\x00" in test() macro
68 (unsigned char *)X86_CODE16, in test()
Dtest_detail.c33 #define X86_CODE16 "\x8d\x4c\x32\x08\x01\xd8\x81\xc6\x34\x12\x00\x00" in test() macro
71 (unsigned char *)X86_CODE16, in test()
/external/capstone/bindings/python/
Dtest_lite.py10 X86_CODE16 = b"\x8d\x4c\x32\x08\x01\xd8\x81\xc6\x34\x12\x00\x00" variable
23 (CS_ARCH_X86, CS_MODE_16, X86_CODE16, "X86 16bit (Intel syntax)", 0),
Dtest_basic.py14 X86_CODE16 = b"\x8d\x4c\x32\x08\x01\xd8\x81\xc6\x34\x12\x00\x00" variable
35 (CS_ARCH_X86, CS_MODE_16, X86_CODE16, "X86 16bit (Intel syntax)", 0),
Dtest_detail.py8 X86_CODE16 = b"\x8d\x4c\x32\x08\x01\xd8\x81\xc6\x34\x12\x00\x00" variable
29 (CS_ARCH_X86, CS_MODE_16, X86_CODE16, "X86 16bit (Intel syntax)", 0),
Dtest_x86.py11 X86_CODE16 = b"\x8d\x4c\x32\x08\x01\xd8\x81\xc6\x34\x12\x00\x00\x05\x23\x01\x00\x00\x36\x8b\x84\x91… variable
15 (CS_ARCH_X86, CS_MODE_16, X86_CODE16, "X86 16bit (Intel syntax)", 0),
/external/capstone/bindings/vb6/
DForm1.frm156 …Const X86_CODE16 As String = "\x8d\x4c\x32\x08\x01\xd8\x81\xc6\x34\x12\x00\x00\x05\x23\x01\x00\x00…
165 code = toBytes(X86_CODE16)
/external/capstone/bindings/java/
DTestX86.java23 …static final String X86_CODE16 = "8d4c320801d881c6341200000523010000368b849123010000418d8439896700… field in TestX86
140 …new Test.platform(Capstone.CS_ARCH_X86, Capstone.CS_MODE_16, hexString2Byte(X86_CODE16), "X86 16bi… in main()