| /f-stack/freebsd/arm/include/ |
| H A D | reg.h | 22 struct fpreg { struct 36 int fill_fpregs(struct thread *, struct fpreg *); argument 37 int set_fpregs(struct thread *, struct fpreg *);
|
| /f-stack/freebsd/mips/include/ |
| H A D | reg.h | 60 struct fpreg { struct 89 int fill_fpregs(struct thread *, struct fpreg *); 91 int set_fpregs(struct thread *, struct fpreg *);
|
| /f-stack/freebsd/i386/linux/ |
| H A D | linux_ptrace.c | 174 map_fpregs_to_linux(struct fpreg *bsd_r, struct linux_pt_fpreg *linux_r) in map_fpregs_to_linux() 187 map_fpregs_from_linux(struct fpreg *bsd_r, struct linux_pt_fpreg *linux_r) in map_fpregs_from_linux() 242 struct linux_pt_fpreg fpreg; in linux_ptrace() member 247 struct fpreg bsd_fpreg; in linux_ptrace() 312 map_fpregs_to_linux(&u.bsd_fpreg, &r.fpreg); in linux_ptrace() 313 error = copyout(&r.fpreg, (void *)uap->data, in linux_ptrace() 314 sizeof(r.fpreg)); in linux_ptrace() 319 error = copyin((void *)uap->data, &r.fpreg, sizeof(r.fpreg)); in linux_ptrace() 321 map_fpregs_from_linux(&u.bsd_fpreg, &r.fpreg); in linux_ptrace()
|
| /f-stack/freebsd/arm64/include/ |
| H A D | reg.h | 52 struct fpreg { struct 92 int fill_fpregs(struct thread *, struct fpreg *); 93 int set_fpregs(struct thread *, struct fpreg *);
|
| /f-stack/freebsd/x86/include/ |
| H A D | reg.h | 87 #define __fpreg32 fpreg 93 #define __fpreg64 fpreg 255 int fill_fpregs(struct thread *, struct fpreg *); 256 int set_fpregs(struct thread *, struct fpreg *);
|
| H A D | x86_var.h | 102 struct fpreg;
|
| /f-stack/freebsd/sys/ |
| H A D | ptrace.h | 196 struct fpreg; 201 int proc_read_fpregs(struct thread *_td, struct fpreg *_fpreg); 202 int proc_write_fpregs(struct thread *_td, struct fpreg *_fpreg);
|
| H A D | procfs.h | 38 typedef struct fpreg fpregset_t;
|
| /f-stack/freebsd/arm/arm/ |
| H A D | machdep_kdb.c | 106 fill_fpregs(struct thread *td, struct fpreg *regs) in fill_fpregs() 127 set_fpregs(struct thread *td, struct fpreg *regs) in set_fpregs()
|
| /f-stack/freebsd/kern/ |
| H A D | sys_process.c | 142 proc_read_fpregs(struct thread *td, struct fpreg *fpregs) in proc_read_fpregs() 149 proc_write_fpregs(struct thread *td, struct fpreg *fpregs) in proc_write_fpregs() 473 struct fpreg fpreg; in sys_ptrace() member 496 bzero(&r.fpreg, sizeof(r.fpreg)); in sys_ptrace() 505 error = copyin(uap->addr, &r.fpreg, sizeof(r.fpreg)); in sys_ptrace() 544 error = copyout(&r.fpreg, uap->addr, sizeof(r.fpreg)); in sys_ptrace()
|
| /f-stack/freebsd/mips/mips/ |
| H A D | pm_machdep.c | 384 fill_fpregs(struct thread *td, struct fpreg *fpregs) in fill_fpregs() 388 memcpy(fpregs, &td->td_frame->f0, sizeof(struct fpreg)); in fill_fpregs() 394 set_fpregs(struct thread *td, struct fpreg *fpregs) in set_fpregs() 398 memcpy(&td->td_frame->f0, fpregs, sizeof(struct fpreg)); in set_fpregs()
|
| H A D | freebsd32_machdep.c | 158 struct fpreg fp; in set_fpregs32() 170 struct fpreg fp; in fill_fpregs32()
|
| /f-stack/freebsd/arm64/arm64/ |
| H A D | machdep.c | 278 fill_fpregs(struct thread *td, struct fpreg *regs) in fill_fpregs() 305 set_fpregs(struct thread *td, struct fpreg *regs) in set_fpregs()
|
| /f-stack/freebsd/amd64/amd64/ |
| H A D | machdep.c | 2186 fill_fpregs_xmm(struct savefpu *sv_xmm, struct fpreg *fpregs) in fill_fpregs_xmm() 2216 set_fpregs_xmm(struct fpreg *fpregs, struct savefpu *sv_xmm) in set_fpregs_xmm() 2244 fill_fpregs(struct thread *td, struct fpreg *fpregs) in fill_fpregs() 2257 set_fpregs(struct thread *td, struct fpreg *fpregs) in set_fpregs()
|
| /f-stack/freebsd/i386/i386/ |
| H A D | machdep.c | 2857 fill_fpregs(struct thread *td, struct fpreg *fpregs) in fill_fpregs() 2874 set_fpregs(struct thread *td, struct fpreg *fpregs) in set_fpregs()
|