/freebsd/contrib/bmake/unit-tests/ |
H A D | deptgt-phony.mk | 19 depsrc-phony-pr-15164-*-wildcard: .PHONY 26 .PHONY: deptgt-phony-pr-15164-*-wildcard 27 deptgt-phony-pr-15164-*-wildcard: 30 all: depsrc-phony-pr-15164 depsrc-phony-pr-15164-*-wildcard 31 all: deptgt-phony-pr-15164 deptgt-phony-pr-15164-*-wildcard
|
H A D | archive.mk | 23 @${MAKE} -f ${MAKEFILE} list-archive-wildcard 51 list-archive-wildcard: ${ARCHIVE}([at]*.mk) pre post
|
/freebsd/contrib/capsicum-test/ |
H A D | GNUmakefile | 14 ifneq ($(wildcard /usr/lib/$(PROCESSOR)-linux-gnu),) 37 ifneq ($(wildcard $(PLATFORM_LIBDIR)/libsctp.a),) 50 ifneq ($(wildcard $(PLATFORM_LIBDIR)/libcaprights.a),) 53 ifneq ($(wildcard /usr/lib/libcaprights.a),) 63 ifneq ($(wildcard /usr/include/gnu/stubs-x32.h),)
|
/freebsd/contrib/arm-optimized-routines/math/ |
H A D | Dir.mk | 9 math-lib-srcs := $(wildcard $(S)/*.[cS]) 10 math-lib-srcs += $(wildcard $(S)/$(ARCH)/*.[cS]) 17 math-test-host-srcs := $(wildcard $(S)/test/rtest/*.[cS]) 19 math-includes := $(patsubst $(S)/%,build/%,$(wildcard $(S)/include/*.h)) 20 math-test-includes := $(patsubst $(S)/%,build/include/%,$(wildcard $(S)/test/*.h)) 98 math-tests := $(wildcard $(S)/test/testcases/directed/*.tst) 99 math-rtests := $(wildcard $(S)/test/testcases/random/*.tst)
|
/freebsd/sys/contrib/zstd/lib/ |
H A D | libzstd.mk | 125 ZSTD_COMMON_FILES := $(sort $(wildcard $(LIBZSTD)/common/*.c)) 126 ZSTD_COMPRESS_FILES := $(sort $(wildcard $(LIBZSTD)/compress/*.c)) 127 ZSTD_DECOMPRESS_FILES := $(sort $(wildcard $(LIBZSTD)/decompress/*.c)) 128 ZSTD_DICTBUILDER_FILES := $(sort $(wildcard $(LIBZSTD)/dictBuilder/*.c)) 129 ZSTD_DEPRECATED_FILES := $(sort $(wildcard $(LIBZSTD)/deprecated/*.c)) 132 ZSTD_DECOMPRESS_AMD64_ASM_FILES := $(sort $(wildcard $(LIBZSTD)/decompress/*_amd64.S))
|
/freebsd/contrib/arm-optimized-routines/networking/ |
H A D | Dir.mk | 15 networking-lib-srcs := $(wildcard $(S)/*.[cS]) $(wildcard $(S)/$(ARCH)/*.[cS]) 16 networking-test-srcs := $(wildcard $(S)/test/*.c) 18 networking-includes := $(patsubst $(S)/%,build/%,$(wildcard $(S)/include/*.h))
|
/freebsd/contrib/arm-optimized-routines/string/ |
H A D | Dir.mk | 15 string-lib-srcs := $(wildcard $(S)/$(ARCH)/*.[cS]) 16 string-test-srcs := $(wildcard $(S)/test/*.c) 17 string-bench-srcs := $(wildcard $(S)/bench/*.c) 19 string-includes := $(patsubst $(S)/%,build/%,$(wildcard $(S)/include/*.h))
|
/freebsd/crypto/openssl/doc/life-cycles/ |
H A D | Makefile | 25 rm -f $(wildcard *.png) $(wildcard *.txt)
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-objcopy/ |
H A D | CommonOpts.td | 124 def wildcard 125 : Flag<["--"], "wildcard">, 126 HelpText<"Allow wildcard syntax for symbol-related flags. Incompatible " 132 def w : Flag<["-"], "w">, Alias<wildcard>, HelpText<"Alias for --wildcard">;
|
/freebsd/sys/conf/ |
H A D | Makefile.arm | 63 --wildcard \ 95 @${OBJCOPY} --wildcard --strip-symbol='$$[adtx]*' \
|
H A D | Makefile.arm64 | 55 --wildcard \ 88 @${OBJCOPY} --wildcard --strip-symbol='$$[adtx]*' \
|
H A D | ldscript.i386 | 107 first. Because this is a wildcard, it 111 wildcard. The wildcard also means that it
|
H A D | ldscript.amd64 | 113 first. Because this is a wildcard, it 117 wildcard. The wildcard also means that it
|
/freebsd/contrib/arm-optimized-routines/pl/math/ |
H A D | Dir.mk | 10 pl-lib-srcs := $(wildcard $(PLM)/*.[cS]) 21 math-test-host-srcs := $(wildcard $(AOR)/test/rtest/*.[cS]) 23 pl-includes := $(patsubst $(PLM)/%,build/pl/%,$(wildcard $(PLM)/include/*.h)) 24 pl-test-includes := $(patsubst $(PLM)/%,build/pl/include/%,$(wildcard $(PLM)/test/*.h)) 146 pl-math-tests := $(wildcard $(PLM)/test/testcases/directed/*.tst) 147 pl-math-rtests := $(wildcard $(PLM)/test/testcases/random/*.tst)
|
/freebsd/contrib/bmake/ |
H A D | dir.c | 892 const char *brace, *slash, *wildcard, *wildcardComponent; in SearchPath_Expand() local 915 for (wildcard = pattern; *wildcard != '\0'; wildcard++) in SearchPath_Expand() 916 if (*wildcard == '?' || *wildcard == '[' || *wildcard == '*') in SearchPath_Expand() 919 if (*wildcard == '\0') { in SearchPath_Expand() 931 wildcardComponent = wildcard; in SearchPath_Expand()
|
/freebsd/contrib/ldns/ |
H A D | dname.c | 464 ldns_dname_match_wildcard(const ldns_rdf *dname, const ldns_rdf *wildcard) in ldns_dname_match_wildcard() argument 469 if (ldns_dname_is_wildcard(wildcard)) { in ldns_dname_match_wildcard() 473 wc_chopped = ldns_dname_left_chop(wildcard); in ldns_dname_match_wildcard() 477 result = (ldns_dname_compare(dname, wildcard) == 0); in ldns_dname_match_wildcard()
|
/freebsd/sys/contrib/device-tree/ |
H A D | Makefile | 23 ALL_ARCHES := $(patsubst src/%,%,$(wildcard src/*)) 120 cmd_files := $(wildcard $(foreach f,$(ARCH_DTB),$(dir $(f)).$(notdir $(f)).cmd))
|
/freebsd/usr.sbin/rpc.tlsservd/ |
H A D | rpc.tlscommon.c | 256 rpctls_checkhost(struct sockaddr *sad, X509 *cert, unsigned int wildcard) in rpctls_checkhost() argument 268 wildcard, NULL); in rpctls_checkhost()
|
H A D | rpc.tlscommon.h | 34 unsigned int wildcard);
|
/freebsd/sys/netinet6/ |
H A D | in6_pcb.c | 694 int matchwild = 3, wildcard; in in6_pcblookup_local() local 748 wildcard = 0; in in6_pcblookup_local() 756 wildcard++; in in6_pcblookup_local() 760 wildcard++; in in6_pcblookup_local() 766 wildcard++; in in6_pcblookup_local() 768 if (wildcard < matchwild) { in in6_pcblookup_local() 770 matchwild = wildcard; in in6_pcblookup_local()
|
/freebsd/crypto/openssl/doc/man3/ |
H A D | SSL_set1_host.pod | 48 identifiers. When wildcard matching is not disabled, the name 49 matched in the peer certificate may be a wildcard name. When one 80 matched in the certificate (which might be a wildcard) is retrieved,
|
/freebsd/contrib/wpa/hostapd/ |
H A D | hostapd.vlan | 6 # Optional wildcard entry matching all VLAN IDs. The first # in the interface
|
/freebsd/contrib/dialog/samples/copifuncs/ |
H A D | copi.ifmcfg2 | 35 # - address <wildcard> 36 # where <wildcard> is an (possibly incomplete) fidonet address,
|
/freebsd/contrib/wpa/hs20/client/ |
H A D | Android.mk | 15 ifeq ($(wildcard external/icu),)
|
/freebsd/sbin/pfctl/tests/files/ |
H A D | pf0100.in | 7 anchor "camield/*" # empty wildcard anchor
|