Home
last modified time | relevance | path

Searched refs:flagp (Results 1 – 11 of 11) sorted by relevance

/freebsd/contrib/less/
H A Dregexp.c299 reg(int paren, int *flagp)
307 *flagp = HASWIDTH; /* Tentatively. */
328 *flagp &= ~HASWIDTH;
329 *flagp |= flags&SPSTART;
337 *flagp &= ~HASWIDTH;
338 *flagp |= flags&SPSTART;
369 regbranch(int *flagp)
376 *flagp = WORST; /* Tentatively. */
384 *flagp |= flags&HASWIDTH;
386 *flagp |
300 reg(paren,flagp) reg() argument
372 regbranch(flagp) regbranch() argument
411 regpiece(flagp) regpiece() argument
475 regatom(flagp) regatom() argument
[all...]
/freebsd/bin/ed/
H A Dsub.c39 extract_subst_tail(int *flagp, long *np) in extract_subst_tail() argument
43 *flagp = *np = 0; in extract_subst_tail()
46 *flagp = GPR; in extract_subst_tail()
51 *flagp = GPR; in extract_subst_tail()
60 *flagp = GSG; in extract_subst_tail()
/freebsd/lib/msun/amd64/
H A Dfenv.c53 fesetexceptflag(const fexcept_t *flagp, int excepts) in fesetexceptflag() argument
59 env.__x87.__status |= *flagp & excepts; in fesetexceptflag()
64 env.__mxcsr |= *flagp & excepts; in fesetexceptflag()
/freebsd/lib/msun/i387/
H A Dfenv.c95 fesetexceptflag(const fexcept_t *flagp, int excepts) in fesetexceptflag() argument
102 env.__status |= *flagp & excepts; in fesetexceptflag()
108 mxcsr |= *flagp & excepts; in fesetexceptflag()
/freebsd/contrib/llvm-project/libcxx/include/
H A Dcfenv41 int fegetexceptflag(fexcept_t* flagp, int excepts);
43 int fesetexceptflag(const fexcept_t* flagp, int excepts);
/freebsd/sys/x86/x86/
H A Dmptable.c1190 int error, *flagp, flags, type; in mptable_host_res_handler() local
1245 flagp = &args->sc->sc_decodes_isa_io; in mptable_host_res_handler()
1249 flagp = &args->sc->sc_decodes_vga_io; in mptable_host_res_handler()
1258 if (*flagp != 0) in mptable_host_res_handler()
1264 *flagp = 1; in mptable_host_res_handler()
1270 *flagp = -1; in mptable_host_res_handler()
/freebsd/sbin/mount/
H A Dgetmntopts.c50 getmntopts(const char *options, const struct mntopt *m0, int *flagp, in getmntopts() argument
88 thisflagp = m->m_altloc ? altflagp : flagp; in getmntopts()
/freebsd/sys/fs/nfsclient/
H A Dnfs_clport.c801 struct nfsvattr *nap, int *flagp, int *wccflagp, uint64_t *repsizep) in nfscl_wcc_data() argument
811 *flagp = 0; in nfscl_wcc_data()
824 error = nfscl_postop_attr(nd, nap, flagp); in nfscl_wcc_data()
825 if (wccflagp != NULL && *flagp == 0) in nfscl_wcc_data()
/freebsd/sys/fs/nfs/
H A Dnfs_commonsubs.c4659 newnfs_sndlock(int *flagp) in newnfs_sndlock() argument
4664 while (*flagp & NFSR_SNDLOCK) { in newnfs_sndlock()
4665 *flagp |= NFSR_WANTSND; in newnfs_sndlock()
4668 (void) nfsmsleep((caddr_t)flagp, NFSSOCKMUTEXPTR, in newnfs_sndlock()
4671 *flagp |= NFSR_SNDLOCK; in newnfs_sndlock()
4680 newnfs_sndunlock(int *flagp) in newnfs_sndunlock() argument
4684 if ((*flagp & NFSR_SNDLOCK) == 0) in newnfs_sndunlock()
4686 *flagp &= ~NFSR_SNDLOCK; in newnfs_sndunlock()
4687 if (*flagp & NFSR_WANTSND) { in newnfs_sndunlock()
4688 *flagp &= ~NFSR_WANTSND; in newnfs_sndunlock()
[all …]
/freebsd/sys/kern/
H A Dvfs_vnops.c190 vn_open(struct nameidata *ndp, int *flagp, int cmode, struct file *fp) in vn_open() argument
194 return (vn_open_cred(ndp, flagp, cmode, 0, td->td_ucred, fp)); in vn_open()
229 vn_open_cred(struct nameidata *ndp, int *flagp, int cmode, u_int vn_open_flags, in vn_open_cred() argument
241 fmode = *flagp; in vn_open_cred()
344 *flagp = fmode; in vn_open_cred()
349 *flagp = fmode; in vn_open_cred()
/freebsd/sys/sys/
H A Dvnode.h780 int vn_open(struct nameidata *ndp, int *flagp, int cmode, struct file *fp);
781 int vn_open_cred(struct nameidata *ndp, int *flagp, int cmode,