Searched refs:initializer (Results 1 - 20 of 20) sorted by relevance

/freebsd-current/contrib/llvm-project/libcxx/modules/std/
H A Dinitializer_list.inc13 // [support.initlist.range], initializer list range access
/freebsd-current/contrib/llvm-project/compiler-rt/lib/builtins/cpu_model/aarch64/lse_atomics/
H A Dfuchsia.inc6 // needs this initializer code.
/freebsd-current/contrib/llvm-project/lldb/source/Initialization/
H A DSystemLifetimeManager.cpp26 std::unique_ptr<SystemInitializer> initializer,
34 m_initializer = std::move(initializer);
25 Initialize( std::unique_ptr<SystemInitializer> initializer, LoadPluginCallbackType plugin_callback) argument
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Initialization/
H A DSystemLifetimeManager.h26 llvm::Error Initialize(std::unique_ptr<SystemInitializer> initializer,
/freebsd-current/contrib/llvm-project/clang/include/clang/CodeGen/
H A DConstantInitFuture.h45 /// A "future" for a completed constant initializer, which can be passed
58 /// A future can be explicitly created from a fixed initializer.
59 explicit ConstantInitFuture(llvm::Constant *initializer) : Data(initializer) { argument
60 assert(initializer && "creating null future");
66 /// Return the type of the initializer.
69 /// Abandon this initializer.
72 /// Install the initializer into a global variable. This cannot
H A DConstantInitBuilder.h77 llvm::GlobalVariable *createGlobal(llvm::Constant *initializer,
85 ConstantInitFuture createFuture(llvm::Constant *initializer);
88 llvm::Constant *initializer);
96 /// initializer builders.
185 /// Add a new value to this initializer.
187 assert(value && "adding null value to constant initializer");
207 /// Add a bunch of new values to this initializer.
246 /// Return the offset from the start of the initializer to the
250 /// currently in place in the initializer.
381 /// create a global variable with it as the initializer
[all...]
/freebsd-current/contrib/jemalloc/include/jemalloc/internal/
H A Dtsd_generic.h82 tsd_t initializer = TSD_INITIALIZER; local
84 wrapper->val = initializer;
115 tsd_t initializer = TSD_INITIALIZER; local
117 wrapper->val = initializer;
/freebsd-current/contrib/llvm-project/llvm/include/llvm/ADT/
H A DStringSet.h28 StringSet(std::initializer_list<StringRef> initializer) { argument
29 for (StringRef str : initializer)
/freebsd-current/contrib/llvm-project/clang/lib/CodeGen/
H A DConstantInitBuilder.cpp1 //===--- ConstantInitBuilder.cpp - Global initializer builder -------------===//
52 ConstantInitBuilderBase::createFuture(llvm::Constant *initializer) { argument
54 Buffer.push_back(initializer);
67 ConstantInitBuilderBase::createGlobal(llvm::Constant *initializer, argument
74 initializer->getType(),
77 initializer,
88 llvm::Constant *initializer){
89 GV->setInitializer(initializer);
157 // position after installing the initializer.
170 // position after installing the initializer
87 setGlobalInitializer(llvm::GlobalVariable *GV, llvm::Constant *initializer) argument
[all...]
/freebsd-current/contrib/llvm-project/compiler-rt/lib/builtins/cpu_model/aarch64/fmv/
H A Dfuchsia.inc9 // needs this initializer code.
/freebsd-current/sys/compat/linuxkpi/common/include/linux/
H A Doverflow.h316 * Enables caller macro to pass (different) initializer.
322 * @initializer: initializer expression (could be empty for no init).
324 #define _DEFINE_FLEX(type, name, member, count, initializer) \
330 } name##_u initializer; \
/freebsd-current/contrib/unbound/dynlibmod/
H A Ddynlibmod.c106 __DYNSYM initializer; local
112 initializer = __LOADSYM(dynamic_library,"init");
113 if (initializer == NULL) {
118 de->func_init = (func_init_t)(void*)initializer;
/freebsd-current/usr.sbin/bhyve/
H A Dsmbiostbl.c88 initializer_func_t initializer; member in struct:smbios_template_entry
915 initializer_func_t initializer; local
921 initializer = smbios_template[i].initializer;
923 err = (*initializer)(entry, strings, curaddr, &endaddr, &n);
/freebsd-current/contrib/ncurses/progs/
H A Dinfocmp.c1221 ," -e format output for C initializer"
1262 static char *initializer; local
1266 if (initializer == 0) {
1270 initializer = (char *) malloc(need + 1);
1271 if (initializer == 0)
1275 _nc_STRCPY(initializer, entries->tterm.term_names, need);
1276 for (s = initializer; *s != 0 && *s != '|'; s++) {
1282 return initializer;
1860 /* dump as C initializer for the terminal type */
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DIRForTarget.cpp334 GlobalValue::ExternalLinkage, nullptr, /* no initializer */
373 LLDB_LOG(log, "Couldn't find initializer for unused variable");
376 "({0}) has no writes and no initializer\n",
382 Constant *initializer = result_global->getInitializer(); local
385 new StoreInst(initializer, new_result_global, first_entry_instruction);
563 LLDB_LOG(log, "NSString variable does not have an initializer");
566 "constant string does not have an initializer\n");
576 "NSString variable's initializer is not a ConstantStruct");
596 "NSString variable's initializer structure has an "
610 LLDB_LOG(log, "NSString initializer'
[all...]
/freebsd-current/contrib/llvm-project/clang/include/clang/Analysis/
H A DCFG.h225 /// Represents C++ base or member initializer from constructor's initialization
229 explicit CFGInitializer(const CXXCtorInitializer *initializer) argument
230 : CFGElement(Initializer, initializer) {}
1138 void appendInitializer(CXXCtorInitializer *initializer,
1140 Elements.push_back(CFGInitializer(initializer), C);
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Support/
H A DCommandLine.h436 template <class Ty> struct initializer { struct in namespace:llvm::cl
438 initializer(const Ty &Val) : Init(Val) {} function in struct:llvm::cl::initializer
450 template <class Ty> initializer<Ty> init(const Ty &Val) {
451 return initializer<Ty>(Val);
717 /// as an initializer list to the ValuesClass constructor.
/freebsd-current/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DMasmParser.cpp121 FT_STRUCT // Initializer: struct initializer, stored recursively.
3651 // ? initializer; treat as 0.
3667 // Treat each character as an initializer.
4188 // ? initializer; leave EndToken uninitialized to treat as empty.
4192 return Error(FirstToken.getLoc(), "Expected struct initializer");
4202 // Empty initializer; use the default and continue. (Also, allow line
4218 "' initializer initializes too many fields");
4459 /// ::= struct-id (<struct-initializer> | {struct-initializer})
4460 /// [, (<struct-initializer> | {struc
[all...]
/freebsd-current/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclCXX.cpp167 // have an init-capture if any full-expression in its initializer satisfies
288 // the same semantic constraints as the initializer expression in
1259 // ... the initializer is e.get<i>().
1289 // initializer is e.get<i-1>().
1298 // Otherwise, the initializer is get<i-1>(e), where get is looked up
1319 // initializer, where the reference is an lvalue reference if the
1320 // initializer is an lvalue and an rvalue reference otherwise
2363 // allow at most one initializer per member.
2381 // might not have initializers in the member initializer list.
3436 /// bitfield width if there is one, 'InitExpr' specifies the initializer i
[all...]
/freebsd-current/contrib/ncurses/
H A Dconfigure25493 TEST::TEST(int x = 1) // some compilers do not like second initializer

Completed in 249 milliseconds