Home
last modified time | relevance | path

Searched refs:init (Results 1 – 25 of 1794) sorted by relevance

12345678910>>...72

/openbsd-src/sys/dev/pci/drm/i915/
H A Di915_module.c48 int (*init)(void); member
51 { .init = i915_check_nomodeset },
52 { .init = i915_active_module_init,
54 { .init = i915_context_module_init,
56 { .init = i915_gem_context_module_init,
58 { .init = i915_objects_module_init,
60 { .init = i915_request_module_init,
62 { .init = i915_scheduler_module_init,
64 { .init = i915_vma_module_init,
66 { .init = i915_vma_resource_module_init,
[all …]
/openbsd-src/gnu/gcc/gcc/cp/
H A Dinit.c151 tree init = NULL_TREE; in build_zero_init() local
182 init = convert (type, integer_zero_node); in build_zero_init()
212 init = build_constructor (type, v); in build_zero_init()
254 init = build_constructor (type, v); in build_zero_init()
257 init = fold_convert (type, integer_zero_node); in build_zero_init()
262 if (init) in build_zero_init()
264 TREE_CONSTANT (init) = 1; in build_zero_init()
265 TREE_INVARIANT (init) = 1; in build_zero_init()
268 return init; in build_zero_init()
322 perform_member_init (tree member, tree init) in perform_member_init() argument
[all …]
H A Dtypeck2.c43 process_init_constructor (tree type, tree init);
449 split_nonconstant_init_1 (tree dest, tree init) in split_nonconstant_init_1() argument
467 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (init), idx, in split_nonconstant_init_1()
503 VEC_ordered_remove (constructor_elt, CONSTRUCTOR_ELTS (init), in split_nonconstant_init_1()
523 if (!initializer_constant_valid_p (init, type)) in split_nonconstant_init_1()
526 tree cons = copy_node (init); in split_nonconstant_init_1()
527 CONSTRUCTOR_ELTS (init) = NULL; in split_nonconstant_init_1()
539 TREE_CONSTANT (init) = 1; in split_nonconstant_init_1()
548 split_nonconstant_init (tree dest, tree init) in split_nonconstant_init() argument
552 if (TREE_CODE (init) == CONSTRUCTOR) in split_nonconstant_init()
[all …]
H A Drtti.c801 tree init = NULL_TREE; in tinfo_base_init() local
865 init = tree_cons (NULL_TREE, vtable_ptr, init); in tinfo_base_init()
867 init = tree_cons (NULL_TREE, decay_conversion (name_decl), init); in tinfo_base_init()
869 init = build_constructor_from_list (NULL_TREE, nreverse (init)); in tinfo_base_init()
870 TREE_CONSTANT (init) = 1; in tinfo_base_init()
871 TREE_INVARIANT (init) = 1; in tinfo_base_init()
872 TREE_STATIC (init) = 1; in tinfo_base_init()
873 init = tree_cons (NULL_TREE, init, NULL_TREE); in tinfo_base_init()
875 return init; in tinfo_base_init()
885 tree init = tinfo_base_init (ti, target); in generic_initializer() local
[all …]
/openbsd-src/gnu/usr.bin/gcc/gcc/cp/
H A Dtypeck2.c306 split_nonconstant_init_1 (tree dest, tree init, tree *pcode) in split_nonconstant_init_1() argument
312 pelt = &CONSTRUCTOR_ELTS (init); in split_nonconstant_init_1()
361 if (!initializer_constant_valid_p (init, type)) in split_nonconstant_init_1()
363 CONSTRUCTOR_ELTS (init) = NULL; in split_nonconstant_init_1()
364 code = build (MODIFY_EXPR, type, dest, init); in split_nonconstant_init_1()
383 split_nonconstant_init (tree dest, tree init) in split_nonconstant_init() argument
387 if (TREE_CODE (init) == CONSTRUCTOR) in split_nonconstant_init()
390 split_nonconstant_init_1 (dest, init, &COMPOUND_BODY (code)); in split_nonconstant_init()
393 DECL_INITIAL (dest) = init; in split_nonconstant_init()
397 code = build (INIT_EXPR, TREE_TYPE (dest), dest, init); in split_nonconstant_init()
[all …]
H A Dinit.c172 tree init = NULL_TREE; in build_zero_init() local
204 init = convert (type, integer_zero_node); in build_zero_init()
211 init = build (CONSTRUCTOR, type, NULL_TREE, NULL_TREE); in build_zero_init()
234 CONSTRUCTOR_ELTS (init) = nreverse (inits); in build_zero_init()
242 init = build (CONSTRUCTOR, type, NULL_TREE, NULL_TREE); in build_zero_init()
261 CONSTRUCTOR_ELTS (init) = nreverse (inits); in build_zero_init()
269 if (init) in build_zero_init()
270 TREE_CONSTANT (init) = 1; in build_zero_init()
272 return init; in build_zero_init()
328 perform_member_init (tree member, tree init) in perform_member_init() argument
[all …]
H A Drtti.c743 tree init = NULL_TREE; local
806 init = tree_cons (NULL_TREE, vtable_ptr, init);
808 init = tree_cons (NULL_TREE, decay_conversion (name_decl), init);
810 init = build (CONSTRUCTOR, NULL_TREE, NULL_TREE, nreverse (init));
811 TREE_HAS_CONSTRUCTOR (init) = TREE_CONSTANT (init) = TREE_STATIC (init) = 1;
812 init = tree_cons (NULL_TREE, init, NULL_TREE);
814 return init;
826 tree init = tinfo_base_init (desc, target); local
828 init = build (CONSTRUCTOR, NULL_TREE, NULL_TREE, init);
829 TREE_HAS_CONSTRUCTOR (init) = TREE_CONSTANT (init) = TREE_STATIC (init) = 1;
[all …]
H A Dexcept.c334 tree init; local
360 init = convert_from_reference (exp);
368 init = ocp_convert (TREE_TYPE (decl), init,
370 init = build1 (MUST_NOT_THROW_EXPR, TREE_TYPE (init), init);
378 cp_finish_decl (decl, init, NULL_TREE,
407 tree init; local
414 init = build_exc_ptr ();
415 init = build1 (NOP_EXPR, build_pointer_type (type), init);
416 init = build (MINUS_EXPR, TREE_TYPE (init), init,
417 TYPE_SIZE_UNIT (TREE_TYPE (init)));
[all …]
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/
H A DCommandFlags.cpp120 cl::value_desc("cpu-name"), cl::init("")); in CGOPT()
149 cl::init(ThreadModel::POSIX), in CGOPT()
166 cl::init(ExceptionHandling::None), in CGOPT()
182 "filetype", cl::init(CGFT_AssemblyFile), in CGOPT()
196 cl::init(FramePointerKind::None), in CGOPT()
209 cl::init(false)); in CGOPT()
215 cl::init(false)); in CGOPT()
221 cl::init(false)); in CGOPT()
228 cl::init(false)); in CGOPT()
234 cl::init(false)); in CGOPT()
[all …]
/openbsd-src/gnu/usr.bin/perl/cpan/Unicode-Collate/
H A Dmkheader98 my $init = '';
103 $init .= "static const $type $head [] = {\n";
107 $init .= "/*$line*/\n" if $line =~ /^[A-Za-z0-9_.:;@\ \[\]]+\z/;
108 $init .= stringify($line).",\n";
110 $init .= "NULL\n"; # sentinel
111 $init .= "};\n\n";
121 init => $init,
131 my $init = $tbl->{init};
145 print $init if defined $init;
/openbsd-src/gnu/llvm/compiler-rt/lib/scudo/standalone/tests/
H A Dquarantine_test.cpp39 Into.init(FakePtr, 4UL); in TEST()
41 From.init(FakePtr, 8UL); in TEST()
65 From.init(FakePtr, 8UL); in TEST()
73 Cache.init(); in TEST()
74 ToDeallocate.init(); in TEST()
83 Cache.init(); in TEST()
88 ToDeallocate.init(); in TEST()
103 From.init(); in TEST()
106 Cache.init(); in TEST()
114 ToDeallocate.init(); in TEST()
[all …]
/openbsd-src/gnu/llvm/llvm/tools/llvm-cov/
H A Dgcov.cpp89 cl::opt<bool> AllBlocks("a", cl::Grouping, cl::init(false), in gcovMain()
93 cl::opt<bool> BranchProb("b", cl::Grouping, cl::init(false), in gcovMain()
97 cl::opt<bool> BranchCount("c", cl::Grouping, cl::init(false), in gcovMain()
102 cl::opt<bool> LongNames("l", cl::Grouping, cl::init(false), in gcovMain()
106 cl::opt<bool> FuncSummary("f", cl::Grouping, cl::init(false), in gcovMain()
114 "intermediate-format", cl::init(false), in gcovMain()
120 cl::opt<bool> Demangle("demangled-names", cl::init(false), in gcovMain()
125 cl::opt<bool> NoOutput("n", cl::Grouping, cl::init(false), in gcovMain()
130 "o", cl::value_desc("DIR|FILE"), cl::init(""), in gcovMain()
135 cl::opt<bool> PreservePaths("p", cl::Grouping, cl::init(false), in gcovMain()
[all …]
/openbsd-src/usr.sbin/httpd/
H A Dpatterns.c60 const char *init; member
280 ms->capture[level].init = s; in start_capture()
297 ms->capture[l].len = s - ms->capture[l].init; in end_capture()
313 memcmp(ms->capture[l].init, s, len) == 0) in match_capture()
331 init: in match()
365 goto init; in match()
388 goto init; in match()
408 goto init; in match()
434 goto init; in match()
454 goto init; in match()
[all …]
/openbsd-src/regress/lib/libevent/
H A DMakefile3 REGRESS_TARGETS= run-regress run-test-eof run-test-init run-test-time
13 CLEANFILES= event_regress test-eof test-init test-time test-weof
27 run-test-init: test-init
28 EVENT_NOPOLL=1 EVENT_NOSELECT=1 ./test-init
29 EVENT_NOKQUEUE=1 EVENT_NOSELECT=1 ./test-init
30 EVENT_NOKQUEUE=1 EVENT_NOPOLL=1 ./test-init
/openbsd-src/gnu/llvm/llvm/tools/llvm-mca/
H A Dllvm-mca.cpp73 cl::cat(ToolOptions), cl::init("-"));
76 cl::init("-"), cl::cat(ToolOptions),
93 cl::value_desc("cpu-name"), cl::cat(ToolOptions), cl::init("native"));
102 cl::cat(ToolOptions), cl::init(false));
107 cl::cat(ToolOptions), cl::init(-1));
110 PrintImmHex("print-imm-hex", cl::cat(ToolOptions), cl::init(false),
115 cl::cat(ToolOptions), cl::init(0));
119 cl::cat(ToolOptions), cl::init(0));
125 cl::cat(ToolOptions), cl::init(0));
130 cl::cat(ToolOptions), cl::init(0));
[all …]
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Utils/
H A DSizeOpts.cpp18 "pgso", cl::Hidden, cl::init(true),
22 "pgso-lwss-only", cl::Hidden, cl::init(true),
27 "pgso-cold-code-only", cl::Hidden, cl::init(false),
32 "pgso-cold-code-only-for-instr-pgo", cl::Hidden, cl::init(false),
37 "pgso-cold-code-only-for-sample-pgo", cl::Hidden, cl::init(false),
42 "pgso-cold-code-only-for-partial-sample-pgo", cl::Hidden, cl::init(false),
47 "force-pgso", cl::Hidden, cl::init(false),
51 "pgso-cutoff-instr-prof", cl::Hidden, cl::init(950000),
56 "pgso-cutoff-sample-prof", cl::Hidden, cl::init(990000),
/openbsd-src/gnu/llvm/llvm/include/llvm/ADT/
H A DStatistic.h75 return init();
80 return init();
84 init();
90 return init();
94 init();
102 return init();
109 return init();
119 init(); in updateMax()
123 TrackingStatistic &init() { in init() function
/openbsd-src/lib/libcrypto/evp/
H A Dbio_md.c108 bi->init = 0; in md_new()
121 a->init = 0; in md_free()
140 if (b->init) { in md_read()
164 if (b->init) { in md_write()
193 if (b->init) in md_ctrl()
201 if (b->init) { in md_ctrl()
210 b->init = 1; in md_ctrl()
213 if (b->init) in md_ctrl()
228 b->init = 1; in md_ctrl()
235 b->init = 1; in md_ctrl()
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.mike/
H A Doffset1.C16 virtual void init(int argc, char **argv) { in init() function
25 virtual void init(int argc, char **argv) { Bar::init(argc, argv); } in init() function
30 virtual void init(int argc, char **argv) { Barf::init(argc, argv); } in init() function
36 theBar->init(argc, argv); in main()
/openbsd-src/gnu/llvm/llvm/lib/Target/Hexagon/
H A DHexagonTargetMachine.cpp37 EnableCExtOpt("hexagon-cext", cl::Hidden, cl::init(true),
40 static cl::opt<bool> EnableRDFOpt("rdf-opt", cl::Hidden, cl::init(true),
59 cl::Hidden, cl::init(false), cl::desc("Disable store widening"));
62 cl::init(true), cl::Hidden,
65 static cl::opt<bool> EnableEarlyIf("hexagon-eif", cl::init(true), cl::Hidden,
68 static cl::opt<bool> EnableGenInsert("hexagon-insert", cl::init(true),
72 EnableCommGEP("hexagon-commgep", cl::init(true), cl::Hidden,
75 static cl::opt<bool> EnableGenExtract("hexagon-extract", cl::init(true),
78 static cl::opt<bool> EnableGenMux("hexagon-mux", cl::init(true), cl::Hidden,
81 static cl::opt<bool> EnableGenPred("hexagon-gen-pred", cl::init(true),
[all …]
/openbsd-src/gnu/llvm/llvm/tools/llvm-exegesis/
H A Dllvm-exegesis.cpp53 cl::cat(BenchmarkOptions), cl::init(0));
58 cl::cat(BenchmarkOptions), cl::init(""));
63 cl::init(""));
70 cl::cat(Options), cl::init(""));
100 cl::init(exegesis::InstructionBenchmark::Min));
112 cl::init(exegesis::InstructionBenchmark::Duplicate));
117 cl::cat(BenchmarkOptions), cl::init(false));
141 cl::init(exegesis::BenchmarkPhaseSelectorE::Measure));
146 cl::cat(BenchmarkOptions), cl::init(10000));
153 cl::cat(BenchmarkOptions), cl::init(0));
[all …]
/openbsd-src/lib/libfido2/src/
H A Dio.c20 } init; in PACKED_TYPE()
60 fp->body.init.cmd = CTAP_FRAME_INIT | cmd; in tx_empty()
77 if (d->tx_len - CTAP_INIT_HEADER_LEN > sizeof(fp->body.init.data)) in tx_preamble()
83 fp->body.init.cmd = CTAP_FRAME_INIT | cmd; in tx_preamble()
84 fp->body.init.bcnth = (count >> 8) & 0xff; in tx_preamble()
85 fp->body.init.bcntl = count & 0xff; in tx_preamble()
87 memcpy(&fp->body.init.data, buf, count); in tx_preamble()
207 fp->body.init.cmd == (CTAP_FRAME_INIT | CTAP_KEEPALIVE))); in rx_preamble()
214 fp->body.init.cmd = (CTAP_FRAME_INIT | cmd); in rx_preamble()
217 if (fp->cid != d->cid || fp->body.init.cmd != (CTAP_FRAME_INIT | cmd)) { in rx_preamble()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/Target/AArch64/
H A DAArch64TargetMachine.cpp60 cl::init(true), cl::Hidden);
65 cl::init(true), cl::Hidden);
70 cl::init(true), cl::Hidden);
74 cl::init(true), cl::Hidden);
78 cl::init(true), cl::Hidden);
83 cl::init(false), cl::Hidden);
88 cl::init(true), cl::Hidden);
93 cl::init(true), cl::Hidden);
101 cl::init(true));
105 cl::desc("Enable the redundant copy elimination pass"), cl::init(true),
[all …]
/openbsd-src/gnu/gcc/gcc/
H A Dc-omp.c207 c_finish_omp_for (location_t locus, tree decl, tree init, tree cond, in c_finish_omp_for() argument
213 if (EXPR_HAS_LOCATION (init)) in c_finish_omp_for()
214 elocus = EXPR_LOCATION (init); in c_finish_omp_for()
227 if (init == decl) in c_finish_omp_for()
231 init = DECL_INITIAL (decl); in c_finish_omp_for()
232 if (init == NULL) in c_finish_omp_for()
235 init = integer_zero_node; in c_finish_omp_for()
239 init = build_modify_expr (decl, NOP_EXPR, init); in c_finish_omp_for()
240 SET_EXPR_LOCATION (init, elocus); in c_finish_omp_for()
242 gcc_assert (TREE_CODE (init) == MODIFY_EXPR); in c_finish_omp_for()
[all …]
/openbsd-src/gnu/gcc/libstdc++-v3/libsupc++/
H A Deh_globals.cc115 static __eh_globals_init init; variable
121 if (init._M_init) in __cxa_get_globals_fast()
122 g = static_cast<__cxa_eh_globals*>(__gthread_getspecific(init._M_key)); in __cxa_get_globals_fast()
132 if (init._M_init) in __cxa_get_globals()
134 g = static_cast<__cxa_eh_globals*>(__gthread_getspecific(init._M_key)); in __cxa_get_globals()
138 if (v == 0 || __gthread_setspecific(init._M_key, v) != 0) in __cxa_get_globals()

12345678910>>...72