Home
last modified time | relevance | path

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

/external/capstone/tests/
Dtest_xcore.c78 #define XCORE_CODE "\xfe\x0f\xfe\x17\x13\x17\xc6\xfe\xec\x17\x97\xf8\xec\x4f\x1f\xfd\xec\x37\x07\xf… in test() macro
84 (unsigned char*)XCORE_CODE, in test()
85 sizeof(XCORE_CODE) - 1, in test()
Dtest_iter.c62 #define XCORE_CODE "\xfe\x0f\xfe\x17\x13\x17\xc6\xfe\xec\x17\x97\xf8\xec\x4f\x1f\xfd\xec\x37\x07\xf… in test() macro
175 (unsigned char*)XCORE_CODE, in test()
176 sizeof(XCORE_CODE) - 1, in test()
Dtest_detail.c65 #define XCORE_CODE "\xfe\x0f\xfe\x17\x13\x17\xc6\xfe\xec\x17\x97\xf8\xec\x4f\x1f\xfd\xec\x37\x07\xf… in test() macro
206 (unsigned char*)XCORE_CODE, in test()
207 sizeof(XCORE_CODE) - 1, in test()
Dtest_basic.c57 #define XCORE_CODE "\xfe\x0f\xfe\x17\x13\x17\xc6\xfe\xec\x17\x97\xf8\xec\x4f\x1f\xfd\xec\x37\x07\xf… in test() macro
215 (unsigned char*)XCORE_CODE, in test()
216 sizeof(XCORE_CODE) - 1, in test()
/external/capstone/bindings/python/
Dtest_xcore.py11 XCORE_CODE = b"\xfe\x0f\xfe\x17\x13\x17\xc6\xfe\xec\x17\x97\xf8\xec\x4f\x1f\xfd\xec\x37\x07\xf2\x45… variable
14 (CS_ARCH_XCORE, 0, XCORE_CODE, "XCore"),
Dtest_basic.py32 XCORE_CODE = b"\xfe\x0f\xfe\x17\x13\x17\xc6\xfe\xec\x17\x97\xf8\xec\x4f\x1f\xfd\xec\x37\x07\xf2\x45… variable
55 (CS_ARCH_XCORE, 0, XCORE_CODE, "XCore", 0),
Dtest_detail.py26 XCORE_CODE = b"\xfe\x0f\xfe\x17\x13\x17\xc6\xfe\xec\x17\x97\xf8\xec\x4f\x1f\xfd\xec\x37\x07\xf2\x45… variable
48 (CS_ARCH_XCORE, 0, XCORE_CODE, "XCore", 0),
/external/capstone/bindings/java/
DTest.java45 …public static final byte[] XCORE_CODE = new byte[] { (byte)0xfe, (byte)0x0f, (byte)0xfe, (byte)0x1… field in Test
151 XCORE_CODE, in main()
DTestXcore.java21 …static final String XCORE_CODE = "fe0ffe171317c6feec1797f8ec4f1ffdec3707f2455bf9fa02061b1009fdeca7… field in TestXcore
64 …platform(Capstone.CS_ARCH_XCORE, Capstone.CS_MODE_BIG_ENDIAN, hexString2Byte(XCORE_CODE), "XCore"), in main()