Home
last modified time | relevance | path

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

/external/capstone/tests/
Dtest_systemz.c83 #define SYSZ_CODE "\xed\x00\x00\x00\x00\x1a\x5a\x0f\x1f\xff\xc2\x09\x80\x00\x00\x00\x07\xf7\xeb\x2a… in test() macro
89 (unsigned char*)SYSZ_CODE, in test()
90 sizeof(SYSZ_CODE) - 1, in test()
Dtest_iter.c61 #define SYSZ_CODE "\xed\x00\x00\x00\x00\x1a\x5a\x0f\x1f\xff\xc2\x09\x80\x00\x00\x00\x07\xf7\xeb\x2a… in test() macro
168 (unsigned char*)SYSZ_CODE, in test()
169 sizeof(SYSZ_CODE) - 1, in test()
Dtest_basic.c56 #define SYSZ_CODE "\xed\x00\x00\x00\x00\x1a\x5a\x0f\x1f\xff\xc2\x09\x80\x00\x00\x00\x07\xf7\xeb\x2a… in test() macro
208 (unsigned char*)SYSZ_CODE, in test()
209 sizeof(SYSZ_CODE) - 1, in test()
Dtest_detail.c64 #define SYSZ_CODE "\xed\x00\x00\x00\x00\x1a\x5a\x0f\x1f\xff\xc2\x09\x80\x00\x00\x00\x07\xf7\xeb\x2a… in test() macro
199 (unsigned char*)SYSZ_CODE, in test()
200 sizeof(SYSZ_CODE) - 1, in test()
/external/capstone/bindings/python/
Dtest_systemz.py11 SYSZ_CODE = b"\xed\x00\x00\x00\x00\x1a\x5a\x0f\x1f\xff\xc2\x09\x80\x00\x00\x00\x07\xf7\xeb\x2a\xff\… variable
14 (CS_ARCH_SYSZ, 0, SYSZ_CODE, "SystemZ"),
Dtest_basic.py31 SYSZ_CODE = b"\xed\x00\x00\x00\x00\x1a\x5a\x0f\x1f\xff\xc2\x09\x80\x00\x00\x00\x07\xf7\xeb\x2a\xff\… variable
54 (CS_ARCH_SYSZ, 0, SYSZ_CODE, "SystemZ", 0),
Dtest_detail.py25 SYSZ_CODE = b"\xed\x00\x00\x00\x00\x1a\x5a\x0f\x1f\xff\xc2\x09\x80\x00\x00\x00\x07\xf7\xeb\x2a\xff\… variable
47 (CS_ARCH_SYSZ, 0, SYSZ_CODE, "SystemZ", 0),
/external/capstone/bindings/java/
DTest.java43 …public static final byte[] SYSZ_CODE = new byte[] { (byte)0xed, (byte)0x00, (byte)0x00, (byte)0x00… field in Test
145 SYSZ_CODE, in main()
DTestSystemz.java22 …static final String SYSZ_CODE = "ed000000001a5a0f1fffc2098000000007f7eb2affff7f57e301ffff7f57eb00f… field in TestSystemz
71 new Test.platform(Capstone.CS_ARCH_SYSZ, 0, hexString2Byte(SYSZ_CODE), "SystemZ"), in main()