Home
last modified time | relevance | path

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

/external/capstone/tests/
Dtest_sparc.c81 #define SPARC_CODE "\x80\xa0\x40\x02\x85\xc2\x60\x08\x85\xe8\x20\x01\x81\xe8\x00\x00\x90\x10\x20\x0… in test() macro
89 (unsigned char*)SPARC_CODE, in test()
90 sizeof(SPARC_CODE) - 1, in test()
Dtest_iter.c59 #define SPARC_CODE "\x80\xa0\x40\x02\x85\xc2\x60\x08\x85\xe8\x20\x01\x81\xe8\x00\x00\x90\x10\x20\x0… in test() macro
154 (unsigned char*)SPARC_CODE, in test()
155 sizeof(SPARC_CODE) - 1, in test()
Dtest_detail.c62 #define SPARC_CODE "\x80\xa0\x40\x02\x85\xc2\x60\x08\x85\xe8\x20\x01\x81\xe8\x00\x00\x90\x10\x20\x0… in test() macro
185 (unsigned char*)SPARC_CODE, in test()
186 sizeof(SPARC_CODE) - 1, in test()
Dtest_basic.c54 #define SPARC_CODE "\x80\xa0\x40\x02\x85\xc2\x60\x08\x85\xe8\x20\x01\x81\xe8\x00\x00\x90\x10\x20\x0… in test() macro
194 (unsigned char*)SPARC_CODE, in test()
195 sizeof(SPARC_CODE) - 1, in test()
/external/capstone/bindings/python/
Dtest_sparc.py11 SPARC_CODE = b"\x80\xa0\x40\x02\x85\xc2\x60\x08\x85\xe8\x20\x01\x81\xe8\x00\x00\x90\x10\x20\x01\xd5… variable
15 (CS_ARCH_SPARC, CS_MODE_BIG_ENDIAN, SPARC_CODE, "Sparc"),
Dtest_basic.py29 SPARC_CODE = b"\x80\xa0\x40\x02\x85\xc2\x60\x08\x85\xe8\x20\x01\x81\xe8\x00\x00\x90\x10\x20\x01\xd5… variable
52 (CS_ARCH_SPARC, CS_MODE_BIG_ENDIAN, SPARC_CODE, "Sparc", 0),
Dtest_detail.py23 SPARC_CODE = b"\x80\xa0\x40\x02\x85\xc2\x60\x08\x85\xe8\x20\x01\x81\xe8\x00\x00\x90\x10\x20\x01\xd5… variable
45 (CS_ARCH_SPARC, CS_MODE_BIG_ENDIAN, SPARC_CODE, "Sparc", 0),
/external/capstone/bindings/java/
DTest.java42 …public static final byte[] SPARC_CODE = new byte[] { (byte)0x80, (byte)0xa0, (byte)0x40, (byte)0x0… field in Test
133 SPARC_CODE, in main()
DTestSparc.java22 …static final String SPARC_CODE = "80a0400285c2600885e8200181e8000090102001d5f610162100000a86004002… field in TestSparc
71 …platform(Capstone.CS_ARCH_SPARC, Capstone.CS_MODE_BIG_ENDIAN, hexString2Byte(SPARC_CODE), "Sparc"), in main()