| /freebsd/crypto/openssl/Configurations/ |
| H A D | 50-nonstop.conf | 55 lflags => '-Wld="-set systype guardian"', 66 lflags => '-Weld="-set systype guardian"', 77 lflags => '-Wxld="-set systype guardian"', 87 lflags => '-Wld="-set systype oss"', 96 lflags => '-Weld="-set systype oss"', 105 lflags => '-Wxld="-set systype oss"', 125 lflags => '-Wxld="-set data_model lp64"', 132 lflags => '-Wld="-set floattype neutral_float"', 136 lflags => '-Wld="-set floattype tandem_float"', 141 lflags => '-Weld="-set floattype ieee_float"', [all …]
|
| H A D | 10-main.conf | 123 lflags => $wcelflag }; 207 lflags => add("-Wl,-map"), 299 lflags => add(threads("-mt")), 353 lflags => add(threads("-mt")), 629 lflags => add("-L/SYSLOG/PUB"), 1359 lflags => "-Wl,-bsvr4", 1672 lflags => add(combine(sub { vc_wince_info()->{lflags}; }, 1839 lflags => add("-Wl,-search_paths_first"), 1963 lflags => add("-L \$(WIND_BASE)/target/usr/lib/ppc/PPC32/common"), 1976 lflags => add("-L \$(WIND_BASE)/target/usr/lib/ppc/PPC32/sfcommon"), [all …]
|
| H A D | 50-win-hybridcrt.conf | 25 lflags => add(picker(debug => "/NODEFAULTLIB:libucrtd.lib /DEFAULTLIB:ucrtd.lib", 34 lflags => add(picker(debug => "/NODEFAULTLIB:libucrtd.lib /DEFAULTLIB:ucrtd.lib",
|
| H A D | 00-base-templates.conf | 8 lflags => "", 98 lflags =>
|
| H A D | 50-djgpp.conf | 12 lflags => add("-L/dev/env/WATT_ROOT/lib"),
|
| H A D | README.md | 84 lflags => Default flags used when linking apps, 322 {ld} $(CFLAGS) {lflags} {shared_ldflag} -o libfoo.so \ 326 {ld} $(CFLAGS) {lflags} {module_ldflags} -o libeng.so \ 330 {ld} $(CFLAGS) {lflags} -o app \ 341 "target" => "{cc}:{cflags}:{unistd}:{thread_cflag}:{sys_id}:{lflags}:
|
| /freebsd/usr.bin/morse/ |
| H A D | morse.c | 304 int ch, lflags; in main() local 375 lflags = fcntl(line, F_GETFL); in main() 376 lflags &= ~O_NONBLOCK; in main() 377 fcntl(line, F_SETFL, &lflags); in main() 378 ioctl(line, TIOCMGET, &lflags); in main() 379 lflags &= ~TIOCM_RTS; in main() 380 olflags = lflags; in main() 381 ioctl(line, TIOCMSET, &lflags); in main() 553 int duration, on, lflags; in ttyout() local 574 ioctl(line, TIOCMGET, &lflags); in ttyout() [all …]
|
| /freebsd/sys/contrib/openzfs/include/os/linux/spl/sys/ |
| H A D | kmem.h | 69 gfp_t lflags = __GFP_NOWARN; in kmem_flags_convert() local 72 lflags |= __GFP_COMP; in kmem_flags_convert() 75 lflags |= GFP_ATOMIC | __GFP_NORETRY; in kmem_flags_convert() 77 lflags |= GFP_KERNEL; in kmem_flags_convert() 79 lflags &= ~(__GFP_IO|__GFP_FS); in kmem_flags_convert() 83 lflags |= __GFP_HIGH; in kmem_flags_convert() 86 lflags |= __GFP_ZERO; in kmem_flags_convert() 88 return (lflags); in kmem_flags_convert()
|
| /freebsd/usr.bin/calendar/ |
| H A D | parsedata.c | 475 int lflags = *flags; in parsedaymonth() local 477 if ((lflags & F_YEAR) != 0) in parsedaymonth() 480 lflags &= ~F_YEAR; in parsedaymonth() 525 if (lflags == (F_MONTH | F_DAYOFMONTH)) { in parsedaymonth() 534 if (lflags == (F_MONTH | F_DAYOFMONTH | F_VARIABLE)) { in parsedaymonth() 543 if (lflags == (F_ALLMONTH | F_DAYOFMONTH)) { in parsedaymonth() 554 if (lflags == (F_ALLDAY | F_MONTH)) { in parsedaymonth() 565 if (lflags == (F_ALLMONTH | F_DAYOFWEEK)) { in parsedaymonth() 576 if (lflags == (F_DAYOFWEEK | F_VARIABLE)) { in parsedaymonth() 595 if (lflags == (F_DAYOFWEEK | F_MODIFIERINDEX | F_VARIABLE)) { in parsedaymonth() [all …]
|
| /freebsd/sys/contrib/openzfs/module/os/linux/spl/ |
| H A D | spl-kmem.c | 134 spl_kvmalloc(size_t size, gfp_t lflags) in spl_kvmalloc() argument 145 if ((lflags & GFP_KERNEL) == GFP_KERNEL) in spl_kvmalloc() 146 return (kvmalloc(size, lflags)); in spl_kvmalloc() 148 gfp_t kmalloc_lflags = lflags; in spl_kvmalloc() 187 (lflags & __GFP_RECLAIM) != __GFP_RECLAIM) { in spl_kvmalloc() 191 return (spl_vmalloc(size, lflags)); in spl_kvmalloc() 204 gfp_t lflags = kmem_flags_convert(flags); local 240 ptr = spl_vmalloc(size, lflags); 260 ptr = spl_kvmalloc(size, lflags); 262 ptr = kmalloc_node(size, lflags, node); [all …]
|
| H A D | spl-kmem-cache.c | 142 gfp_t lflags = kmem_flags_convert(flags | KM_VMEM); in kv_alloc() local 145 ptr = spl_vmalloc(size, lflags); in kv_alloc() 413 gfp_t lflags = kmem_flags_convert(flags); in spl_emergency_alloc() local 426 lflags |= __GFP_RECLAIMABLE; in spl_emergency_alloc() 427 ske = kmalloc(sizeof (*ske), lflags); in spl_emergency_alloc() 431 ske->ske_obj = __get_free_pages(lflags, order); in spl_emergency_alloc() 673 gfp_t lflags = kmem_flags_convert(KM_SLEEP); in spl_kmem_cache_create() local 685 skc = kzalloc(sizeof (*skc), lflags); in spl_kmem_cache_create() 691 skc->skc_name = kmalloc(skc->skc_name_size, lflags); in spl_kmem_cache_create()
|
| /freebsd/usr.sbin/rpc.lockd/ |
| H A D | lockd_lock.c | 497 enum LFLAGS lflags; in region_compare() local 505 lflags = LEDGE_INSIDE; in region_compare() 507 lflags = LEDGE_LEFT; in region_compare() 509 lflags = LEDGE_LBOUNDARY; in region_compare() 514 if (lflags == LEDGE_INSIDE) { in region_compare() 519 if (lflags == LEDGE_LEFT || lflags == LEDGE_LBOUNDARY) { in region_compare() 527 lflags = LEDGE_INSIDE; in region_compare() 529 lflags = LEDGE_LEFT; in region_compare() 531 lflags = LEDGE_LBOUNDARY; in region_compare() 548 if (lflags == LEDGE_INSIDE) { in region_compare() [all …]
|
| /freebsd/crypto/openssl/crypto/asn1/ |
| H A D | a_strex.c | 256 static int do_dump(unsigned long lflags, char_io *io_ch, void *arg, in do_dump() argument 270 if (!(lflags & ASN1_STRFLGS_DUMP_DER)) { in do_dump() 325 static int do_print_ex(char_io *io_ch, void *arg, unsigned long lflags, in do_print_ex() argument 334 flags = (unsigned short)(lflags & ESC_FLAGS); in do_print_ex() 340 if (lflags & ASN1_STRFLGS_SHOW_TYPE) { in do_print_ex() 354 if (lflags & ASN1_STRFLGS_DUMP_ALL) in do_print_ex() 357 else if (lflags & ASN1_STRFLGS_IGNORE_TYPE) in do_print_ex() 365 if ((type == -1) && !(lflags & ASN1_STRFLGS_DUMP_UNKNOWN)) in do_print_ex() 370 len = do_dump(lflags, io_ch, arg, str); in do_print_ex() 377 if (lflags & ASN1_STRFLGS_UTF8_CONVERT) { in do_print_ex()
|
| /freebsd/sys/dev/bnxt/bnxt_en/ |
| H A D | bnxt_txrx.c | 97 uint16_t lflags; in bnxt_isc_txd_encap() local 144 lflags = 0; in bnxt_isc_txd_encap() 154 lflags |= TX_BD_LONG_LFLAGS_LSO | in bnxt_isc_txd_encap() 159 lflags |= TX_BD_LONG_LFLAGS_IP_CHKSUM; in bnxt_isc_txd_encap() 164 lflags |= TX_BD_LONG_LFLAGS_TCP_UDP_CHKSUM; in bnxt_isc_txd_encap() 169 lflags |= TX_BD_LONG_LFLAGS_TCP_UDP_CHKSUM; in bnxt_isc_txd_encap() 174 tbdh->lflags = htole16(lflags); in bnxt_isc_txd_encap()
|
| /freebsd/crypto/krb5/src/plugins/kdb/db2/libdb2/test/ |
| H A D | dbtest.c | 543 int lflags, nflags; in dump() local 546 lflags = R_LAST; in dump() 549 lflags = R_FIRST; in dump() 552 for (;; lflags = nflags) in dump() 553 switch (dbp->seq(dbp, &key, &data, lflags)) { in dump() 632 sflags(int lflags) in sflags() argument 634 switch (lflags) { in sflags()
|
| /freebsd/contrib/ntp/ntpd/ |
| H A D | ntp_refclock.c | 954 u_int lflags /* line discipline flags */ in refclock_open() 992 if (!refclock_setup(fd, speed, lflags)) { in refclock_open() 996 if (!refclock_ioctl(fd, lflags)) { in refclock_open() 1024 u_int lflags /* line discipline flags */ in refclock_setup() 1063 if (lflags & LDISC_7O1) { in refclock_setup() 1087 if (ltemp & TIOCM_DSR && lflags & LDISC_REMOTE) in refclock_setup() 1096 if (lflags & LDISC_RAW) { in refclock_setup() 1101 if (lflags & LDISC_ECHO) in refclock_setup() 1174 if (lflags & LDISC_RAW) { in refclock_setup() 1228 u_int lflags /* lin 956 refclock_open(const sockaddr_u * srcadr,const char * dev,u_int speed,u_int lflags) refclock_open() argument 1026 refclock_setup(int fd,u_int speed,u_int lflags) refclock_setup() argument 1230 refclock_ioctl(int fd,u_int lflags) refclock_ioctl() argument [all...] |
| /freebsd/contrib/ncurses/ncurses/trace/ |
| H A D | lib_tracebits.c | 150 }, lflags[] = in _nc_trace_ttymode() local 169 8 + sizeof(lflags) + in _nc_trace_ttymode() 215 lookup_bits(buf, lflags, "lflags", tty->c_lflag); in _nc_trace_ttymode()
|
| /freebsd/usr.bin/lockf/ |
| H A D | lockf.c | 323 int lflags = LOCK_EX; in acquire_lock() local 329 lflags |= LOCK_NB; in acquire_lock() 330 if (flock(fd, lflags) == -1) { in acquire_lock()
|
| /freebsd/usr.sbin/rwhod/ |
| H A D | rwhod.c | 582 int mib[6], flags, lflags, len; in configure() local 638 lflags = IFF_BROADCAST | iff_flag; in configure() 640 lflags |= IFF_MULTICAST; in configure() 641 if ((flags & lflags) == 0) in configure()
|
| /freebsd/sys/compat/linux/ |
| H A D | linux_time.c | 713 l_int lflags, struct timespec *rqtp, struct timespec *rmtp) in linux_common_clock_nanosleep() argument 718 error = linux_to_native_timerflags(&flags, lflags); in linux_common_clock_nanosleep() 721 unsupported_flags, lflags); in linux_common_clock_nanosleep()
|
| H A D | linux_misc.c | 579 struct timespec *timesp, int lflags) in linux_common_utimensat() argument 585 if (lflags & ~(LINUX_AT_SYMLINK_NOFOLLOW | LINUX_AT_EMPTY_PATH)) in linux_common_utimensat() 597 if (lflags & LINUX_AT_SYMLINK_NOFOLLOW) in linux_common_utimensat() 599 if (lflags & LINUX_AT_EMPTY_PATH) in linux_common_utimensat() 606 if (lflags != 0) in linux_common_utimensat() 2976 #define L2B_MQ_FLAGS(lflags) ((lflags) != 0 ? O_NONBLOCK : 0) argument
|
| H A D | linux_socket.c | 803 linux_set_socket_flags(int lflags, int *flags) in linux_set_socket_flags() argument 806 if (lflags & ~(LINUX_SOCK_CLOEXEC | LINUX_SOCK_NONBLOCK)) in linux_set_socket_flags() 808 if (lflags & LINUX_SOCK_NONBLOCK) in linux_set_socket_flags() 810 if (lflags & LINUX_SOCK_CLOEXEC) in linux_set_socket_flags()
|
| /freebsd/contrib/lib9p/pytest/ |
| H A D | p9conn.py | 1172 def lcreate(self, fid, name, lflags, mode, gid): argument 1176 flags=lflags, mode=mode, gid=gid) 1496 lflags = flags_to_linux_flags(oflags) 1497 return self.lcreate(fid, name, lflags, perm, gid)
|
| /freebsd/crypto/openssl/util/perl/OpenSSL/ |
| H A D | config.pm | 798 lflags => [ '-ldl' ],
|
| /freebsd/sys/dev/bnxt/bnxt_re/ |
| H A D | qplib_fp.h | 226 u16 lflags; member
|