Searched refs:cflags (Results 26 - 50 of 89) sorted by relevance

1234

/freebsd-11-stable/usr.bin/grep/
H A Dgrep.c84 int cflags = REG_NOSUB | REG_NEWLINE; variable
536 cflags |= REG_ICASE;
576 cflags &= ~REG_NOSUB;
614 cflags &= ~REG_NOSUB;
618 cflags &= ~REG_NOSUB;
658 cflags &= ~REG_NOSUB;
723 * internal literal matcher should be used. Other cflags that have
729 cflags |= REG_NOSPEC;
731 cflags |= REG_LITERAL;
735 cflags |
[all...]
H A Dgrep.h133 extern int cflags, eflags;
/freebsd-11-stable/contrib/atf/atf-c/
H A Dh_build.h39 const char *cflags; member in struct:c_o_test
80 "Some cflags",
114 "Some cflags and cppflags",
146 "Some cflags, cppflags and optional arguments",
H A Dbuild_test.c161 verbose_set_env("ATF_BUILD_CFLAGS", test->cflags);
/freebsd-11-stable/contrib/dialog/
H A Ddialog-config.in70 --cflags)
115 --cflags echos the C compiler flags needed to compile with ${THIS}
/freebsd-11-stable/crypto/openssl/util/pl/
H A Dunix.pl16 { $cflags="-g2 -ggdb"; }
18 { $cflags="-O3 -fomit-frame-pointer"; }
24 { $cflags="-g"; }
26 { $cflags="-O"; }
H A DVC-32.pl150 $cflags=$dbg_cflags.$base_cflags;
154 $cflags=$opt_cflags.$base_cflags;
199 $ex_libs="unicows.lib $ex_libs" if ($FLAVOR =~ /WIN32/ and $cflags =~ /\-DUNICODE/);
268 $cflags.=" -DOPENSSL_USE_APPLINK -I.";
/freebsd-11-stable/usr.bin/grep/regex/
H A Dtre-fastmatch.c478 fg->icase = (cflags & REG_ICASE); \
479 fg->word = (cflags & REG_WORD); \
480 fg->newline = (cflags & REG_NEWLINE); \
481 fg->nosub = (cflags & REG_NOSUB); \
522 int cflags)
561 int cflags)
582 if ((cflags & REG_GNU) && (n >= 14) &&
629 if (escaped || (!(cflags & REG_EXTENDED) && (i == 0)))
636 if ((cflags & REG_EXTENDED) && (i == 0))
638 else if ((cflags
521 tre_compile_literal(fastmatch_t *fg, const tre_char_t *pat, size_t n, int cflags) argument
560 tre_compile_fast(fastmatch_t *fg, const tre_char_t *pat, size_t n, int cflags) argument
[all...]
/freebsd-11-stable/contrib/apr/
H A Dapr-config.in62 --cflags print C compiler flags
84 An application should use the results of --cflags, --cppflags, --includes,
142 --cflags)
/freebsd-11-stable/usr.sbin/bsnmpd/modules/snmp_wlan/
H A Dwlan_sys.c536 wlan_channel_flags_to_snmp(uint32_t cflags) argument
540 if ((cflags & IEEE80211_CHAN_TURBO) != 0)
542 if ((cflags & IEEE80211_CHAN_CCK) != 0)
544 if ((cflags & IEEE80211_CHAN_OFDM) != 0)
546 if ((cflags & IEEE80211_CHAN_2GHZ) != 0)
548 if ((cflags & IEEE80211_CHAN_5GHZ) != 0)
550 if ((cflags & IEEE80211_CHAN_PASSIVE) != 0)
552 if ((cflags & IEEE80211_CHAN_DYN) != 0)
554 if ((cflags & IEEE80211_CHAN_GFSK) != 0)
556 if ((cflags
639 wlan_channel_flags_to_snmp_phy(uint32_t cflags) argument
[all...]
/freebsd-11-stable/contrib/wpa/hs20/client/
H A DMakefile33 GTKCFLAGS := $(shell pkg-config --cflags gtk+-3.0 webkitgtk-3.0)
73 CFLAGS += $(shell xml2-config --cflags)
/freebsd-11-stable/contrib/ncurses/misc/
H A Dncurses-config.in99 --cflags)
172 --cflags echos the C compiler flags needed to compile with ${THIS}
/freebsd-11-stable/contrib/nvi/regex/
H A Dregex2.h143 int cflags; /* copy of regcomp() cflags argument */ member in struct:re_guts
H A Dregcomp.c180 regcomp(regex_t *preg, const RCHAR_T *pattern, int cflags) argument
193 cflags = GOODFLAGS(cflags);
194 if ((cflags&REG_EXTENDED) && (cflags&REG_NOSPEC))
197 if (cflags&REG_PEND) {
237 g->cflags = cflags;
254 if (cflags&REG_EXTENDED)
256 else if (cflags
[all...]
H A Dengine.c146 if (g->cflags&REG_NOSUB)
517 (m->g->cflags&REG_NEWLINE)) )
525 (m->g->cflags&REG_NEWLINE)) )
533 (m->g->cflags&REG_NEWLINE)) ||
544 (m->g->cflags&REG_NEWLINE)) ||
709 if ( (lastc == '\n' && m->g->cflags&REG_NEWLINE) ||
714 if ( (c == '\n' && m->g->cflags&REG_NEWLINE) ||
792 if ( (lastc == '\n' && m->g->cflags&REG_NEWLINE) ||
797 if ( (c == '\n' && m->g->cflags&REG_NEWLINE) ||
/freebsd-11-stable/sys/cddl/compat/opensolaris/sys/
H A Dkmem.h72 void (*reclaim)(void *) __unused, void *private, vmem_t *vmp, int cflags);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A Dregcomp.c293 llvm_regcomp(llvm_regex_t *preg, const char *pattern, int cflags) argument
306 cflags = GOODFLAGS(cflags);
307 if ((cflags&REG_EXTENDED) && (cflags&REG_NOSPEC))
310 if (cflags&REG_PEND) {
344 g->cflags = cflags;
359 if (cflags&REG_EXTENDED)
361 else if (cflags
[all...]
H A Dregex2.h140 int cflags; /* copy of llvm_regcomp() cflags argument */ member in struct:re_guts
/freebsd-11-stable/contrib/sqlite3/tea/win/
H A Dmakefile.vc234 cflags = -nologo -c -W3 -D_CRT_SECURE_NO_WARNINGS -YX -Fp$(TMP_DIR)^\
252 BASE_CLFAGS = $(cflags) $(cdebug) $(crt) $(INCLUDES) \
255 CON_CFLAGS = $(cflags) $(cdebug) $(crt) -DCONSOLE -DSQLITE_ENABLE_FTS3=1
/freebsd-11-stable/contrib/atf/atf-c++/
H A Dpkg_config_test.sh100 atf_check -s eq:0 -o save:stdout -e empty pkg-config --cflags atf-c++
H A Dbuild_test.cpp160 verbose_set_env("ATF_BUILD_CFLAGS", test->cflags);
/freebsd-11-stable/cddl/compat/opensolaris/lib/libumem/
H A Dumem.c106 umem_cache_t *umem_cache_create(char *debug_name, size_t bufsize, size_t align, umem_constructor_t *constructor, umem_destructor_t *destructor, umem_reclaim_t *reclaim, void *callback_data, void *source, int cflags) argument
/freebsd-11-stable/lib/libc/regex/
H A Dregcomp.c218 int cflags)
232 cflags = GOODFLAGS(cflags);
233 if ((cflags&REG_EXTENDED) && (cflags&REG_NOSPEC))
236 if (cflags&REG_PEND) {
281 if (cflags & REG_EXTENDED) {
296 g->cflags = cflags;
311 if (cflags
216 regcomp(regex_t * __restrict preg, const char * __restrict pattern, int cflags) argument
[all...]
/freebsd-11-stable/sys/cddl/compat/opensolaris/kern/
H A Dopensolaris_kmem.c156 void (*reclaim)(void *) __unused, void *private, vmem_t *vmp, int cflags)
171 NULL, NULL, align > 0 ? align - 1 : 0, cflags);
154 kmem_cache_create(char *name, size_t bufsize, size_t align, int (*constructor)(void *, void *, int), void (*destructor)(void *, void *), void (*reclaim)(void *) __unused, void *private, vmem_t *vmp, int cflags) argument
/freebsd-11-stable/sys/fs/cuse/
H A Dcuse.c155 int cflags; /* client flags */ member in struct:cuse_client
164 ((pcc)->cflags & CUSE_CLI_IS_CLOSING)
533 pcc->cflags |= CUSE_CLI_IS_CLOSING;
1013 pcc->cflags |= (CUSE_CLI_KNOTE_NEED_READ |
1547 temp = (pcc->cflags & (CUSE_CLI_KNOTE_HAS_READ |
1549 pcc->cflags &= ~(CUSE_CLI_KNOTE_NEED_READ |
1560 pcc->cflags |= CUSE_CLI_KNOTE_NEED_READ;
1562 pcc->cflags |= CUSE_CLI_KNOTE_NEED_WRITE;
1900 return ((pcc->cflags & CUSE_CLI_KNOTE_NEED_READ) ? 1 : 0);
1912 return ((pcc->cflags
[all...]

Completed in 319 milliseconds

1234