Searched refs:regs (Results 1 - 25 of 114) sorted by relevance

12345

/macosx-10.9.5/Libinfo-449.1.3/rpc.subproj/
H A Dpmap_prot.c72 xdr_pmap(xdrs, regs)
74 struct pmap *regs;
77 if (xdr_u_long(xdrs, &regs->pm_prog) &&
78 xdr_u_long(xdrs, &regs->pm_vers) &&
79 xdr_u_long(xdrs, &regs->pm_prot))
80 return (xdr_u_long(xdrs, &regs->pm_port));
/macosx-10.9.5/cctools-845/libmacho/
H A Dhppa_swap.c28 struct hp_pa_integer_thread_state *regs,
31 regs->ts_gr1 = OSSwapInt32(regs->ts_gr1);
32 regs->ts_gr2 = OSSwapInt32(regs->ts_gr2);
33 regs->ts_gr3 = OSSwapInt32(regs->ts_gr3);
34 regs->ts_gr4 = OSSwapInt32(regs->ts_gr4);
35 regs
27 swap_hppa_integer_thread_state( struct hp_pa_integer_thread_state *regs, enum NXByteOrder target_byte_order) argument
[all...]
H A Dsparc_swap.c57 cpu->regs.r_pc = OSSwapInt32(cpu->regs.r_pc);
58 cpu->regs.r_npc = OSSwapInt32(cpu->regs.r_npc);
59 cpu->regs.r_y = OSSwapInt32(cpu->regs.r_y);
60 cpu->regs.r_g1 = OSSwapInt32(cpu->regs.r_g1);
61 cpu->regs.r_g2 = OSSwapInt32(cpu->regs
[all...]
H A Dm68k_swap.c50 tmp = OSSwapInt32(fpu->regs[i].fp[0]);
51 fpu->regs[i].fp[1] = OSSwapInt32(fpu->regs[i].fp[1]);
52 fpu->regs[i].fp[0] = OSSwapInt32(fpu->regs[i].fp[2]);
53 fpu->regs[i].fp[2] = tmp;
/macosx-10.9.5/emacs-92/emacs/msdos/
H A Dis_exec.c60 __dpmi_regs regs; local
71 regs.x.bx = handle;
77 regs.x.ax = 0x4201; /* set pointer from current position */
78 regs.x.bx = fh;
79 regs.x.cx = regs.x.dx = 0; /* move 0 bytes (i.e., stay put) */
80 __dpmi_int(0x21, &regs);
81 if (regs.x.flags & 1)
83 errno = __doserr_to_errno(regs.x.ax);
86 fpos_high = regs
[all...]
/macosx-10.9.5/xnu-2422.115.4/osfmk/i386/
H A Dtrap_native.c151 x86_saved_state64_t *regs = saved_state64(sp); local
161 regs->isf.rip,
163 regs->rax, regs->rbx, regs->rcx, regs->rdx,
164 regs->isf.rsp, regs->rbp, regs->rsi, regs
[all...]
H A Dtrap.h126 extern void sync_iss_to_iks(x86_saved_state_t *regs);
129 x86_saved_state_t *regs);
131 extern void kernel_trap(x86_saved_state_t *regs, uintptr_t *lo_spp);
133 extern void user_trap(x86_saved_state_t *regs);
135 extern void interrupt(x86_saved_state_t *regs);
137 extern void panic_double_fault64(x86_saved_state_t *regs);
138 extern void panic_machine_check64(x86_saved_state_t *regs);
145 void *regs,
H A Dbsd_i386.c250 x86_saved_state32_t *regs; local
253 regs = saved_state32(state);
255 trapno = regs->eax;
257 kprintf("machdep_syscall(0x%08x) code=%d\n", regs, trapno);
264 regs->eax = (unsigned int)kern_invalid(NULL);
273 if (copyin((user_addr_t) regs->uesp + sizeof (int),
275 regs->eax = KERN_INVALID_ADDRESS;
283 regs->eax = (*entry->routine.args_0)();
286 regs->eax = (*entry->routine.args_1)(args[0]);
289 regs
332 x86_saved_state64_t *regs; local
414 x86_saved_state32_t *regs; local
488 x86_saved_state64_t *regs; local
[all...]
H A Dtrap.c143 x86_saved_state64_t *regs; local
145 regs = USER_REGS64(thr_act);
147 code = (int) (regs->rax & SYSCALL_NUMBER_MASK);
148 is_mach = (regs->rax & SYSCALL_CLASS_MASK)
156 regs->rax = ret;
168 x86_saved_state32_t *regs; local
170 regs = USER_REGS32(thr_act);
172 code = ((int) regs->eax);
180 regs->eax = ret;
807 panic_trap(x86_saved_state64_t *regs) argument
894 x86_saved_state64_t *regs; local
906 x86_saved_state32_t *regs; local
1198 x86_saved_state64_t *regs = saved_state64(saved_state); local
[all...]
H A Dmachine_cpu.h44 int cpu_signal_handler(x86_saved_state_t *regs);
H A Drtclock_protos.h57 extern void rtclock_intr(x86_saved_state_t *regs);
/macosx-10.9.5/xnu-2422.115.4/bsd/dev/i386/
H A Dsystemcalls.c84 * Inputs: regs - pointer to i386 save area
100 x86_saved_state32_t *regs; local
104 regs = saved_state32(state);
106 if (regs->eax == 0x800)
121 regs->eax = EPERM;
122 regs->efl |= EFL_CF;
128 code = regs->eax & I386_SYSCALL_NUMBER_MASK;
130 code, syscallnames[code >= NUM_SYSENT ? 63 : code], (uint32_t)regs->eip);
131 params = (vm_offset_t) (regs->uesp + sizeof (int));
133 regs
278 x86_saved_state64_t *regs; local
474 x86_saved_state64_t *regs; local
537 x86_saved_state32_t *regs; local
[all...]
H A Ddtrace_isa.c181 dtrace_getreg(struct regs *savearea, uint_t reg)
184 x86_saved_state_t *regs = (x86_saved_state_t *)savearea; local
195 return (uint64_t)(regs->ss_64.rdi);
197 return (uint64_t)(regs->ss_64.rsi);
199 return (uint64_t)(regs->ss_64.rdx);
201 return (uint64_t)(regs->ss_64.rcx);
203 return (uint64_t)(regs->ss_64.r8);
205 return (uint64_t)(regs->ss_64.r9);
207 return (uint64_t)(regs->ss_64.rax);
209 return (uint64_t)(regs
415 x86_saved_state_t *regs; local
487 x86_saved_state_t *regs; local
540 savearea_t *regs; local
[all...]
H A Dsdt_x86.c58 x86_saved_state64_t *regs = (x86_saved_state64_t *)stack; local
60 dtrace_probe(sdt->sdp_id, regs->rdi, regs->rsi, regs->rdx, regs->rcx, regs->r8);
H A Ddtrace_subr_x86.c54 dtrace_user_probe(x86_saved_state_t *regs) argument
68 if (is_saved_state64(regs) == TRUE) {
69 regs64 = saved_state64(regs);
75 regs32 = saved_state32(regs);
146 (void) (*dtrace_return_probe_ptr)(regs);
178 (*dtrace_pid_probe_ptr)(regs) == 0) {
212 struct regs *rp = lwptoregs(ttolwp(t));
239 struct regs *rp = lwptoregs(ttolwp(t));
/macosx-10.9.5/emacs-92/emacs/src/
H A Dw16select.c108 __dpmi_int (intno, regs)
110 __dpmi_regs *regs;
112 regs->x.ss = regs->x.sp = regs->x.flags = 0;
113 return _go32_dpmi_simulate_int (intno, regs);
136 __dpmi_regs regs;
142 regs.x.ax = 0x1700;
143 __dpmi_int(0x2f, &regs);
144 return regs
134 __dpmi_regs regs; local
149 __dpmi_regs regs; local
172 __dpmi_regs regs; local
188 __dpmi_regs regs; local
228 __dpmi_regs regs; local
247 __dpmi_regs regs; local
347 __dpmi_regs regs; local
371 __dpmi_regs regs; local
450 __dpmi_regs regs; local
465 __dpmi_regs regs; local
[all...]
H A Ddosfns.c290 union REGS regs;
298 regs.x.ax = 0x3000;
299 intdos (&regs, &regs);
300 Vdos_version = Fcons (make_number (regs.h.al), make_number (regs.h.ah));
321 regs.x.ax = 0x6601;
322 intdos (&regs, &regs);
323 if (regs
289 union REGS regs; local
468 _go32_dpmi_registers regs; local
[all...]
/macosx-10.9.5/cctools-845/include/mach/sparc/
H A Dthread_status.h56 struct regs regs; member in struct:sparc_thread_state_regs
/macosx-10.9.5/gnutar-452/gnutar/lib/
H A Dregex.c36 # define re_match_2(bufp, string1, size1, string2, size2, pos, regs, stop) \
37 __re_match_2 (bufp, string1, size1, string2, size2, pos, regs, stop)
38 # define re_match(bufp, string, size, pos, regs) \
39 __re_match (bufp, string, size, pos, regs)
40 # define re_search(bufp, string, size, startpos, range, regs) \
41 __re_search (bufp, string, size, startpos, range, regs)
45 # define re_search_2(bufp, st1, s1, st2, s2, startpos, range, regs, stop) \
46 __re_search_2 (bufp, st1, s1, st2, s2, startpos, range, regs, stop)
/macosx-10.9.5/cxxfilt-11/cxxfilt/opcodes/
H A Dmsp430-dis.c91 int regs = 0, regd = 0; local
98 regs = (insn & 0x0f00) >> 8;
105 if (regs != 2 && regs != 3 && regs != 1)
295 int regs = 0, regd = 0; local
301 regs = (insn & 0x0f00) >> 8;
317 if (regd != regs || as != ad)
384 if (regs == 3)
393 sprintf (op1, "r%d", regs);
546 int regs = 0, regd = 0; local
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/heap/
H A DMachineStackMarker.cpp320 static size_t getPlatformThreadRegisters(const PlatformThread& platformThread, PlatformThreadRegisters& regs) argument
325 unsigned user_count = sizeof(regs)/sizeof(int);
343 kern_return_t result = thread_get_state(platformThread, flavor, (thread_state_t)&regs, &user_count);
353 regs.ContextFlags = CONTEXT_INTEGER | CONTEXT_CONTROL;
354 GetThreadContext(platformThread, &regs);
357 memset(&regs, 0, sizeof(regs));
358 regs.tid = platformThread;
365 int rc = devctl(fd, DCMD_PROC_TIDSTATUS, &regs, sizeof(regs),
387 otherThreadStackPointer(const PlatformThreadRegisters& regs) argument
449 freePlatformThreadRegisters(PlatformThreadRegisters& regs) argument
460 PlatformThreadRegisters regs; local
[all...]
/macosx-10.9.5/cctools-845/include/mach-o/hppa/
H A Dswap.h27 struct hp_pa_integer_thread_state *regs,
/macosx-10.9.5/cctools-845/include/mach/m68k/
H A Dthread_status.h82 } regs[8]; member in struct:m68k_thread_state_68882
/macosx-10.9.5/vim-53/src/
H A Dos_msdos.c327 static union REGS regs; local
330 regs.h.ah = 0x0f;
331 (void)int86(0x10, &regs, &regs); /* int 10 0f */
332 if (regs.h.al == 0x07) /* video mode 7 -- hercules mono */
499 static union REGS regs; local
505 regs.h.ah = 0x01; /* Set Cursor */
511 regs.h.ah = 0x03; /* Get Cursor */
512 regs.h.bh = 0x00; /* Page */
516 (void)int86(0x10, &regs,
526 union REGS regs; local
575 union REGS regs; local
595 union REGS regs; local
634 union REGS regs; local
681 union REGS regs; local
721 union REGS regs; local
1301 union REGS regs; local
1486 union REGS regs; local
1898 static union REGS regs; local
2144 __dpmi_regs regs; local
[all...]
/macosx-10.9.5/ruby-104/ruby/include/ruby/
H A Dre.h39 struct re_registers regs; member in struct:rmatch
54 #define RMATCH_REGS(obj) (&(R_CAST(RMatch)(obj))->rmatch->regs)

Completed in 375 milliseconds

12345