Home
last modified time | relevance | path

Searched refs:X86_CODE32 (Results 1 – 25 of 166) sorted by relevance

1234567

/dports/emulators/py-unicorn/unicorn-1.0.2/tests/regress/
H A D00opcode_uc_crash.c7 #define X86_CODE32 "\x00" // add byte ptr ds:[eax],al macro
35 err = uc_mem_write(uc, ADDRESS, X86_CODE32, sizeof(X86_CODE32) - 1); in VM_exec()
38 …o write emulation code to memory, quit!: %s(len %zu)\n", uc_strerror(err), sizeof(X86_CODE32) - 1); in VM_exec()
46 err = uc_emu_start(uc, ADDRESS, ADDRESS + (sizeof(X86_CODE32) - 1), 0, 0); in VM_exec()
H A Dhook_extrainvoke.c6 #define X86_CODE32 "\xf3\xab" // rep stosd dword ptr es:[edi], eax -> Fill (E)CX doublewords at ES:… macro
46 err = uc_mem_write(uc, ADDRESS, X86_CODE32, sizeof(X86_CODE32) - 1); in VM_exec()
49 …on code to memory, quit!: %s(len %lu)\n", uc_strerror(err), (unsigned long)sizeof(X86_CODE32) - 1); in VM_exec()
63 err = uc_emu_start(uc, ADDRESS, ADDRESS + (sizeof(X86_CODE32) - 1), 0, 0); in VM_exec()
H A Dsysenter_hook_x86.c4 #define X86_CODE32 "\x0F\x34" // SYSENTER macro
33 if (uc_mem_write(uc, ADDRESS, X86_CODE32, sizeof(X86_CODE32) - 1)) { in main()
45 err=uc_emu_start(uc, ADDRESS, ADDRESS + sizeof(X86_CODE32) - 1, 0, 0); in main()
H A Deflags_noset.c7 #define X86_CODE32 "\x9C\x68\xFF\xFE\xFF\xFF\x9D\x9C\x58\x9D" // pushf; push ffffffeff; popf; pushf… macro
85 err = uc_mem_write(uc, ADDRESS, X86_CODE32, sizeof(X86_CODE32) - 1); in VM_exec()
88 …on code to memory, quit!: %s(len %lu)\n", uc_strerror(err), (unsigned long)sizeof(X86_CODE32) - 1); in VM_exec()
98 err = uc_emu_start(uc, ADDRESS, ADDRESS + (sizeof(X86_CODE32) - 1), 0, 0); in VM_exec()
/dports/emulators/unicorn/unicorn-1.0.2/tests/regress/
H A D00opcode_uc_crash.c7 #define X86_CODE32 "\x00" // add byte ptr ds:[eax],al macro
35 err = uc_mem_write(uc, ADDRESS, X86_CODE32, sizeof(X86_CODE32) - 1); in VM_exec()
38 …o write emulation code to memory, quit!: %s(len %zu)\n", uc_strerror(err), sizeof(X86_CODE32) - 1); in VM_exec()
46 err = uc_emu_start(uc, ADDRESS, ADDRESS + (sizeof(X86_CODE32) - 1), 0, 0); in VM_exec()
H A Dhook_extrainvoke.c6 #define X86_CODE32 "\xf3\xab" // rep stosd dword ptr es:[edi], eax -> Fill (E)CX doublewords at ES:… macro
46 err = uc_mem_write(uc, ADDRESS, X86_CODE32, sizeof(X86_CODE32) - 1); in VM_exec()
49 …on code to memory, quit!: %s(len %lu)\n", uc_strerror(err), (unsigned long)sizeof(X86_CODE32) - 1); in VM_exec()
63 err = uc_emu_start(uc, ADDRESS, ADDRESS + (sizeof(X86_CODE32) - 1), 0, 0); in VM_exec()
H A Dsysenter_hook_x86.c4 #define X86_CODE32 "\x0F\x34" // SYSENTER macro
33 if (uc_mem_write(uc, ADDRESS, X86_CODE32, sizeof(X86_CODE32) - 1)) { in main()
45 err=uc_emu_start(uc, ADDRESS, ADDRESS + sizeof(X86_CODE32) - 1, 0, 0); in main()
H A Deflags_noset.c7 #define X86_CODE32 "\x9C\x68\xFF\xFE\xFF\xFF\x9D\x9C\x58\x9D" // pushf; push ffffffeff; popf; pushf… macro
85 err = uc_mem_write(uc, ADDRESS, X86_CODE32, sizeof(X86_CODE32) - 1); in VM_exec()
88 …on code to memory, quit!: %s(len %lu)\n", uc_strerror(err), (unsigned long)sizeof(X86_CODE32) - 1); in VM_exec()
98 err = uc_emu_start(uc, ADDRESS, ADDRESS + (sizeof(X86_CODE32) - 1), 0, 0); in VM_exec()
/dports/devel/capstone4/capstone-4.0.2/tests/
H A Dtest_customized_mnem.c13 #define X86_CODE32 "\x75\x01" macro
32 count = cs_disasm(handle, (const uint8_t *)X86_CODE32, sizeof(X86_CODE32) - 1, 0x1000, 1, &insn); in print_insn()
34 print_string_hex((unsigned char *)X86_CODE32, sizeof(X86_CODE32) - 1); in print_insn()
H A Dtest_basic.c35 #define X86_CODE32 "\xba\xcd\xab\x00\x00\x8d\x4c\x32\x08\x01\xd8\x81\xc6\x34\x12\x00\x00" in test() macro
103 (unsigned char*)X86_CODE32, in test()
104 sizeof(X86_CODE32) - 1, in test()
112 (unsigned char*)X86_CODE32, in test()
113 sizeof(X86_CODE32) - 1, in test()
119 (unsigned char*)X86_CODE32, in test()
120 sizeof(X86_CODE32) - 1, in test()
/dports/emulators/qemu/qemu-6.2.0/capstone/tests/
H A Dtest_customized_mnem.c13 #define X86_CODE32 "\x75\x01"
32 count = cs_disasm(handle, (const uint8_t *)X86_CODE32, sizeof(X86_CODE32) - 1, 0x1000, 1, &insn);
34 print_string_hex((unsigned char *)X86_CODE32, sizeof(X86_CODE32) - 1); in AddressTableEntry()
H A Dtest_basic.c35 #define X86_CODE32 "\xba\xcd\xab\x00\x00\x8d\x4c\x32\x08\x01\xd8\x81\xc6\x34\x12\x00\x00" in test() macro
115 (unsigned char*)X86_CODE32, in test()
116 sizeof(X86_CODE32) - 1, in test()
124 (unsigned char*)X86_CODE32, in test()
125 sizeof(X86_CODE32) - 1, in test()
131 (unsigned char*)X86_CODE32, in test()
132 sizeof(X86_CODE32) - 1, in test()
/dports/emulators/qemu60/qemu-6.0.0/capstone/tests/
H A Dtest_customized_mnem.c13 #define X86_CODE32 "\x75\x01" macro
32 count = cs_disasm(handle, (const uint8_t *)X86_CODE32, sizeof(X86_CODE32) - 1, 0x1000, 1, &insn); in print_insn()
34 print_string_hex((unsigned char *)X86_CODE32, sizeof(X86_CODE32) - 1); in print_insn()
H A Dtest_basic.c35 #define X86_CODE32 "\xba\xcd\xab\x00\x00\x8d\x4c\x32\x08\x01\xd8\x81\xc6\x34\x12\x00\x00" in test() macro
115 (unsigned char*)X86_CODE32, in test()
116 sizeof(X86_CODE32) - 1, in test()
124 (unsigned char*)X86_CODE32, in test()
125 sizeof(X86_CODE32) - 1, in test()
131 (unsigned char*)X86_CODE32, in test()
132 sizeof(X86_CODE32) - 1, in test()
/dports/devel/redasm/REDasm-2.1.1/LibREDasm/depends/capstone/tests/
H A Dtest_customized_mnem.c13 #define X86_CODE32 "\x75\x01" macro
32 count = cs_disasm(handle, (const uint8_t *)X86_CODE32, sizeof(X86_CODE32) - 1, 0x1000, 1, &insn); in print_insn()
34 print_string_hex((unsigned char *)X86_CODE32, sizeof(X86_CODE32) - 1); in print_insn()
H A Dtest_basic.c35 #define X86_CODE32 "\xba\xcd\xab\x00\x00\x8d\x4c\x32\x08\x01\xd8\x81\xc6\x34\x12\x00\x00" in test() macro
110 (unsigned char*)X86_CODE32, in test()
111 sizeof(X86_CODE32) - 1, in test()
119 (unsigned char*)X86_CODE32, in test()
120 sizeof(X86_CODE32) - 1, in test()
126 (unsigned char*)X86_CODE32, in test()
127 sizeof(X86_CODE32) - 1, in test()
/dports/emulators/qemu5/qemu-5.2.0/capstone/tests/
H A Dtest_customized_mnem.c13 #define X86_CODE32 "\x75\x01" macro
32 count = cs_disasm(handle, (const uint8_t *)X86_CODE32, sizeof(X86_CODE32) - 1, 0x1000, 1, &insn); in print_insn()
34 print_string_hex((unsigned char *)X86_CODE32, sizeof(X86_CODE32) - 1); in print_insn()
H A Dtest_basic.c35 #define X86_CODE32 "\xba\xcd\xab\x00\x00\x8d\x4c\x32\x08\x01\xd8\x81\xc6\x34\x12\x00\x00" in test() macro
115 (unsigned char*)X86_CODE32, in test()
116 sizeof(X86_CODE32) - 1, in test()
124 (unsigned char*)X86_CODE32, in test()
125 sizeof(X86_CODE32) - 1, in test()
131 (unsigned char*)X86_CODE32, in test()
132 sizeof(X86_CODE32) - 1, in test()
/dports/devel/capstone4/capstone-4.0.2/bindings/python/
H A Dtest_customized_mnem.py11 X86_CODE32 = b"\x75\x01" variable
26 print_insn(md, X86_CODE32)
30 print_insn(md, X86_CODE32)
34 print_insn(md, X86_CODE32)
/dports/emulators/qemu/qemu-6.2.0/capstone/bindings/python/
H A Dtest_customized_mnem.py11 X86_CODE32 = b"\x75\x01"
26 print_insn(md, X86_CODE32)
30 print_insn(md, X86_CODE32)
34 print_insn(md, X86_CODE32)
/dports/emulators/qemu60/qemu-6.0.0/capstone/bindings/python/
H A Dtest_customized_mnem.py11 X86_CODE32 = b"\x75\x01" variable
26 print_insn(md, X86_CODE32)
30 print_insn(md, X86_CODE32)
34 print_insn(md, X86_CODE32)
/dports/devel/redasm/REDasm-2.1.1/LibREDasm/depends/capstone/bindings/python/
H A Dtest_customized_mnem.py11 X86_CODE32 = b"\x75\x01" variable
26 print_insn(md, X86_CODE32)
30 print_insn(md, X86_CODE32)
34 print_insn(md, X86_CODE32)
/dports/emulators/qemu5/qemu-5.2.0/capstone/bindings/python/
H A Dtest_customized_mnem.py11 X86_CODE32 = b"\x75\x01" variable
26 print_insn(md, X86_CODE32)
30 print_insn(md, X86_CODE32)
34 print_insn(md, X86_CODE32)
/dports/devel/capstone3/capstone-3.0.5/tests/
H A Dtest_iter.c35 #define X86_CODE32 "\x8d\x4c\x32\x08\x01\xd8\x81\xc6\x34\x12\x00\x00" in test() macro
69 sizeof(X86_CODE32) - 1, in test()
75 (unsigned char *)X86_CODE32, in test()
76 sizeof(X86_CODE32) - 1, in test()
84 (unsigned char *)X86_CODE32, in test()
85 sizeof(X86_CODE32) - 1, in test()
/dports/emulators/qemu42/qemu-4.2.1/capstone/tests/
H A Dtest_iter.c35 #define X86_CODE32 "\x8d\x4c\x32\x08\x01\xd8\x81\xc6\x34\x12\x00\x00" in test() macro
69 sizeof(X86_CODE32) - 1, in test()
75 (unsigned char *)X86_CODE32, in test()
76 sizeof(X86_CODE32) - 1, in test()
84 (unsigned char *)X86_CODE32, in test()
85 sizeof(X86_CODE32) - 1, in test()

1234567