Searched refs:make (Results 251 - 275 of 543) sorted by relevance

<<11121314151617181920>>

/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A Dilist.h96 template <class T> T &make();
106 static Yes &test(U *I, decltype(I->getNext(&make<NodeT>())) * = 0);
136 static Yes &test(U *I, decltype(I->createNode(make<NodeT>())) * = 0);
/freebsd-12-stable/contrib/apr-util/test/
H A Dtestcrypto.c96 static apr_crypto_t *make(abts_case *tc, apr_pool_t *pool, function
484 f1 = make(tc, pool, driver1);
485 f2 = make(tc, pool, driver2);
579 f = make(tc, pool, driver);
598 f = make(tc, pool, driver);
617 f = make(tc, pool, driver);
1168 f = make(tc, pool, driver);
1211 f = make(tc, pool, driver);
1254 f = make(tc, pool, driver);
1295 f = make(t
[all...]
/freebsd-12-stable/contrib/llvm-project/lld/COFF/
H A DWriter.cpp377 c = make<RangeExtensionThunkARM>(target);
380 c = make<RangeExtensionThunkARM64>(target);
385 Defined *d = make<DefinedSynthetic>("", c);
394 // specified margin, to make sure that relocations that originally are in
415 // Offset this by the size of the new thunks added so far, to make the
804 sec = make<OutputSection>(name, outChars);
925 debugDirectory = make<DebugDirectoryChunk>(debugRecords, config->repro);
934 buildId = make<CVDebugRecordChunk>();
1679 RVATableChunk *tableChunk = make<RVATableChunk>(std::move(tableSymbols));
1704 PseudoRelocTableChunk *table = make<PseudoRelocTableChun
[all...]
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/AST/
H A DUnresolvedSet.h96 decls().push_back(DeclAccessPair::make(D, AS));
/freebsd-12-stable/contrib/openresolv/
H A DMakefile3 # Nasty hack so that make clean works without configure being run
89 (cd /tmp/${DISTPREFIX}; make clean)
/freebsd-12-stable/contrib/byacc/test/
H A Drun_make.sh27 MY_MAKE="make -f $PROG_DIR/makefile srcdir=$PROG_DIR"
34 make -f $PROG_DIR/makefile srcdir=$PROG_DIR $O_FILE $*
/freebsd-12-stable/contrib/bmake/mk/
H A Dwarnings.mk18 # make sure we get the behavior we expect
77 # Without -O or if we've set -O0 somewhere - to make debugging more effective,
H A Ddpadd.mk175 .if !make(dpadd)
250 .if (make(${PROG}_p) || defined(NEED_GPROF)) && exists(${__lib:R}_p.a)
276 # force evaluation now - to avoid giving make a headache
303 .if make(*dpadd*)
H A Dlibs.mk30 .if make(lib$t)
H A Dprogs.mk30 .if make($t)
/freebsd-12-stable/crypto/heimdal/lib/kadm5/
H A DMakefile.am163 # to help stupid solaris make
171 cd $(srcdir); perl ../../cf/make-proto.pl $(proto_opts) \
178 cd $(srcdir); perl ../../cf/make-proto.pl $(proto_opts) \
/freebsd-12-stable/sys/conf/
H A Dkern.opts.mk8 # make(1) environment.
14 # Note: bsd.own.mk must be included before the rest of kern.opts.mk to make
/freebsd-12-stable/sys/modules/linux64/
H A DMakefile62 .warning Building Linuxulator outside of a kernel does not make sense
/freebsd-12-stable/tools/test/iconv/
H A DMakefile38 make-ref: refgen
/freebsd-12-stable/lib/libpmc/
H A DMakefile38 .if make(*clean*)
/freebsd-12-stable/libexec/rtld-elf/amd64/
H A Drtld_start.S48 .rtld_goto_main: # This symbol exists just to make debugging easier.
/freebsd-12-stable/share/mk/
H A Dbsd.progs.mk81 # These are handled by the main make process.
165 .if make(${t})
/freebsd-12-stable/share/zoneinfo/
H A DMakefile92 .if make(*install*)
/freebsd-12-stable/usr.sbin/bluetooth/bthidd/
H A Dbtuinput.c513 uinput_rep_key(int32_t fd, int32_t key, int32_t make) argument
525 if (uinput_write_event(fd, EV_KEY, keymap[key], make) > 0 &&
536 uinput_rep_cons(int32_t fd, int32_t key, int32_t make) argument
548 if (uinput_write_event(fd, EV_KEY, consmap[key], make) > 0 &&
/freebsd-12-stable/usr.sbin/ndiscvt/
H A Dndisgen.sh131 echo " these additional files to make your device work with the NDIS"
504 MAKE=/usr/bin/make
/freebsd-12-stable/contrib/llvm-project/lld/ELF/
H A DScriptParser.cpp274 SymbolAssignment *cmd = make<SymbolAssignment>(name, e, getCurrentLocation());
517 v.push_back(make<SymbolAssignment>(".", moveDot, getCurrentLocation()));
661 auto *cmd = make<InputSectionDescription>(filePattern);
825 // CONSTRUCTORS is a keyword to make the linker recognize C++ ctors/dtors
845 auto *isd = make<InputSectionDescription>(tok);
909 return make<SymbolAssignment>(".", readAssert(), getCurrentLocation());
939 return make<SymbolAssignment>(name, e, getCurrentLocation());
1103 return make<ByteCommand>(e, size, commandString);
1480 MemoryRegion *mr = make<MemoryRegion>(tok, origin, length, flags, negFlags);
/freebsd-12-stable/contrib/ntp/
H A DMakefile.am105 FreeBSD 6.x make which fails with "make COPYRIGHT" \
106 configured in $(srcdir) but "make ./COPYRIGHT" succeeds. \
/freebsd-12-stable/contrib/gcc/config/ia64/
H A Dcrti.asm34 # This file just make a stack frame for the contents of the .fini and
/freebsd-12-stable/contrib/googletest/googlemock/test/
H A Dgmock-actions_test.cc1225 auto make = [](int i) { return std::unique_ptr<int>(new int(i)); }; local
1241 EXPECT_EQ(5, mock.TakeUnique(make(5)));
1242 EXPECT_EQ(-7, mock.TakeUnique(make(7)));
1243 EXPECT_EQ(7, mock.TakeUnique(make(7)));
1244 EXPECT_EQ(7, mock.TakeUnique(make(7)));
1248 auto lvalue = make(6);
1253 EXPECT_EQ(42, mock.TakeUnique(lvalue, make(7)));
1261 EXPECT_EQ(0, mock.TakeUnique(make(42)));
1349 // so maybe it's better to make users use lambdas instead.
/freebsd-12-stable/contrib/apr/network_io/unix/
H A Dsockopt.c35 #error Please teach APR how to make sockets blocking on your platform.
61 #error Please teach APR how to make sockets non-blocking on your platform.
82 * non-negative timeout, we must make sure our socket is blocking.

Completed in 367 milliseconds

<<11121314151617181920>>