Searched refs:fl (Results 76 - 100 of 173) sorted by relevance

1234567

/netbsd-current/sbin/rndctl/
H A Drndctl.c449 strflags(uint32_t totalbits, u_int32_t fl) argument
454 if (totalbits > 0 && (fl & RND_FLAG_NO_ESTIMATE) == 0)
457 if ((fl & RND_FLAG_NO_COLLECT) == 0)
460 if (fl & RND_FLAG_COLLECT_VALUE)
462 if (fl & RND_FLAG_COLLECT_TIME)
/netbsd-current/crypto/external/cpl/trousers/dist/src/tcs/ps/
H A Dtcsps.c55 static struct flock fl; variable in typeref:struct:flock
65 fl.l_type = F_WRLCK;
66 if ((rc = fcntl(system_ps_fd, F_SETLKW, &fl))) {
82 fl.l_type = F_WRLCK;
83 if ((rc = fcntl(system_ps_fd, F_SETLKW, &fl))) {
98 fl.l_type = F_UNLCK;
99 if ((rc = fcntl(fd, F_SETLKW, &fl))) {
/netbsd-current/external/bsd/mdocml/dist/
H A Dmdoc_argv.c419 enum argsflag fl; local
421 fl = tok == TOKEN_NONE ? ARGSFL_NONE : mdocargs[tok - MDOC_Dd].flags;
435 fl = ARGSFL_TABSEP;
440 return args(mdoc, line, pos, buf, fl, v);
445 char *buf, enum argsflag fl, char **v)
464 if (fl == ARGSFL_DELIM && args_checkpunct(buf, *pos))
472 if (fl == ARGSFL_TABSEP) {
444 args(struct roff_man *mdoc, int line, int *pos, char *buf, enum argsflag fl, char **v) argument
/netbsd-current/sys/external/bsd/drm2/dist/drm/i915/selftests/
H A Di915_vma.c264 #define VALID(sz, fl) { .size = (sz), .flags = (fl), .assert = assert_pin_valid, .string = #sz ", " #fl ", (valid) " }
265 #define __INVALID(sz, fl, check, eval) { .size = (sz), .flags = (fl), .assert = (check), .string = #sz ", " #fl ", (invalid " #eval ")" }
266 #define INVALID(sz, fl) __INVALID(sz, fl, assert_pin_einval, EINVAL)
267 #define NOSPACE(sz, fl) __INVALID(sz, fl, assert_pin_enosp
[all...]
/netbsd-current/external/gpl3/gcc/dist/contrib/header-tools/
H A Dgcc-order-headers374 fl = open(fn,"w")
376 fl.write (line)
377 fl.close ()
/netbsd-current/external/gpl3/gcc.old/dist/contrib/header-tools/
H A Dgcc-order-headers374 fl = open(fn,"w")
376 fl.write (line)
377 fl.close ()
/netbsd-current/sys/arch/emips/ebus/
H A Dicap_ebus.c264 uint32_t fl; local
305 fl = (bp->b_flags & B_READ) ? ICAPS_F_RECV : ICAPS_F_XMIT;
341 sc->sc_dp->SizeAndFlags = fl | count;
/netbsd-current/sys/dev/mca/
H A Desp_mca.c358 int fl; local
370 fl = (datain) ? BUS_DMA_READ : BUS_DMA_WRITE;
373 *len, NULL, BUS_DMA_STREAMING|fl))) {
/netbsd-current/tests/usr.bin/xlint/lint1/
H A Ddecl.c300 } fl; member in struct:foo
/netbsd-current/libexec/ftpd/
H A Dconf.c894 struct flock fl; local
900 fl.l_start = 0;
901 fl.l_len = 0;
902 fl.l_pid = 0;
903 fl.l_type = F_WRLCK;
904 fl.l_whence = SEEK_SET;
908 if (fcntl(fd, F_SETLK, &fl) == -1)
950 fl.l_type = F_UNLCK;
951 (void)fcntl(fd, F_SETLK, &fl);
/netbsd-current/sys/dev/usb/
H A Dusbdi.h228 #define usb_init_task(t, f, a, fl) ((t)->fun = (f), (t)->arg = (a), (t)->queue = USB_NUM_TASKQS, (t)->flags = (fl))
/netbsd-current/sys/compat/linux/common/
H A Dlinux_file.c223 int error, fl; local
226 fl = linux_to_bsd_ioflags(SCARG(uap, flags));
229 SCARG(&boa, flags) = fl;
235 linux_open_ctty(l, fl, *retval);
248 int error, fl; local
251 fl = linux_to_bsd_ioflags(SCARG(uap, flags));
255 SCARG(&boa, oflags) = fl;
261 linux_open_ctty(l, fl, *retval);
/netbsd-current/sbin/newfs/
H A Dnewfs.c491 int fl; local
493 fl = O_RDONLY;
496 fl = O_RDWR | O_CREAT;
498 fl = O_RDWR;
500 fsi = open(special, fl, 0777);
/netbsd-current/crypto/external/cpl/trousers/dist/src/tspi/ps/
H A Dtspps.c57 static struct flock fl; variable in typeref:struct:flock
184 fl.l_type = F_WRLCK;
185 if ((rc = fcntl(user_ps_fd, F_SETLKW, &fl))) {
208 fl.l_type = F_WRLCK;
209 if ((rc = fcntl(user_ps_fd, F_SETLKW, &fl))) {
231 fl.l_type = F_UNLCK;
232 if ((rc = fcntl(fd, F_SETLKW, &fl))) {
/netbsd-current/external/bsd/ppp/usr.sbin/pppd/
H A Dtdb.c99 struct flock fl;
105 fl.l_type = set==LOCK_SET?rw_type:F_UNLCK;
106 fl.l_whence = SEEK_SET;
107 fl.l_start = offset;
108 fl.l_len = 1;
109 fl.l_pid = 0;
111 if (fcntl(tdb->fd, lck_type, &fl) != 0) {
/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/asan/
H A Dasan_allocator.cc408 Flags &fl = *flags(); local
521 *shadow = fl.poison_partial ? (size & (SHADOW_GRANULARITY - 1)) : 0;
534 if (can_fill && fl.max_malloc_fill_size) {
535 uptr fill_size = Min(size, (uptr)fl.max_malloc_fill_size);
536 REAL(memset)(res, fl.malloc_fill_byte, fill_size);
576 Flags &fl = *flags(); local
577 if (fl.max_free_fill_size > 0) {
582 size_to_fill = Min(size_to_fill, (uptr)fl.max_free_fill_size);
583 REAL(memset)((void *)scribble_start, fl.free_fill_byte, size_to_fill);
/netbsd-current/external/gpl3/gcc.old/dist/libsanitizer/asan/
H A Dasan_allocator.cc406 Flags &fl = *flags(); local
519 *shadow = fl.poison_partial ? (size & (SHADOW_GRANULARITY - 1)) : 0;
532 if (can_fill && fl.max_malloc_fill_size) {
533 uptr fill_size = Min(size, (uptr)fl.max_malloc_fill_size);
534 REAL(memset)(res, fl.malloc_fill_byte, fill_size);
574 Flags &fl = *flags(); local
575 if (fl.max_free_fill_size > 0) {
580 size_to_fill = Min(size_to_fill, (uptr)fl.max_free_fill_size);
581 REAL(memset)((void *)scribble_start, fl.free_fill_byte, size_to_fill);
/netbsd-current/external/gpl3/gcc/dist/libsanitizer/asan/
H A Dasan_allocator.cpp492 Flags &fl = *flags(); local
583 *shadow = fl.poison_partial ? (size & (SHADOW_GRANULARITY - 1)) : 0;
596 if (can_fill && fl.max_malloc_fill_size) {
597 uptr fill_size = Min(size, (uptr)fl.max_malloc_fill_size);
598 REAL(memset)(res, fl.malloc_fill_byte, fill_size);
641 Flags &fl = *flags(); local
642 if (fl.max_free_fill_size > 0) {
647 size_to_fill = Min(size_to_fill, (uptr)fl.max_free_fill_size);
648 REAL(memset)((void *)scribble_start, fl.free_fill_byte, size_to_fill);
/netbsd-current/external/bsd/wpa/dist/wpa_supplicant/wpa_gui-qt4/
H A Dwpagui.h52 Qt::WindowFlags fl = 0);
/netbsd-current/external/gpl2/xcvs/dist/src/
H A Drecurse.c1291 List *fl; local
1304 fl = n->data;
1305 addlist (&fl, file);
1306 n->data = fl;
/netbsd-current/external/bsd/dhcpcd/dist/src/
H A Darp.c240 size_t fl = bpf_frame_header_len(ifp), falen; local
253 if (fl != 0) {
262 data += fl;
263 len -= fl;
/netbsd-current/sys/dev/pci/
H A Damr.c547 int fl; local
549 fl = amr->amr_flags;
551 if ((fl & AMRF_THREAD) != 0) {
562 if ((fl & AMRF_CCBS) != 0) {
568 if ((fl & AMRF_ENQBUF) != 0)
570 if ((fl & AMRF_DMA_LOAD) != 0)
572 if ((fl & AMRF_DMA_MAP) != 0)
575 if ((fl & AMRF_DMA_ALLOC) != 0)
577 if ((fl & AMRF_DMA_CREATE) != 0)
579 if ((fl
[all...]
/netbsd-current/external/cddl/osnet/dist/uts/common/fs/zfs/
H A Dzfs_replay.c869 flock64_t fl; local
878 bzero(&fl, sizeof (fl));
879 fl.l_type = F_WRLCK;
880 fl.l_whence = 0;
881 fl.l_start = lr->lr_offset;
882 fl.l_len = lr->lr_length;
884 error = VOP_SPACE(ZTOV(zp), F_FREESP, &fl, FWRITE | FOFFMAX,
/netbsd-current/external/ibm-public/postfix/dist/src/util/
H A Dvstream.h137 #define vstream_fstat(vp, fl) ((vp)->buf.flags & (fl))
/netbsd-current/external/bsd/openldap/dist/servers/slapd/overlays/
H A Dtranslucent.c1106 Filter *fl, *fr; local
1123 fl = ov->local ? trans_filter_dup( op, op->ors_filter, ov->local ) : NULL;
1138 if ( fr || !fl ) {
1155 if ( fl ) {
1163 if ( fl ) {
1171 if ( fl && !rc ) {
1173 op->ors_filter = fl;
1174 filter2bv_x( op, fl, &op->ors_filterstr );
1211 if ( fl )
1212 trans_filter_free( op, fl );
[all...]

Completed in 503 milliseconds

1234567