Home
last modified time | relevance | path

Searched refs:ARM_CODE2 (Results 1 – 9 of 9) sorted by relevance

/external/capstone/tests/
Dtest_iter.c40 #define ARM_CODE2 "\x10\xf1\x10\xe7\x11\xf2\x31\xe7\xdc\xa1\x2e\xf3\xe8\x4e\x62\xf3" in test() macro
112 (unsigned char *)ARM_CODE2, in test()
113 sizeof(ARM_CODE2) - 1, in test()
Dtest_detail.c39 #define ARM_CODE2 "\x10\xf1\x10\xe7\x11\xf2\x31\xe7\xdc\xa1\x2e\xf3\xe8\x4e\x62\xf3" in test() macro
115 (unsigned char *)ARM_CODE2, in test()
116 sizeof(ARM_CODE2) - 1, in test()
Dtest_basic.c39 #define ARM_CODE2 "\x10\xf1\x10\xe7\x11\xf2\x31\xe7\xdc\xa1\x2e\xf3\xe8\x4e\x62\xf3" in test() macro
115 (unsigned char*)ARM_CODE2, in test()
116 sizeof(ARM_CODE2) - 1, in test()
Dtest_arm.c193 #define ARM_CODE2 "\xd1\xe8\x00\xf0\xf0\x24\x04\x07\x1f\x3c\xf2\xc0\x00\x00\x4f\xf0\x00\x01\x46\x6c" in test() macro
223 (unsigned char *)ARM_CODE2, in test()
224 sizeof(ARM_CODE2) - 1, in test()
/external/capstone/bindings/python/
Dtest_lite.py14 ARM_CODE2 = b"\x10\xf1\x10\xe7\x11\xf2\x31\xe7\xdc\xa1\x2e\xf3\xe8\x4e\x62\xf3" variable
29 (CS_ARCH_ARM, CS_MODE_ARM, ARM_CODE2, "ARM: Cortex-A15 + NEON", 0),
Dtest_basic.py18 ARM_CODE2 = b"\x10\xf1\x10\xe7\x11\xf2\x31\xe7\xdc\xa1\x2e\xf3\xe8\x4e\x62\xf3" variable
41 (CS_ARCH_ARM, CS_MODE_ARM, ARM_CODE2, "ARM: Cortex-A15 + NEON", 0),
Dtest_detail.py12 ARM_CODE2 = b"\x10\xf1\x10\xe7\x11\xf2\x31\xe7\xdc\xa1\x2e\xf3\xe8\x4e\x62\xf3" variable
34 (CS_ARCH_ARM, CS_MODE_ARM, ARM_CODE2, "ARM: Cortex-A15 + NEON", 0),
Dtest_arm.py12 ARM_CODE2 = b"\xd1\xe8\x00\xf0\xf0\x24\x04\x07\x1f\x3c\xf2\xc0\x00\x00\x4f\xf0\x00\x01\x46\x6c" variable
21 (CS_ARCH_ARM, CS_MODE_THUMB, ARM_CODE2, "Thumb-mixed", None),
/external/capstone/bindings/java/
DTestArm.java23 static final String ARM_CODE2 = "d1e800f0f02404071f3cf2c000004ff00001466c"; field in TestArm
112 …new Test.platform(Capstone.CS_ARCH_ARM, Capstone.CS_MODE_THUMB, hexString2Byte(ARM_CODE2), "Thumb-… in main()