Home
last modified time | relevance | path

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

/external/capstone/tests/
Dtest_iter.c39 #define ARM_CODE "\xED\xFF\xFF\xEB\x04\xe0\x2d\xe5\x00\x00\x00\x00\xe0\x83\x22\xe5\xf1\x02\x03\x0e\… in test() macro
98 (unsigned char *)ARM_CODE, in test()
99 sizeof(ARM_CODE) - 1, in test()
Dtest_basic.c38 #define ARM_CODE "\xED\xFF\xFF\xEB\x04\xe0\x2d\xe5\x00\x00\x00\x00\xe0\x83\x22\xe5\xf1\x02\x03\x0e\… in test() macro
101 (unsigned char*)ARM_CODE, in test()
102 sizeof(ARM_CODE) - 1, in test()
Dtest_detail.c38 #define ARM_CODE "\xED\xFF\xFF\xEB\x04\xe0\x2d\xe5\x00\x00\x00\x00\xe0\x83\x22\xe5\xf1\x02\x03\x0e\… in test() macro
101 (unsigned char *)ARM_CODE, in test()
102 sizeof(ARM_CODE) - 1, in test()
Dtest_arm.c190 #define ARM_CODE "\xED\xFF\xFF\xEB\x04\xe0\x2d\xe5\x00\x00\x00\x00\xe0\x83\x22\xe5\xf1\x02\x03\x0e\… in test() macro
209 (unsigned char *)ARM_CODE, in test()
210 sizeof(ARM_CODE) - 1, in test()
/external/capstone/bindings/python/
Dtest_lite.py13 ARM_CODE = b"\xED\xFF\xFF\xEB\x04\xe0\x2d\xe5\x00\x00\x00\x00\xe0\x83\x22\xe5\xf1\x02\x03\x0e\x00\x… variable
27 (CS_ARCH_ARM, CS_MODE_ARM, ARM_CODE, "ARM", 0),
Dtest_basic.py17 ARM_CODE = b"\xED\xFF\xFF\xEB\x04\xe0\x2d\xe5\x00\x00\x00\x00\xe0\x83\x22\xe5\xf1\x02\x03\x0e\x00\x… variable
39 (CS_ARCH_ARM, CS_MODE_ARM, ARM_CODE, "ARM", 0),
Dtest_detail.py11 ARM_CODE = b"\xED\xFF\xFF\xEB\x04\xe0\x2d\xe5\x00\x00\x00\x00\xe0\x83\x22\xe5\xf1\x02\x03\x0e\x00\x… variable
33 (CS_ARCH_ARM, CS_MODE_ARM, ARM_CODE, "ARM", 0),
Dtest_arm.py11 ARM_CODE = b"\xED\xFF\xFF\xEB\x04\xe0\x2d\xe5\x00\x00\x00\x00\xe0\x83\x22\xe5\xf1\x02\x03\x0e\x00\x… variable
19 (CS_ARCH_ARM, CS_MODE_ARM, ARM_CODE, "ARM", None),
/external/capstone/bindings/vb6/
DForm1.frm158 …Const ARM_CODE As String = "\xED\xFF\xFF\xEB\x04\xe0\x2d\xe5\x00\x00\x00\x00\xe0\x83\x22\xe5\xf1\x…
178 code = toBytes(ARM_CODE)
/external/capstone/bindings/java/
DTestArm.java22 …static final String ARM_CODE = "EDFFFFEB04e02de500000000e08322e5f102030e0000a0e30230c1e7000053e300… field in TestArm
110 … new Test.platform(Capstone.CS_ARCH_ARM, Capstone.CS_MODE_ARM, hexString2Byte(ARM_CODE), "ARM"), in main()