Searched refs:fl (Results 26 - 50 of 173) sorted by relevance

1234567

/netbsd-current/sys/fs/nfs/nlm/
H A Dnlm_advlock.c80 struct vnode *vp, int op, struct flock *fl, int flags,
84 struct vnode *vp, int op, struct flock *fl, int flags,
88 struct vnode *vp, int op, struct flock *fl, int flags,
93 static int nlm_init_lock(struct flock *fl, int flags, int svid,
197 nlm_advlock_internal(struct vnode *vp, void *id, int op, struct flock *fl, argument
272 KASSERT(fl->l_start == 0 && fl->l_len == 0,
288 svid = fl->l_pid;
296 && fl->l_type == F_WRLCK) {
309 vp, F_SETLK, fl, flag
404 nlm_set_creds_for_lock(struct thread *td, struct flock *fl) argument
453 nlm_reclaim_free_lock(struct vnode *vp, struct flock *fl, void *arg) argument
490 nlm_client_recover_lock(struct vnode *vp, struct flock *fl, void *arg) argument
697 nlm_record_lock(struct vnode *vp, int op, struct flock *fl, int svid, int sysid, off_t size) argument
760 nlm_setlock(struct nlm_host *host, struct rpc_callextra *ext, rpcvers_t vers, struct timeval *timo, int retries, struct vnode *vp, int op, struct flock *fl, int flags, int svid, size_t fhlen, void *fh, off_t size, bool_t reclaim) argument
959 nlm_clearlock(struct nlm_host *host, struct rpc_callextra *ext, rpcvers_t vers, struct timeval *timo, int retries, struct vnode *vp, int op, struct flock *fl, int flags, int svid, size_t fhlen, void *fh, off_t size) argument
1034 nlm_getlock(struct nlm_host *host, struct rpc_callextra *ext, rpcvers_t vers, struct timeval *timo, int retries, struct vnode *vp, int op, struct flock *fl, int flags, int svid, size_t fhlen, void *fh, off_t size) argument
1223 nlm_init_lock(struct flock *fl, int flags, int svid, rpcvers_t vers, size_t fhlen, void *fh, off_t size, struct nlm4_lock *lock, char oh_space[32]) argument
[all...]
/netbsd-current/external/bsd/ipf/dist/tools/
H A Dipf.c359 int fl = 0, rem; local
365 fl = 0;
367 fl = 1;
369 fl = atoi(arg);
370 rem = fl;
389 fl = -1;
391 fl = obj.ipfo_retval;
394 if (ioctl(fd, SIOCIPFFL, &fl) == -1) {
404 printf("%d state entries removed\n", fl);
419 if (ioctl(fd, SIOCIPFFA, &fl)
[all...]
/netbsd-current/sys/uvm/
H A Duvm_page.h449 unsigned fl = __SHIFTOUT(pg->phys_addr, UVM_PHYSADDR_FREELIST); local
450 KASSERT(fl == (unsigned)uvm_page_lookup_freelist(pg));
451 return fl;
461 uvm_page_set_freelist(struct vm_page *pg, unsigned fl) argument
463 KASSERT(fl < 32);
465 pg->phys_addr |= __SHIFTIN(fl, UVM_PHYSADDR_FREELIST);
/netbsd-current/usr.sbin/sysinst/arch/i386/
H A Dmd.c543 int i, names, fl, ofl; local
580 fl = 0;
586 fl |= ACTIVE_FOUND;
588 fl |= NETBSD_ACTIVE;
604 fl |= MBR_BS_EXTLBA;
606 fl |= NETBSD_NAMED;
608 fl |= ACTIVE_NAMED;
613 if (!(fl & ACTIVE_FOUND))
614 fl |= NETBSD_ACTIVE;
615 if (fl
[all...]
/netbsd-current/games/trek/
H A Dwarp.c52 ** only in the flag 'fl'. It is also used for automatic
53 ** emergency override mode, when 'fl' is < 0 and 'c' and 'd'
54 ** are the course and distance to be moved. If 'fl' >= 0,
65 dowarp(int fl) argument
72 warp(fl, c, d);
76 warp(int fl, int c, double d) argument
135 Move.time = move(fl, course, time, speed);
H A Dklmove.c52 ** The flag `fl' is zero before an attack, one after an attack,
68 klmove(int fl) argument
83 printf("klmove: fl = %d, Etc.nkling = %d\n", fl, Etc.nkling);
88 if (fl)
90 if (ranf(i) >= Param.moveprob[2 * Move.newquad + fl])
94 motion *= k->avgdist * Param.movefac[2 * Move.newquad + fl];
/netbsd-current/external/bsd/wpa/dist/wpa_supplicant/wpa_gui-qt4/
H A Dscanresults.h23 bool modal = false, Qt::WindowFlags fl = 0);
H A Deventhistory.h43 bool modal = false, Qt::WindowFlags fl = 0);
/netbsd-current/external/mit/isl/dist/include/isl/
H A Darg.h152 #define ISL_ARG_PHANTOM_USER_CHOICE_F(s,l,c,setter,d,h,fl) { \
158 .flags = fl, \
171 #define _ISL_ARG_BOOL_F(o,s,l,setter,d,h,fl) { \
177 .flags = fl, \
180 #define ISL_ARG_BOOL_F(st,f,s,l,d,h,fl) \
181 _ISL_ARG_BOOL_F(offsetof(st, f),s,l,NULL,d,h,fl)
184 #define ISL_ARG_PHANTOM_BOOL_F(s,l,setter,h,fl) \
185 _ISL_ARG_BOOL_F(ISL_ARG_OFFSET_NONE,s,l,setter,0,h,fl)
188 #define ISL_ARG_INT_F(st,f,s,l,a,d,h,fl) { \
195 .flags = fl, \
[all...]
/netbsd-current/sys/kern/
H A Dvfs_lockf.c757 lf_getlock(struct lockf *lock, struct flock *fl) argument
767 fl->l_type = block->lf_type;
768 fl->l_whence = SEEK_SET;
769 fl->l_start = block->lf_start;
771 fl->l_len = 0;
773 fl->l_len = block->lf_end - block->lf_start + 1;
775 fl->l_pid = ((struct proc *)block->lf_id)->p_pid;
777 fl->l_pid = -1;
779 fl->l_type = F_UNLCK;
790 struct flock *fl local
[all...]
/netbsd-current/tests/net/net/
H A Dt_tcp.c76 int ok, fl; local
186 fl = fcntl(srvr, F_GETFL, 0);
187 if (fl == -1)
190 ok = fcntl(srvr, F_SETFL, fl & ~O_NONBLOCK);
223 fl = fcntl(acpt, F_GETFL, 0);
224 if (fl == -1)
228 if (fl != (O_RDWR|O_NONBLOCK))
229 FAIL("fl 0x%x != 0x%x\n", fl, O_RDWR|O_NONBLOCK);
230 ok = fcntl(acpt, F_SETFL, fl
[all...]
/netbsd-current/external/gpl3/gcc/dist/libphobos/src/std/experimental/allocator/building_blocks/
H A Dfree_list.d450 FreeList!(StatsCollectorWrapper, 16, 16) fl;
451 auto buf1 = fl.allocate(16);
452 auto buf2 = fl.allocate(16);
453 assert(fl.parent.bytesUsed == 32);
456 fl.deallocate(buf1);
457 assert(fl.parent.bytesUsed == 32);
460 destroy(fl);
466 FreeList!(GCAllocator, 0, 8) fl;
467 assert(fl.root is null);
468 auto b1 = fl
[all...]
/netbsd-current/sys/dev/pci/cxgb/
H A Dcxgb_sge.c550 __refill_fl(adapter_t *adap, struct sge_fl *fl) argument
552 refill_fl(adap, fl, uimin(16U, fl->size - fl->credits));
693 refill_rx = ((qs->fl[0].credits < qs->fl[0].size) ||
694 (qs->fl[1].credits < qs->fl[1].size));
833 if (qs->fl[0].credits < qs->fl[
2205 struct sge_fl *fl = (len_cq & F_RSPD_FLQ) ? &qs->fl[1] : &qs->fl[0]; local
2272 struct sge_fl *fl = (len_cq & F_RSPD_FLQ) ? &qs->fl[1] : &qs->fl[0]; local
[all...]
/netbsd-current/tests/kernel/
H A Dt_lockf.c85 struct flock fl; local
87 fl.l_start = random_uint32() % filesize;
88 fl.l_len = random_uint32() % filesize;
91 fl.l_type = F_RDLCK;
94 fl.l_type = F_WRLCK;
97 fl.l_type = F_UNLCK;
100 fl.l_whence = SEEK_SET;
102 (void)fcntl(fd, F_SETLKW, &fl);
/netbsd-current/external/gpl3/gdb.old/dist/ld/testsuite/ld-pe/
H A Dpr19803.d12 .*\(sec 1\)\(fl 0x00\)\(ty 0\)\(scl 2\) \(nx 0\) 0x0+000 .*Startup.*
/netbsd-current/sys/compat/ultrix/
H A Dultrix_misc.c688 ultrix_to_bsd_flock(struct ultrix_flock *ufl, struct flock *fl) argument
691 memset(fl, 0, sizeof(*fl));
693 fl->l_start = ufl->l_start;
694 fl->l_len = ufl->l_len;
695 fl->l_pid = ufl->l_pid;
696 fl->l_whence = ufl->l_whence;
700 fl->l_type = F_RDLCK;
703 fl->l_type = F_WRLCK;
706 fl
716 bsd_to_ultrix_flock(struct flock *fl, struct ultrix_flock *ufl) argument
744 struct flock fl; local
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/libcpp/
H A Dmakeucnid.c64 unsigned fl = 0; local
75 fl = C99;
77 fl = C99|N99;
79 fl = CXX;
81 fl = C11;
83 fl = C11|N11;
111 flags[start++] |= fl;
/netbsd-current/external/bsd/pcc/dist/pcc/cc/ccom/
H A Dsoftfloat.c294 SF fl, flexp, exp5; local
340 fl = soft_cast(mant, INT);
348 fl = soft_div(fl, flexp);
350 fl = soft_mul(fl, flexp);
352 DEXPSET(fl, DEXP(fl) + negexp*bexp);
354 p->n_dcon = fl;
/netbsd-current/external/bsd/pcc/dist/pcc/cc/cxxcom/
H A Dsoftfloat.c294 SF fl, flexp, exp5; local
340 fl = soft_cast(mant, INT);
348 fl = soft_div(fl, flexp);
350 fl = soft_mul(fl, flexp);
352 DEXPSET(fl, DEXP(fl) + negexp*bexp);
354 p->n_dcon = fl;
/netbsd-current/external/gpl3/gcc/dist/libgcc/config/m68k/
H A Dfpgnulib.c112 union float_long fl;
114 fl.f = a;
115 if (EXP(fl.l) == EXP(~0u) && (MANT(fl.l) & ~HIDDEN) != 0)
117 fl.f = b;
118 if (EXP(fl.l) == EXP(~0u) && (MANT(fl.l) & ~HIDDEN) != 0)
279 register union float_long fl;
288 fl.l = SIGND(dl1);
289 return fl
111 union float_long fl; local
278 register union float_long fl; local
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/libgcc/config/m68k/
H A Dfpgnulib.c112 union float_long fl;
114 fl.f = a;
115 if (EXP(fl.l) == EXP(~0u) && (MANT(fl.l) & ~HIDDEN) != 0)
117 fl.f = b;
118 if (EXP(fl.l) == EXP(~0u) && (MANT(fl.l) & ~HIDDEN) != 0)
279 register union float_long fl;
288 fl.l = SIGND(dl1);
289 return fl
111 union float_long fl; local
278 register union float_long fl; local
[all...]
/netbsd-current/bin/ps/
H A Dkeyword.c80 #define LVAR(n1, n2, fl, of, ty, fm) \
81 { .name = n1, .header = n2, .flag = (fl) | LWP, .oproc = pvar, \
83 #define PVAR(n1, n2, fl, of, ty, fm) \
84 { .name = n1, .header = n2, .flag = (fl) | 0, .oproc = pvar, \
86 #define PUVAR(n1, n2, fl, of, ty, fm) \
87 { .name = n1, .header = n2, .flag = (fl) | UAREA, .oproc = pvar, \
89 #define VAR3(n1, n2, fl) \
90 { .name = n1, .header = n2, .flag = fl }
91 #define VAR4(n1, n2, fl, op) \
92 { .name = n1, .header = n2, .flag = fl,
[all...]
/netbsd-current/tests/lib/librumpclient/
H A Dt_fd.c108 int fl; local
120 RL(fl = rump_sys_fcntl(ls, F_GETFL));
121 RL(rump_sys_fcntl(ls, F_SETFL, fl | O_ASYNC));
/netbsd-current/share/man/man4/man4.vax/
H A DMakefile8 fl.4 \
/netbsd-current/sys/rump/librump/rumpkern/arch/generic/
H A Drump_generic_pmap.c43 pmap_kenter_pa(vaddr_t va, paddr_t pa, vm_prot_t prot, u_int fl) argument

Completed in 225 milliseconds

1234567