/external/capstone/tests/ |
D | test_iter.c | 35 #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()
|
D | test_detail.c | 34 #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()
|
D | test_skipdata.c | 41 #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()
|
D | test_basic.c | 34 #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()
|
D | test_x86.c | 153 #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/ |
D | test_iter_benchmark.c | 13 #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/ |
D | test_lite.py | 11 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),
|
D | test_basic.py | 15 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),
|
D | test_detail.py | 9 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),
|
D | test_x86.py | 12 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),
|
D | test_skipdata.py | 11 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/ |
D | TestX86.java | 24 …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()
|