Home
last modified time | relevance | path

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

/external/capstone/tests/
Dtest_iter.c35 #define X86_CODE32 "\x8d\x4c\x32\x08\x01\xd8\x81\xc6\x34\x12\x00\x00" in test() macro
69 sizeof(X86_CODE32) - 1, in test()
75 (unsigned char *)X86_CODE32, in test()
76 sizeof(X86_CODE32) - 1, in test()
84 (unsigned char *)X86_CODE32, in test()
85 sizeof(X86_CODE32) - 1, in test()
Dtest_detail.c34 #define X86_CODE32 "\x8d\x4c\x32\x08\x01\xd8\x81\xc6\x34\x12\x00\x00" in test() macro
72 sizeof(X86_CODE32) - 1, in test()
78 (unsigned char *)X86_CODE32, in test()
79 sizeof(X86_CODE32) - 1, in test()
87 (unsigned char *)X86_CODE32, in test()
88 sizeof(X86_CODE32) - 1, in test()
Dtest_skipdata.c41 #define X86_CODE32 "\x8d\x4c\x32\x08\x01\xd8\x81\xc6\x34\x12\x00\x00\x00\x91\x92" in test() macro
58 (unsigned char*)X86_CODE32, in test()
59 sizeof(X86_CODE32) - 1, in test()
72 (unsigned char*)X86_CODE32, in test()
73 sizeof(X86_CODE32) - 1, in test()
Dtest_basic.c34 #define X86_CODE32 "\x8d\x4c\x32\x08\x01\xd8\x81\xc6\x34\x12\x00\x00" in test() macro
78 (unsigned char*)X86_CODE32, in test()
79 sizeof(X86_CODE32) - 1, in test()
87 (unsigned char*)X86_CODE32, in test()
88 sizeof(X86_CODE32) - 1, in test()
Dtest_x86.c153 #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
177 (unsigned char *)X86_CODE32, in test()
178 sizeof(X86_CODE32) - 1, in test()
186 (unsigned char *)X86_CODE32, in test()
187 sizeof(X86_CODE32) - 1, in test()
/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/python/
Dtest_lite.py11 X86_CODE32 = b"\x8d\x4c\x32\x08\x01\xd8\x81\xc6\x34\x12\x00\x00" variable
24 (CS_ARCH_X86, CS_MODE_32, X86_CODE32, "X86 32bit (ATT syntax)", CS_OPT_SYNTAX_ATT),
25 (CS_ARCH_X86, CS_MODE_32, X86_CODE32, "X86 32 (Intel syntax)", 0),
Dtest_basic.py15 X86_CODE32 = b"\x8d\x4c\x32\x08\x01\xd8\x81\xc6\x34\x12\x00\x00" variable
36 (CS_ARCH_X86, CS_MODE_32, X86_CODE32, "X86 32bit (ATT syntax)", CS_OPT_SYNTAX_ATT),
37 (CS_ARCH_X86, CS_MODE_32, X86_CODE32, "X86 32 (Intel syntax)", 0),
Dtest_detail.py9 X86_CODE32 = b"\x8d\x4c\x32\x08\x01\xd8\x81\xc6\x34\x12\x00\x00" variable
30 (CS_ARCH_X86, CS_MODE_32, X86_CODE32, "X86 32bit (ATT syntax)", CS_OPT_SYNTAX_ATT),
31 (CS_ARCH_X86, CS_MODE_32, X86_CODE32, "X86 32 (Intel syntax)", 0),
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)", 0),
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)", 0),
/external/capstone/bindings/java/
DTestX86.java24 …static final String X86_CODE32 = "8d4c320801d881c6341200000523010000368b849123010000418d8439896700… field in TestX86
141 …H_X86, Capstone.CS_MODE_32, Capstone.CS_OPT_SYNTAX_ATT, hexString2Byte(X86_CODE32), "X86 32 (AT&T … in main()
142 …new Test.platform(Capstone.CS_ARCH_X86, Capstone.CS_MODE_32, hexString2Byte(X86_CODE32), "X86 32 (… in main()