Home
last modified time | relevance | path

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

/external/capstone/tests/
Dtest_iter.c55 #define ARM64_CODE "\x09\x00\x38\xd5\xbf\x40\x00\xd5\x0c\x05\x13\xd5\x20\x50\x02\x0e\x20\xe4\x3d\x0… in test() macro
140 (unsigned char *)ARM64_CODE, in test()
141 sizeof(ARM64_CODE) - 1, in test()
Dtest_arm64.c183 #define ARM64_CODE "\x09\x00\x38\xd5\xbf\x40\x00\xd5\x0c\x05\x13\xd5\x20\x50\x02\x0e\x20\xe4\x3d\x0… in test() macro
189 (unsigned char *)ARM64_CODE, in test()
190 sizeof(ARM64_CODE) - 1, in test()
Dtest_detail.c58 #define ARM64_CODE "\x09\x00\x38\xd5\xbf\x40\x00\xd5\x0c\x05\x13\xd5\x20\x50\x02\x0e\x20\xe4\x3d\x0… in test() macro
171 (unsigned char *)ARM64_CODE, in test()
172 sizeof(ARM64_CODE) - 1, in test()
Dtest_basic.c52 #define ARM64_CODE "\x21\x7c\x02\x9b\x21\x7c\x00\x53\x00\x40\x21\x4b\xe1\x0b\x40\xb9" in test() macro
171 (unsigned char*)ARM64_CODE, in test()
172 sizeof(ARM64_CODE) - 1, in test()
/external/capstone/bindings/python/
Dtest_lite.py19 ARM64_CODE = b"\x21\x7c\x02\x9b\x21\x7c\x00\x53\x00\x40\x21\x4b\xe1\x0b\x40\xb9" variable
33 (CS_ARCH_ARM64, CS_MODE_ARM, ARM64_CODE, "ARM-64", 0),
Dtest_basic.py27 ARM64_CODE = b"\x21\x7c\x02\x9b\x21\x7c\x00\x53\x00\x40\x21\x4b\xe1\x0b\x40\xb9" variable
49 (CS_ARCH_ARM64, CS_MODE_ARM, ARM64_CODE, "ARM-64", 0),
Dtest_detail.py21 ARM64_CODE = b"\x09\x00\x38\xd5\xbf\x40\x00\xd5\x0c\x05\x13\xd5\x20\x50\x02\x0e\x20\xe4\x3d\x0f\x00… variable
39 (CS_ARCH_ARM64, CS_MODE_ARM, ARM64_CODE, "ARM-64", 0),
Dtest_arm64.py11 ARM64_CODE = b"\x09\x00\x38\xd5\xbf\x40\x00\xd5\x0c\x05\x13\xd5\x20\x50\x02\x0e\x20\xe4\x3d\x0f\x00… variable
14 (CS_ARCH_ARM64, CS_MODE_ARM, ARM64_CODE, "ARM-64"),
/external/capstone/bindings/vb6/
DForm1.frm159 …Const ARM64_CODE As String = "\x09\x00\x38\xd5\xbf\x40\x00\xd5\x0c\x05\x13\xd5\x20\x50\x02\x0e\x20…
183 code = toBytes(ARM64_CODE)
/external/capstone/bindings/java/
DTestArm64.java22 …static final String ARM64_CODE = "090038d5bf4000d50c0513d52050020e20e43d0f0018a05fa200ae9e9f3703d5… field in TestArm64
100 …new Test.platform(Capstone.CS_ARCH_ARM64, Capstone.CS_MODE_ARM, hexString2Byte(ARM64_CODE), "ARM-6… in main()