Searched refs:sfp (Results 1 - 23 of 23) sorted by relevance

/netbsd-6-1-5-RELEASE/sys/compat/linux/arch/alpha/
H A Dlinux_machdep.c116 struct linux_rt_sigframe *sfp, sigframe; local
131 sfp = (struct linux_rt_sigframe *)
134 sfp = (struct linux_rt_sigframe *)(alpha_pal_rdusp());
135 sfp = (struct linux_rt_sigframe *)((char *)sfp - rndfsize);
140 sig, &onstack, sfp);
171 error = copyout((void *)&sigframe, (void *)sfp, fsize);
189 tf->tf_regs[FRAME_A1] = (unsigned long)&sfp->info;
190 tf->tf_regs[FRAME_A2] = (unsigned long)&sfp->uc;
197 alpha_pal_wrusp((unsigned long)sfp);
209 struct linux_sigframe *sfp, sigframe; local
421 struct linux_rt_sigframe *sfp, sigframe; local
455 struct linux_sigframe *sfp, frame; local
[all...]
H A Dlinux_syscallargs.h273 syscallarg(struct linux_sigframe *) sfp; member in struct:linux_sys_sigreturn_args
724 syscallarg(struct linux_rt_sigframe *) sfp; member in struct:linux_sys_rt_sigreturn_args
/netbsd-6-1-5-RELEASE/bin/ed/
H A Dbuf.c50 FILE *sfp; /* scratch file pointer */ variable
71 if (fseek(sfp, sfseek, SEEK_SET) < 0) {
79 if ((ct = fread(sfbuf, sizeof(char), len, sfp)) < 0 || ct != len) {
115 if (fseek(sfp, 0L, SEEK_END) < 0) {
121 sfseek = ftell(sfp);
125 if ((ct = fwrite(cs, sizeof(char), len, sfp)) < 0 || ct != len) {
231 if ((fd = mkstemp(sfn)) == -1 || (sfp = fdopen(fd, "w+")) == NULL) {
248 if (sfp) {
249 if (fclose(sfp) < 0) {
254 sfp
[all...]
/netbsd-6-1-5-RELEASE/sbin/mount/
H A Dmount.c367 struct statvfs *sfp, sf; local
398 if ((numfs = getmntinfo(&sfp, MNT_WAIT)) == 0) {
403 const char *mountedtype = sfp[i].f_fstypename;
404 size_t cmplen = sizeof(sfp[i].f_fstypename);
418 if (strncmp(name, sfp[i].f_mntonname, MNAMELEN) == 0 &&
423 sfp[i].f_mntfromname,
424 sfp[i].f_mntonname,
425 (int)sizeof(sfp[i].f_fstypename),
426 sfp[i].f_fstypename,
570 prmount(struct statvfs *sfp) argument
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/amd64/amd64/
H A Dfpu.c183 struct savefpu *sfp = &pcb->pcb_savefpu; local
196 fxsave(sfp);
198 mxcsr = sfp->fp_fxsave.fx_mxcsr;
205 cw = sfp->fp_fxsave.fx_fcw;
208 statbits = sfp->fp_fxsave.fx_fsw;
212 sfp->fp_ex_tw = sfp->fp_fxsave.fx_ftw;
213 sfp->fp_ex_sw = sfp->fp_fxsave.fx_fsw;
/netbsd-6-1-5-RELEASE/usr.bin/vacation/
H A Dvacation.c586 FILE *mfp, *sfp; local
599 sfp = stdout;
622 sfp = fdopen(pvect[1], "w");
623 if (sfp == NULL) {
629 (void)fprintf(sfp, "To: %s\n", from);
630 (void)fputs("Auto-Submitted: auto-replied\n", sfp);
635 (void)fputs(buf, sfp);
636 (void)fputs(subject, sfp);
638 (void)fputs(p, sfp);
640 (void)fputs(buf, sfp);
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/m68k/m68k/
H A Dsvr4_machdep.c236 struct svr4_sigframe *sfp = getframe(l, sig, &onstack), sf; local
239 sfp--;
247 sf.sf_sip = &sfp->sf_si;
248 sf.sf_ucp = &sfp->sf_uc;
258 error = copyout(&sf, sfp, sizeof (sf));
270 buildcontext(l, p->p_sigctx.ps_sigcode, sfp);
H A Dsig_machdep.c202 struct saframe *sfp, sf; local
215 sfp = (struct saframe *)sp - 1;
216 if (copyout(&sf, sfp, sizeof(sf)) != 0) {
223 frame->f_regs[SP] = (int) sfp;
/netbsd-6-1-5-RELEASE/sys/arch/mips/mips/
H A Dnetbsd32_machdep.c169 struct sigframe_siginfo32 *sfp = getframe(l, sig, &onstack); local
175 sfp--;
205 error = copyout(&sf, sfp, sfsz);
223 tf->tf_regs[_R_A1] = (intptr_t)&sfp->sf_si;
224 tf->tf_regs[_R_A2] = (intptr_t)&sfp->sf_uc;
228 tf->tf_regs[_R_SP] = (intptr_t)sfp;
/netbsd-6-1-5-RELEASE/sys/compat/linux/arch/arm/
H A Dlinux_machdep.c198 struct linux_sigframe *sfp, frame; local
210 sfp = (struct linux_sigframe *)tf->tf_usr_sp;
211 if (copyin((void *)sfp, &frame, sizeof(*sfp)) != 0)
/netbsd-6-1-5-RELEASE/external/bsd/tcpdump/dist/
H A Dprint-ntp.c210 p_sfix(register const struct s_fixedpt *sfp) argument
216 i = EXTRACT_16BITS(&sfp->int_part);
217 f = EXTRACT_16BITS(&sfp->fraction);
H A Dprint-nfs.c1475 struct nfsv3_fsinfo *sfp; local
1487 sfp = (struct nfsv3_fsinfo *)dp;
1488 TCHECK(*sfp);
1490 EXTRACT_32BITS(&sfp->fs_rtmax),
1491 EXTRACT_32BITS(&sfp->fs_rtpref),
1492 EXTRACT_32BITS(&sfp->fs_wtmax),
1493 EXTRACT_32BITS(&sfp->fs_wtpref),
1494 EXTRACT_32BITS(&sfp->fs_dtpref));
1497 EXTRACT_32BITS(&sfp->fs_rtmult),
1498 EXTRACT_32BITS(&sfp
[all...]
/netbsd-6-1-5-RELEASE/sys/nfs/
H A Dnfs_vfsops.c174 struct nfs_statfs *sfp; local
192 sfp = (struct nfs_statfs *)0;
215 nfsm_dissect(sfp, struct nfs_statfs *, NFSX_STATFS(v3));
220 tquad = fxdr_hyper(&sfp->sf_tbytes);
222 tquad = fxdr_hyper(&sfp->sf_fbytes);
224 tquad = fxdr_hyper(&sfp->sf_abytes);
231 tquad = fxdr_hyper(&sfp->sf_tfiles);
233 tquad = fxdr_hyper(&sfp->sf_ffiles);
240 sbp->f_frsize = fxdr_unsigned(int32_t, sfp->sf_bsize);
241 sbp->f_blocks = fxdr_unsigned(int32_t, sfp
[all...]
H A Dnfs_serv.c3305 struct nfs_statfs *sfp; local
3337 nfsm_build(sfp, struct nfs_statfs *, NFSX_STATFS(v3));
3340 txdr_hyper(tval, &sfp->sf_tbytes);
3342 txdr_hyper(tval, &sfp->sf_fbytes);
3344 txdr_hyper(tval, &sfp->sf_abytes);
3346 txdr_hyper(tval, &sfp->sf_tfiles);
3348 txdr_hyper(tval, &sfp->sf_ffiles);
3349 txdr_hyper(tval, &sfp->sf_afiles);
3350 sfp->sf_invarsec = 0;
3352 sfp
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/config/soft-fp/
H A Dsoft-fp.h38 #include <sfp-machine.h>
40 #include "sfp-machine.h"
43 /* Allow sfp-machine to have its own byte order definitions. */
48 #error "endianness not defined by sfp-machine.h"
106 * sfp-machine may override this and e.g.
/netbsd-6-1-5-RELEASE/sys/compat/linux/arch/amd64/
H A Dlinux_machdep.c136 struct linux_rt_sigframe *sfp, sigframe; local
171 sfp = (struct linux_rt_sigframe *)sp;
262 tf->tf_rsi = (long)&sfp->info;
263 tf->tf_rdx = (long)&sfp->uc;
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.dg/fixed-point/
H A Dcast-bad.c50 (short _Fract []) sfp; /* { dg-error "cast specifies array type" } */
83 (short _Fract ()) sfp; /* { dg-error "cast specifies function type" } */
/netbsd-6-1-5-RELEASE/sys/dev/ieee1394/
H A Dsbp.c1731 struct fw_pkt *sfp; local
1995 sfp = (struct fw_pkt *)xfer->send.buf;
1996 sfp->mode.wres.dst = rfp->mode.wreqb.src;
1997 xfer->dst = sfp->mode.wres.dst;
2001 sfp->mode.wres.tlrt = rfp->mode.wreqb.tlrt;
2002 sfp->mode.wres.tcode = FWTCODE_WRES;
2003 sfp->mode.wres.rtcode = 0;
2004 sfp->mode.wres.pri = 0;
/netbsd-6-1-5-RELEASE/sys/compat/linux/arch/powerpc/
H A Dlinux_machdep.c272 syscallarg(struct linux_rt_sigframe *) sfp;
287 scp = SCARG(uap, sfp);
H A Dlinux_syscallargs.h580 syscallarg(struct linux_rt_sigframe *) sfp; member in struct:linux_sys_rt_sigreturn_args
/netbsd-6-1-5-RELEASE/sys/arch/sparc/sparc/
H A Dmachdep.c1110 struct frame *fp = getfp(), *sfp; local
1112 sfp = fp;
1115 while (fp && ((u_long)fp >> PGSHIFT) == ((u_long)sfp >> PGSHIFT)) {
/netbsd-6-1-5-RELEASE/sys/arch/sparc64/sparc64/
H A Dmachdep.c924 struct frame32 *fp = (struct frame32 *)getfp(), *sfp; local
929 sfp = fp;
932 while (fp && ((u_long)fp >> PGSHIFT) == ((u_long)sfp >> PGSHIFT)) {
/netbsd-6-1-5-RELEASE/sys/dev/pci/ixgbe/
H A Dixgbe.c2704 bool sfp, negotiate; local
2706 sfp = ixgbe_is_sfp(hw);
2708 if (sfp) {

Completed in 294 milliseconds