Home
last modified time | relevance | path

Searched refs:newpc (Results 1 – 25 of 355) sorted by relevance

12345678910>>...15

/dports/sysutils/fusefs-bindfs/bindfs-1.14.8/src/
H A Dpermchain.c107 newpc->op = *p; in add_chmod_rule_to_permchain()
139 if (newpc->flags == 0) in add_chmod_rule_to_permchain()
142 permchain_cat(pc, newpc); in add_chmod_rule_to_permchain()
144 permchain_destroy(newpc); in add_chmod_rule_to_permchain()
155 permchain_destroy(newpc); in add_octal_rule_to_permchain()
159 newpc->mask = 0777; in add_octal_rule_to_permchain()
160 newpc->op = 'o'; in add_octal_rule_to_permchain()
161 newpc->octal = mode; in add_octal_rule_to_permchain()
163 permchain_cat(pc, newpc); in add_octal_rule_to_permchain()
203 permchain_cat(pc, newpc); in add_chmod_rules_to_permchain()
[all …]
/dports/cad/electric/electric-7.00/src/net/
H A Dnetflat.c1505 *pcomp = newpc; in net_mergeseries()
1510 newpc->hierpath = (NODEINST **)emalloc(newpc->hierpathcount * in net_mergeseries()
1513 newpc->hierindex = (INTBIG *)emalloc(newpc->hierpathcount * in net_mergeseries()
1525 newpc->timestamp = -1; in net_mergeseries()
1526 newpc->hashreason = 0; in net_mergeseries()
1531 newpc->length = 0.0; in net_mergeseries()
1532 newpc->width = 0.0; in net_mergeseries()
1541 newpc->numactual = 0; in net_mergeseries()
1562 newpc->state = (INTSML *)emalloc((SIZEOFINTSML * newpc->wirecount), in net_mergeseries()
1565 newpc->portindices = (INTSML *)emalloc((SIZEOFINTSML * newpc->wirecount), in net_mergeseries()
[all …]
/dports/games/libretro-scummvm/scummvm-7b1e929/engines/glk/glulxe/
H A Dfuncs.cpp216 uint newpc, newframeptr; in pop_callstub() local
223 newpc = Stk4(stackptr + 8); in pop_callstub()
227 pc = newpc; in pop_callstub()
274 uint desttype, destaddr, newpc; in pop_callstub_string() local
280 newpc = Stk4(stackptr + 8); in pop_callstub_string()
284 pc = newpc; in pop_callstub_string()
/dports/games/scummvm/scummvm-2.5.1/engines/glk/glulx/
H A Dfuncs.cpp216 uint newpc, newframeptr; in pop_callstub() local
223 newpc = Stk4(stackptr + 8); in pop_callstub()
227 pc = newpc; in pop_callstub()
274 uint desttype, destaddr, newpc; in pop_callstub_string() local
280 newpc = Stk4(stackptr + 8); in pop_callstub_string()
284 pc = newpc; in pop_callstub_string()
/dports/audio/uade/uade-2.13/src/include/
H A Dnewcpu.h189 static inline void m68k_setpc (uaecptr newpc) in m68k_setpc() argument
191 regs.pc_p = regs.pc_oldp = get_real_address(newpc); in m68k_setpc()
192 regs.pc = newpc; in m68k_setpc()
195 extern void m68k_setpc (uaecptr newpc);
209 extern void m68k_setpc_fast (uaecptr newpc);
210 extern void m68k_setpc_bcc (uaecptr newpc);
211 extern void m68k_setpc_rte (uaecptr newpc);
H A Dcompiler.h55 uaecptr newpc; in run_compiled_code() local
58 __asm__ __volatile__ ("pushl %%ebp; call *%1; popl %%ebp" : "=a" (newpc) : "r" (exec_me) : in run_compiled_code()
62 struct hash_entry *h = (struct hash_entry *)newpc; in run_compiled_code()
69 m68k_setpc_fast(newpc); in run_compiled_code()
/dports/science/PETSc/petsc-3.14.1/src/binding/petsc4py/test/
H A Dtest_ksp.py90 newpc = PETSc.PC()
91 newpc.create(self.ksp.getComm())
92 self.assertEqual(newpc.getRefCount(), 1)
93 self.ksp.setPC(newpc)
94 self.assertEqual(newpc.getRefCount(), 2)
100 self.assertEqual(pc, newpc)
102 newpc.destroy()
103 self.assertFalse(bool(newpc))
/dports/emulators/hatari/hatari-2.2.1/src/cpu/
H A Dnewcpu.h417 STATIC_INLINE void m68k_setpc(uaecptr newpc) in m68k_setpc() argument
420 regs.instruction_pc = regs.pc = newpc; in m68k_setpc()
422 STATIC_INLINE void m68k_setpc_j(uaecptr newpc) in m68k_setpc_j() argument
425 regs.pc = newpc; in m68k_setpc_j()
474 uae_u32 newpc = get_long(m68k_areg(regs, 7)); in m68k_do_rts() local
475 m68k_setpc(newpc); in m68k_do_rts()
481 STATIC_INLINE void m68k_setpci(uaecptr newpc) in m68k_setpci() argument
483 regs.instruction_pc = regs.pc = newpc; in m68k_setpci()
487 regs.pc = newpc; in m68k_setpci_j()
551 m68k_setpci(newpc); in m68k_do_rtsi()
[all …]
/dports/games/libretro-hatari/hatari-561c07e/src/cpu/
H A Dnewcpu.h246 STATIC_INLINE void m68k_setpc (uaecptr newpc) in m68k_setpc() argument
248 regs.pc_p = regs.pc_oldp = get_real_address (newpc); in m68k_setpc()
249 regs.fault_pc = regs.pc = newpc; in m68k_setpc()
268 STATIC_INLINE void m68k_setpc_mmu (uaecptr newpc) in m68k_setpc_mmu() argument
270 regs.fault_pc = regs.pc = newpc; in m68k_setpc_mmu()
273 STATIC_INLINE void m68k_setpci (uaecptr newpc) in m68k_setpci() argument
275 regs.fault_pc = regs.pc = newpc; in m68k_setpci()
288 uae_u32 newpc = get_long (m68k_areg (regs, 7)); in m68k_do_rts() local
289 m68k_setpc (newpc); in m68k_do_rts()
/dports/games/libretro-uae/libretro-uae-8333daa/sources/src/include/
H A Dnewcpu.h244 STATIC_INLINE void m68k_setpc (uaecptr newpc) in m68k_setpc() argument
246 regs.pc_p = regs.pc_oldp = get_real_address (newpc); in m68k_setpc()
247 regs.instruction_pc = regs.pc = newpc; in m68k_setpc()
267 STATIC_INLINE void m68k_setpc_mmu (uaecptr newpc) in m68k_setpc_mmu() argument
269 regs.instruction_pc = regs.pc = newpc; in m68k_setpc_mmu()
273 STATIC_INLINE void m68k_setpci (uaecptr newpc) in m68k_setpci() argument
275 regs.instruction_pc = regs.pc = newpc; in m68k_setpci()
288 uae_u32 newpc = get_long (m68k_areg (regs, 7)); in m68k_do_rts() local
289 m68k_setpc (newpc); in m68k_do_rts()
/dports/emulators/simh/simh-3.9.0_5/VAX/
H A Dvax_cpu1.c406 int32 spamask, stklen, newpc, nargs; in op_ret() local
417 newpc = Read (tsp + 16, L_LONG, RA); /* get new PC */ in op_ret()
438 JUMP (newpc); /* set new PC */ in op_ret()
1118 int32 newpc; in intexc() local
1125 newpc = newpc | 1; in intexc()
1171 int32 tsp, newpc, acc, sta; in op_chm() local
1175 newpc = ReadLP ((SCBB + SCB_CHMK + (mode << 2)) & PAMASK); in op_chm()
1223 int32 newpc = Read (SP, L_LONG, RA); in op_rei() local
1250 newpc = newpc & WMASK; in op_rei()
1278 uint32 newpc, newpsl, pcbpa, t; in op_ldpctx() local
[all …]
/dports/devel/zpu-binutils/zpu-toolchain-1.0/toolchain/gdb/gdb/gdbserver/
H A Dlinux-i386-low.c145 i386_set_pc (CORE_ADDR newpc) in i386_set_pc() argument
148 fprintf (stderr, "set pc to %08lx\n", (long) newpc); in i386_set_pc()
149 supply_register_by_name ("eip", &newpc); in i386_set_pc()
H A Dlinux-arm-low.c65 unsigned long newpc = pc; in arm_set_pc() local
66 supply_register_by_name ("pc", &newpc); in arm_set_pc()
/dports/devel/zpu-gcc/zpu-toolchain-1.0/toolchain/gdb/gdb/gdbserver/
H A Dlinux-i386-low.c145 i386_set_pc (CORE_ADDR newpc) in i386_set_pc() argument
148 fprintf (stderr, "set pc to %08lx\n", (long) newpc); in i386_set_pc()
149 supply_register_by_name ("eip", &newpc); in i386_set_pc()
H A Dlinux-arm-low.c65 unsigned long newpc = pc; in arm_set_pc() local
66 supply_register_by_name ("pc", &newpc); in arm_set_pc()
/dports/emulators/fs-uae/fs-uae-3.1.35/src/include/
H A Dnewcpu.h341 STATIC_INLINE void m68k_setpc(uaecptr newpc) in m68k_setpc() argument
343 regs.pc_p = regs.pc_oldp = get_real_address(newpc); in m68k_setpc()
344 regs.instruction_pc = regs.pc = newpc; in m68k_setpc()
393 uae_u32 newpc = get_long(m68k_areg(regs, 7)); in m68k_do_rts() local
394 m68k_setpc(newpc); in m68k_do_rts()
400 STATIC_INLINE void m68k_setpci(uaecptr newpc) in m68k_setpci() argument
402 regs.instruction_pc = regs.pc = newpc; in m68k_setpci()
465 uae_u32 newpc = get_long(m68k_areg(regs, 7)); in m68k_do_rtsi() local
466 m68k_setpci(newpc); in m68k_do_rtsi()
504 uae_u32 newpc = x_get_long(m68k_areg(regs, 7)); in m68k_do_rtsi_jit() local
[all …]
/dports/games/libretro-mame2003/mame2003-libretro-4358db4/src/
H A Dx86drc.c399 void drc_append_fixed_dispatcher(struct drccore *drc, UINT32 newpc) in drc_append_fixed_dispatcher() argument
401 void **base = drc->lookup_l1[newpc >> drc->l1shift]; in drc_append_fixed_dispatcher()
404 …_mov_r32_m32abs(REG_EAX, &drc->lookup_l1[newpc >> drc->l1shift]);/* mov eax,[(newpc >> l1shift)*4 … in drc_append_fixed_dispatcher()
405 …_jmp_m32bd(REG_EAX, (newpc & drc->l2mask) * drc->l2scale); /* jmp [eax+(newpc & l2mask)*l2scale]*/ in drc_append_fixed_dispatcher()
408 …_jmp_m32abs((UINT8 *)base + (newpc & drc->l2mask) * drc->l2scale); /* jmp [eax+(newpc & l2mask)*l2… in drc_append_fixed_dispatcher()
416 void drc_append_tentative_fixed_dispatcher(struct drccore *drc, UINT32 newpc) in drc_append_tentative_fixed_dispatcher() argument
425 pair->pc = newpc; in drc_append_tentative_fixed_dispatcher()
426 drc_append_fixed_dispatcher(drc, newpc); in drc_append_tentative_fixed_dispatcher()
/dports/games/libretro-mame2003_plus/mame2003-plus-libretro-17e9889/src/
H A Dx86drc.c399 void drc_append_fixed_dispatcher(struct drccore *drc, UINT32 newpc) in drc_append_fixed_dispatcher() argument
401 void **base = drc->lookup_l1[newpc >> drc->l1shift]; in drc_append_fixed_dispatcher()
404 …_mov_r32_m32abs(REG_EAX, &drc->lookup_l1[newpc >> drc->l1shift]);/* mov eax,[(newpc >> l1shift)*4 … in drc_append_fixed_dispatcher()
405 …_jmp_m32bd(REG_EAX, (newpc & drc->l2mask) * drc->l2scale); /* jmp [eax+(newpc & l2mask)*l2scale]*/ in drc_append_fixed_dispatcher()
408 …_jmp_m32abs((UINT8 *)base + (newpc & drc->l2mask) * drc->l2scale); /* jmp [eax+(newpc & l2mask)*l2… in drc_append_fixed_dispatcher()
416 void drc_append_tentative_fixed_dispatcher(struct drccore *drc, UINT32 newpc) in drc_append_tentative_fixed_dispatcher() argument
425 pair->pc = newpc; in drc_append_tentative_fixed_dispatcher()
426 drc_append_fixed_dispatcher(drc, newpc); in drc_append_tentative_fixed_dispatcher()
/dports/devel/gdb/gdb-11.1/gdbserver/
H A Dlinux-tic6x-low.cc63 void low_set_pc (regcache *regcache, CORE_ADDR newpc) override;
268 union tic6x_register newpc; in low_set_pc() local
270 newpc.reg32 = pc; in low_set_pc()
271 supply_register_by_name (regcache, "PC", newpc.buf); in low_set_pc()
/dports/devel/avr-gdb/gdb-7.3.1/sim/cris/
H A Dcris-sim.h114 #define crisv32f_branch_taken(cpu, oldpc, newpc, taken) \ argument
122 #define crisv32f_branch_taken(cpu, oldpc, newpc, taken) argument
125 #define crisv10f_branch_taken(cpu, oldpc, newpc, taken) argument
/dports/devel/gdb761/gdb-7.6.1/sim/cris/
H A Dcris-sim.h113 #define crisv32f_branch_taken(cpu, oldpc, newpc, taken) \ argument
121 #define crisv32f_branch_taken(cpu, oldpc, newpc, taken) argument
124 #define crisv10f_branch_taken(cpu, oldpc, newpc, taken) argument
/dports/emulators/aranym/aranym-1.1.0/src/
H A Ddsp_cpu.c740 Uint32 newpc; in dsp_postexecute_update_pc() local
2045 Uint32 newpc; in dsp_enddo() local
2076 dsp_core->pc = newpc; in dsp_jcc()
2166 dsp_core->pc = newpc; in dsp_jclr()
2196 dsp_core->pc = newpc; in dsp_jmp()
2218 dsp_core->pc = newpc; in dsp_jscc()
2273 Uint32 newpc; in dsp_jset() local
2319 Uint32 newpc; in dsp_jsr() local
2334 dsp_core->pc = newpc; in dsp_jsr()
2826 dsp_core->pc = newpc; in dsp_rti()
[all …]
/dports/devel/avr-gdb/gdb-7.3.1/sim/bfin/
H A Dsim-main.h95 #define TRACE_BRANCH(cpu, oldpc, newpc, hwloop, fmt, ...) \ argument
97 MAYBE_TRACE (BRANCH, cpu, fmt " to %#x", ## __VA_ARGS__, newpc); \
99 bfin_trace_queue (cpu, oldpc, newpc, hwloop); \
/dports/devel/gdb761/gdb-7.6.1/gdb/gdbserver/
H A Dlinux-tic6x-low.c234 union tic6x_register newpc; in tic6x_set_pc() local
236 newpc.reg32 = pc; in tic6x_set_pc()
237 supply_register_by_name (regcache, "PC", newpc.buf); in tic6x_set_pc()
/dports/devel/gdb761/gdb-7.6.1/sim/bfin/
H A Dsim-main.h95 #define TRACE_BRANCH(cpu, oldpc, newpc, hwloop, fmt, ...) \ argument
97 MAYBE_TRACE (BRANCH, cpu, fmt " to %#x", ## __VA_ARGS__, newpc); \
99 bfin_trace_queue (cpu, oldpc, newpc, hwloop); \

12345678910>>...15