Home
last modified time | relevance | path

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

/external/capstone/tests/
Dtest_basic.c53 #define PPC_CODE "\x80\x20\x00\x00\x80\x3f\x00\x00\x10\x43\x23\x0e\xd0\x44\x00\x80\x4c\x43\x22\x02\… in test() macro
178 (unsigned char*)PPC_CODE, in test()
179 sizeof(PPC_CODE) - 1, in test()
185 (unsigned char*)PPC_CODE, in test()
186 sizeof(PPC_CODE) - 1, in test()
Dtest_ppc.c116 #define PPC_CODE "\x43\x20\x0c\x07\x41\x56\xff\x17\x80\x20\x00\x00\x80\x3f\x00\x00\x10\x43\x23\x0e\… in test() macro
122 (unsigned char*)PPC_CODE, in test()
123 sizeof(PPC_CODE) - 1, in test()
Dtest_iter.c58 #define PPC_CODE "\x80\x20\x00\x00\x80\x3f\x00\x00\x10\x43\x23\x0e\xd0\x44\x00\x80\x4c\x43\x22\x02\… in test() macro
147 (unsigned char*)PPC_CODE, in test()
148 sizeof(PPC_CODE) - 1, in test()
Dtest_detail.c61 #define PPC_CODE "\x80\x20\x00\x00\x80\x3f\x00\x00\x10\x43\x23\x0e\xd0\x44\x00\x80\x4c\x43\x22\x02\… in test() macro
178 (unsigned char*)PPC_CODE, in test()
179 sizeof(PPC_CODE) - 1, in test()
/external/capstone/bindings/python/
Dtest_lite.py20 PPC_CODE = b"\x80\x20\x00\x00\x80\x3f\x00\x00\x10\x43\x23\x0e\xd0\x44\x00\x80\x4c\x43\x22\x02\x2d\x… variable
34 (CS_ARCH_PPC, CS_MODE_BIG_ENDIAN, PPC_CODE, "PPC-64", 0),
35 …(CS_ARCH_PPC, CS_MODE_BIG_ENDIAN, PPC_CODE, "PPC-64, print register with number only", CS_OPT_SYNT…
Dtest_basic.py28 PPC_CODE = b"\x80\x20\x00\x00\x80\x3f\x00\x00\x10\x43\x23\x0e\xd0\x44\x00\x80\x4c\x43\x22\x02\x2d\x… variable
50 (CS_ARCH_PPC, CS_MODE_BIG_ENDIAN, PPC_CODE, "PPC-64", 0),
51 …(CS_ARCH_PPC, CS_MODE_BIG_ENDIAN, PPC_CODE, "PPC-64, print register with number only", CS_OPT_SYNT…
Dtest_ppc.py9 PPC_CODE = b"\x43\x20\x0c\x07\x41\x56\xff\x17\x80\x20\x00\x00\x80\x3f\x00\x00\x10\x43\x23\x0e\xd0\x… variable
12 (CS_ARCH_PPC, CS_MODE_BIG_ENDIAN, PPC_CODE, "PPC-64"),
Dtest_detail.py22 PPC_CODE = b"\x80\x20\x00\x00\x80\x3f\x00\x00\x10\x43\x23\x0e\xd0\x44\x00\x80\x4c\x43\x22\x02\x2d\x… variable
44 (CS_ARCH_PPC, CS_MODE_BIG_ENDIAN, PPC_CODE, "PPC-64", 0),
/external/capstone/bindings/java/
DTest.java40 …public static final byte[] PPC_CODE = new byte[] {(byte)0x80, (byte)0x20, (byte)0x00, (byte)0x00, … field in Test
120 PPC_CODE, in main()
127 PPC_CODE, in main()
DTestPpc.java22 …static final String PPC_CODE = "80200000803f00001043230ed04400804c4322022d0300807c4320147c4320934f… field in TestPpc
71 …new Test.platform(Capstone.CS_ARCH_PPC, Capstone.CS_MODE_BIG_ENDIAN, hexString2Byte(PPC_CODE), "PP… in main()