Searched refs:cflags (Results 1 - 25 of 80) sorted by relevance

1234

/freebsd-13-stable/contrib/unbound/contrib/ios/
H A D15-ios.conf31 cflags => add("-Wall -fno-common"),
35 cflags => add("-Wall -fno-common"),
39 cflags => add("-Wall -fno-common"),
/freebsd-13-stable/contrib/unbound/contrib/android/
H A D15-android.conf28 cflags => add(picker(release => "-fomit-frame-pointer")),
/freebsd-13-stable/crypto/openssh/openbsd-compat/
H A Dbsd-snprintf.c190 int cflags; local
197 currlen = flags = cflags = min = 0;
277 cflags = DP_C_SHORT;
281 cflags = DP_C_INTMAX;
285 cflags = DP_C_LONG;
288 cflags = DP_C_LLONG;
293 cflags = DP_C_LDOUBLE;
297 cflags = DP_C_SIZE;
309 if (cflags == DP_C_SHORT)
311 else if (cflags
[all...]
/freebsd-13-stable/contrib/libxo/
H A Dlibxo-config.in28 --cflags print pre-processor and compiler flags
41 cflags=false
79 --cflags)
/freebsd-13-stable/crypto/openssh/contrib/
H A DMakefile7 $(CC) $(CFLAGS) `gnome-config --cflags gnome gnomeui` \
12 $(CC) $(CFLAGS) `$(PKG_CONFIG) --cflags gtk+-2.0` \
17 $(CC) $(CFLAGS) `$(PKG_CONFIG) --cflags gtk+-3.0` \
/freebsd-13-stable/contrib/atf/atf-c/
H A Dpkg_config_test.sh101 atf_check -s eq:0 -o save:stdout -e empty pkg-config --cflags atf-c
102 cflags=$(cat stdout)
103 echo "CFLAGS are: ${cflags}"
113 atf_check -s eq:0 -o empty -e empty ${cc} ${cflags} -o tp.o -c tp.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",
/freebsd-13-stable/contrib/wpa/wpa_supplicant/dbus/
H A DMakefile44 DBUS_INCLUDE := $(shell $(PKG_CONFIG) --cflags dbus-1)
48 DBUS_INCLUDE += $(shell xml2-config --cflags)
/freebsd-13-stable/contrib/libpcap/
H A Dpcap-config.in30 --cflags)
/freebsd-13-stable/contrib/lutok/examples/
H A DMakefile35 LUTOK_CPPFLAGS = $$(pkg-config --cflags-only-I lutok)
36 LUTOK_CXXFLAGS = $$(pkg-config --cflags-only-other lutok)
/freebsd-13-stable/crypto/openssl/apps/
H A Dversion.c66 int cflags = 0, version = 0, date = 0, options = 0, platform = 0, dir = 0; local
93 dirty = cflags = 1;
108 seed = options = cflags = version = date = platform = dir = engdir
151 if (cflags)
/freebsd-13-stable/contrib/ncurses/ncurses/trace/
H A Dlib_tracebits.c135 }, cflags[] = local
166 8 + sizeof(cflags) +
178 lookup_bits(buf, cflags, "cflags", tty->c_cflag);
233 static const BITNAMES cflags[] = local
250 8 + sizeof(cflags));
253 lookup_bits(buf, cflags, "cflags", tty->sg_flags);
/freebsd-13-stable/usr.bin/grep/
H A Dgrep.c69 int cflags = REG_NOSUB | REG_NEWLINE; variable
493 cflags |= REG_ICASE;
523 cflags &= ~REG_NOSUB;
557 cflags &= ~REG_NOSUB;
561 cflags &= ~REG_NOSUB;
595 cflags &= ~REG_NOSUB;
660 * internal literal matcher should be used. Other cflags that have
666 cflags |= REG_NOSPEC;
668 cflags |= REG_LITERAL;
672 cflags |
[all...]
/freebsd-13-stable/crypto/openssl/crypto/bio/
H A Db_print.c97 int cflags; local
101 flags = currlen = cflags = min = 0;
179 cflags = DP_C_SHORT;
184 cflags = DP_C_LLONG;
187 cflags = DP_C_LONG;
192 cflags = DP_C_LLONG;
196 cflags = DP_C_LDOUBLE;
200 cflags = DP_C_SIZE;
212 switch (cflags) {
240 switch (cflags) {
[all...]
/freebsd-13-stable/contrib/flex/src/
H A Dregex.c48 * @param cflags Same as for regcomp().
50 void flex_regcomp(regex_t *preg, const char *regex, int cflags) argument
56 if ((err = regcomp (preg, regex, cflags)) != 0) {
/freebsd-13-stable/sys/contrib/openzfs/lib/libspl/include/
H A Dumem.h147 void *priv, void *vmp, int cflags)
161 cp->cache_cflags = cflags;
142 umem_cache_create( char *name, size_t bufsize, size_t align, umem_constructor_t *constructor, umem_destructor_t *destructor, umem_reclaim_t *reclaim, void *priv, void *vmp, int cflags) argument
/freebsd-13-stable/crypto/heimdal/tools/
H A Dkrb5-config.in72 --cflags)
99 echo "options: [--prefix[=dir]] [--exec-prefix[=dir]] [--libs] [--cflags]"
/freebsd-13-stable/contrib/dialog/
H A Ddialog-config.in70 --cflags)
115 --cflags echos the C compiler flags needed to compile with ${THIS}
/freebsd-13-stable/lib/libc/regex/
H A Dregcomp.c213 int cflags, int pflags)
227 cflags = GOODFLAGS(cflags);
228 if ((cflags&REG_EXTENDED) && (cflags&REG_NOSPEC))
231 if (cflags&REG_PEND) {
278 if (cflags&REG_POSIX) {
280 p->allowbranch = (cflags & REG_EXTENDED) != 0;
285 p->allowbranch = (cflags & REG_EXTENDED) != 0;
287 if (cflags
211 regcomp_internal(regex_t * __restrict preg, const char * __restrict pattern, int cflags, int pflags) argument
366 regcomp(regex_t * __restrict preg, const char * __restrict pattern, int cflags) argument
379 freebsd12_regcomp(regex_t * __restrict preg, const char * __restrict pattern, int cflags, int pflags) argument
[all...]
/freebsd-13-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-13-stable/usr.sbin/bsnmpd/modules/snmp_wlan/
H A Dwlan_sys.c537 wlan_channel_flags_to_snmp(uint32_t cflags) argument
541 if ((cflags & IEEE80211_CHAN_TURBO) != 0)
543 if ((cflags & IEEE80211_CHAN_CCK) != 0)
545 if ((cflags & IEEE80211_CHAN_OFDM) != 0)
547 if ((cflags & IEEE80211_CHAN_2GHZ) != 0)
549 if ((cflags & IEEE80211_CHAN_5GHZ) != 0)
551 if ((cflags & IEEE80211_CHAN_PASSIVE) != 0)
553 if ((cflags & IEEE80211_CHAN_DYN) != 0)
555 if ((cflags & IEEE80211_CHAN_GFSK) != 0)
557 if ((cflags
640 wlan_channel_flags_to_snmp_phy(uint32_t cflags) argument
[all...]
/freebsd-13-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-13-stable/sys/contrib/openzfs/include/os/freebsd/spl/sys/
H A Dkmem.h78 void (*reclaim)(void *) __unused, void *private, vmem_t *vmp, int cflags);
/freebsd-13-stable/contrib/nvi/regex/
H A Dregex2.h143 int cflags; /* copy of regcomp() cflags argument */ member in struct:re_guts
/freebsd-13-stable/sys/cddl/compat/opensolaris/sys/
H A Dkmem.h72 void (*reclaim)(void *) __unused, void *private, vmem_t *vmp, int cflags);

Completed in 600 milliseconds

1234