Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/less/
Dregexp.c300 reg(paren, flagp) in reg() argument
302 int *flagp;
310 *flagp = HASWIDTH; /* Tentatively. */
331 *flagp &= ~HASWIDTH;
332 *flagp |= flags&SPSTART;
340 *flagp &= ~HASWIDTH;
341 *flagp |= flags&SPSTART;
372 regbranch(flagp) in regbranch() argument
373 int *flagp; in regbranch()
380 *flagp = WORST; /* Tentatively. */
[all …]
/freebsd-12-stable/bin/ed/
Dsub.c41 extract_subst_tail(int *flagp, long *np) in extract_subst_tail() argument
45 *flagp = *np = 0; in extract_subst_tail()
48 *flagp = GPR; in extract_subst_tail()
53 *flagp = GPR; in extract_subst_tail()
62 *flagp = GSG; in extract_subst_tail()
/freebsd-12-stable/lib/msun/amd64/
Dfenv.c56 fesetexceptflag(const fexcept_t *flagp, int excepts) in fesetexceptflag() argument
62 env.__x87.__status |= *flagp & excepts; in fesetexceptflag()
67 env.__mxcsr |= *flagp & excepts; in fesetexceptflag()
/freebsd-12-stable/lib/msun/i387/
Dfenv.c98 fesetexceptflag(const fexcept_t *flagp, int excepts) in fesetexceptflag() argument
105 env.__status |= *flagp & excepts; in fesetexceptflag()
111 mxcsr |= *flagp & excepts; in fesetexceptflag()
/freebsd-12-stable/contrib/llvm-project/libcxx/include/
Dcfenv41 int fegetexceptflag(fexcept_t* flagp, int excepts);
43 int fesetexceptflag(const fexcept_t* flagp, int excepts);
/freebsd-12-stable/sbin/mount/
Dgetmntopts.c57 getmntopts(const char *options, const struct mntopt *m0, int *flagp, in getmntopts() argument
95 thisflagp = m->m_altloc ? altflagp : flagp; in getmntopts()
/freebsd-12-stable/sys/x86/x86/
Dmptable.c1155 int error, *flagp, flags, type; in mptable_host_res_handler() local
1210 flagp = &args->sc->sc_decodes_isa_io; in mptable_host_res_handler()
1214 flagp = &args->sc->sc_decodes_vga_io; in mptable_host_res_handler()
1223 if (*flagp != 0) in mptable_host_res_handler()
1229 *flagp = 1; in mptable_host_res_handler()
1235 *flagp = -1; in mptable_host_res_handler()
/freebsd-12-stable/sys/fs/nfsclient/
Dnfs_clport.c781 struct nfsvattr *nap, int *flagp, int *wccflagp, void *stuff) in nfscl_wcc_data() argument
791 *flagp = 0; in nfscl_wcc_data()
804 error = nfscl_postop_attr(nd, nap, flagp, stuff); in nfscl_wcc_data()
805 if (wccflagp != NULL && *flagp == 0) in nfscl_wcc_data()
/freebsd-12-stable/sys/kern/
Dvfs_vnops.c180 vn_open(struct nameidata *ndp, int *flagp, int cmode, struct file *fp) in vn_open() argument
184 return (vn_open_cred(ndp, flagp, cmode, 0, td->td_ucred, fp)); in vn_open()
211 vn_open_cred(struct nameidata *ndp, int *flagp, int cmode, u_int vn_open_flags, in vn_open_cred() argument
222 fmode = *flagp; in vn_open_cred()
302 *flagp = fmode; in vn_open_cred()
307 *flagp = fmode; in vn_open_cred()
/freebsd-12-stable/sys/fs/nfs/
Dnfs_commonsubs.c4466 newnfs_sndlock(int *flagp) in newnfs_sndlock() argument
4471 while (*flagp & NFSR_SNDLOCK) { in newnfs_sndlock()
4472 *flagp |= NFSR_WANTSND; in newnfs_sndlock()
4475 (void) nfsmsleep((caddr_t)flagp, NFSSOCKMUTEXPTR, in newnfs_sndlock()
4478 *flagp |= NFSR_SNDLOCK; in newnfs_sndlock()
4487 newnfs_sndunlock(int *flagp) in newnfs_sndunlock() argument
4491 if ((*flagp & NFSR_SNDLOCK) == 0) in newnfs_sndunlock()
4493 *flagp &= ~NFSR_SNDLOCK; in newnfs_sndunlock()
4494 if (*flagp & NFSR_WANTSND) { in newnfs_sndunlock()
4495 *flagp &= ~NFSR_WANTSND; in newnfs_sndunlock()
[all …]
/freebsd-12-stable/sys/sys/
Dvnode.h680 int vn_open(struct nameidata *ndp, int *flagp, int cmode, struct file *fp);
681 int vn_open_cred(struct nameidata *ndp, int *flagp, int cmode,