Home
last modified time | relevance | path

Searched refs:X86_CODE32 (Results 1 – 14 of 14) sorted by relevance

/external/capstone/tests/
Dtest_customized_mnem.c13 #define X86_CODE32 "\x75\x01" macro
32 count = cs_disasm(handle, (const uint8_t *)X86_CODE32, sizeof(X86_CODE32) - 1, 0x1000, 1, &insn); in print_insn()
34 print_string_hex((unsigned char *)X86_CODE32, sizeof(X86_CODE32) - 1); in print_insn()
Dtest_basic.c35 #define X86_CODE32 "\xba\xcd\xab\x00\x00\x8d\x4c\x32\x08\x01\xd8\x81\xc6\x34\x12\x00\x00" in test() macro
114 (unsigned char*)X86_CODE32, in test()
115 sizeof(X86_CODE32) - 1, in test()
123 (unsigned char*)X86_CODE32, in test()
124 sizeof(X86_CODE32) - 1, in test()
130 (unsigned char*)X86_CODE32, in test()
131 sizeof(X86_CODE32) - 1, in test()
Dtest_iter.c36 #define X86_CODE32 "\x8d\x4c\x32\x08\x01\xd8\x81\xc6\x34\x12\x00\x00" in test() macro
93 sizeof(X86_CODE32) - 1, in test()
99 (unsigned char *)X86_CODE32, in test()
100 sizeof(X86_CODE32) - 1, in test()
108 (unsigned char *)X86_CODE32, in test()
109 sizeof(X86_CODE32) - 1, in test()
Dtest_detail.c35 #define X86_CODE32 "\x8d\x4c\x32\x08\x01\xd8\x81\xc6\x34\x12\x00\x00" in test() macro
100 sizeof(X86_CODE32) - 1, in test()
106 (unsigned char *)X86_CODE32, in test()
107 sizeof(X86_CODE32) - 1, in test()
115 (unsigned char *)X86_CODE32, in test()
116 sizeof(X86_CODE32) - 1, in test()
Dtest_skipdata.c44 #define X86_CODE32 "\x8d\x4c\x32\x08\x01\xd8\x81\xc6\x34\x12\x00\x00\x00\x91\x92" in test() macro
67 (unsigned char*)X86_CODE32, in test()
68 sizeof(X86_CODE32) - 1, in test()
74 (unsigned char*)X86_CODE32, in test()
75 sizeof(X86_CODE32) - 1, in test()
Dtest_x86.c386 #define X86_CODE32 "\x8d\x4c\x32\x08\x01\xd8\x81\xc6\x34\x12\x00\x00\x05\x23\x01\x00\x00\x36\x8b\x8… in test() macro
412 (unsigned char *)X86_CODE32, in test()
413 sizeof(X86_CODE32) - 1, in test()
421 (unsigned char *)X86_CODE32, in test()
422 sizeof(X86_CODE32) - 1, in test()
/external/capstone/bindings/python/
Dtest_customized_mnem.py11 X86_CODE32 = b"\x75\x01" variable
26 print_insn(md, X86_CODE32)
30 print_insn(md, X86_CODE32)
34 print_insn(md, X86_CODE32)
Dtest_lite.py10 X86_CODE32 = b"\xba\xcd\xab\x00\x00\x8d\x4c\x32\x08\x01\xd8\x81\xc6\x34\x12\x00\x00" variable
34 (CS_ARCH_X86, CS_MODE_32, X86_CODE32, "X86 32bit (ATT syntax)", CS_OPT_SYNTAX_ATT),
35 (CS_ARCH_X86, CS_MODE_32, X86_CODE32, "X86 32 (Intel syntax)", None),
36 (CS_ARCH_X86, CS_MODE_32, X86_CODE32, "X86 32 (MASM syntax)", CS_OPT_SYNTAX_MASM),
Dtest_basic.py15 X86_CODE32 = b"\xba\xcd\xab\x00\x00\x8d\x4c\x32\x08\x01\xd8\x81\xc6\x34\x12\x00\x00" variable
40 (CS_ARCH_X86, CS_MODE_32, X86_CODE32, "X86 32bit (ATT syntax)", CS_OPT_SYNTAX_ATT),
41 (CS_ARCH_X86, CS_MODE_32, X86_CODE32, "X86 32 (Intel syntax)", None),
42 (CS_ARCH_X86, CS_MODE_32, X86_CODE32, "X86 32 (MASM syntax)", CS_OPT_SYNTAX_MASM),
Dtest_detail.py9 X86_CODE32 = b"\x8d\x4c\x32\x08\x01\xd8\x81\xc6\x34\x12\x00\x00" variable
33 (CS_ARCH_X86, CS_MODE_32, X86_CODE32, "X86 32bit (ATT syntax)", CS_OPT_SYNTAX_ATT),
34 (CS_ARCH_X86, CS_MODE_32, X86_CODE32, "X86 32 (Intel syntax)", None),
Dtest_skipdata.py11 X86_CODE32 = b"\x8d\x4c\x32\x08\x01\xd8\x81\xc6\x34\x12\x00\x00\x00\x91\x92" variable
15 (CS_ARCH_X86, CS_MODE_32, X86_CODE32, "X86 32 (Intel syntax)", None),
Dtest_x86.py12 X86_CODE32 = b"\x8d\x4c\x32\x08\x01\xd8\x81\xc6\x34\x12\x00\x00\x05\x23\x01\x00\x00\x36\x8b\x84\x91… variable
16 (CS_ARCH_X86, CS_MODE_32, X86_CODE32, "X86 32 (AT&T syntax)", CS_OPT_SYNTAX_ATT),
17 (CS_ARCH_X86, CS_MODE_32, X86_CODE32, "X86 32 (Intel syntax)", None),
/external/capstone/suite/benchmark/
Dtest_iter_benchmark.c13 #define X86_CODE32 "\x53\x8B\xDC\x83\xEC\x08\x83\xE4\xF0\x83\xC4\x04\x55\x8B\x6B\x04\x89\x6C\x24\x0… in test() macro
81 code = (const uint8_t *)X86_CODE32; in test()
83 size = sizeof(X86_CODE32) - 1; in test()
/external/capstone/bindings/java/
DTestX86.java27 …static final String X86_CODE32 = "8d4c320801d881c6341200000523010000368b849123010000418d8439896700… field in TestX86
196 …H_X86, Capstone.CS_MODE_32, Capstone.CS_OPT_SYNTAX_ATT, hexString2Byte(X86_CODE32), "X86 32 (AT&T … in main()
197 …new TestBasic.platform(Capstone.CS_ARCH_X86, Capstone.CS_MODE_32, hexString2Byte(X86_CODE32), "X86… in main()