Home
last modified time | relevance | path

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

/external/capstone/tests/
Dtest_sparc.c83 #define SPARCV9_CODE "\x81\xa8\x0a\x24\x89\xa0\x10\x20\x89\xa0\x1a\x60\x89\xa0\x00\xe0" in test() macro
96 (unsigned char*)SPARCV9_CODE, in test()
97 sizeof(SPARCV9_CODE) - 1, in test()
Dtest_iter.c60 #define SPARCV9_CODE "\x81\xa8\x0a\x24\x89\xa0\x10\x20\x89\xa0\x1a\x60\x89\xa0\x00\xe0" in test() macro
161 (unsigned char*)SPARCV9_CODE, in test()
162 sizeof(SPARCV9_CODE) - 1, in test()
Dtest_detail.c63 #define SPARCV9_CODE "\x81\xa8\x0a\x24\x89\xa0\x10\x20\x89\xa0\x1a\x60\x89\xa0\x00\xe0" in test() macro
192 (unsigned char*)SPARCV9_CODE, in test()
193 sizeof(SPARCV9_CODE) - 1, in test()
Dtest_basic.c55 #define SPARCV9_CODE "\x81\xa8\x0a\x24\x89\xa0\x10\x20\x89\xa0\x1a\x60\x89\xa0\x00\xe0" in test() macro
201 (unsigned char*)SPARCV9_CODE, in test()
202 sizeof(SPARCV9_CODE) - 1, in test()
/external/capstone/bindings/python/
Dtest_sparc.py12 SPARCV9_CODE = b"\x81\xa8\x0a\x24\x89\xa0\x10\x20\x89\xa0\x1a\x60\x89\xa0\x00\xe0" variable
16 (CS_ARCH_SPARC, CS_MODE_BIG_ENDIAN+CS_MODE_V9, SPARCV9_CODE, "SparcV9"),
Dtest_basic.py30 SPARCV9_CODE = b"\x81\xa8\x0a\x24\x89\xa0\x10\x20\x89\xa0\x1a\x60\x89\xa0\x00\xe0" variable
53 (CS_ARCH_SPARC, CS_MODE_BIG_ENDIAN + CS_MODE_V9, SPARCV9_CODE, "SparcV9", 0),
Dtest_detail.py24 SPARCV9_CODE = b"\x81\xa8\x0a\x24\x89\xa0\x10\x20\x89\xa0\x1a\x60\x89\xa0\x00\xe0" variable
46 (CS_ARCH_SPARC, CS_MODE_BIG_ENDIAN + CS_MODE_V9, SPARCV9_CODE, "SparcV9", 0),
/external/capstone/bindings/java/
DTest.java44 …public static final byte[] SPARCV9_CODE = new byte[] { (byte)0x81, (byte)0xa8, (byte)0x0a, (byte)0… field in Test
139 SPARCV9_CODE, in main()
DTestSparc.java23 static final String SPARCV9_CODE = "81a80a2489a0102089a01a6089a000e0"; field in TestSparc
72 …SPARC, Capstone.CS_MODE_BIG_ENDIAN + Capstone.CS_MODE_V9, hexString2Byte(SPARCV9_CODE), "SparcV9"), in main()