Home
last modified time | relevance | path

Searched refs:ctor (Results 1 – 25 of 204) sorted by relevance

123456789

/netbsd/src/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/
Dcpexprs.exp.tcl158 proc ctor { type arglist } { procedure
166 [ctor derived ""] \
174 [ctor base1 "int"] \
182 [ctor base ""] \
186 [ctor base "int"] \
532 [ctor "policy<int, operation_1<void*> >" "int"] \
536 [ctor "policy<int, operation_2<void*> >" int] \
540 [ctor "policy<int, operation_3<void*> >" "int"] \
544 [ctor "policy<int, operation_4<void*> >" "int"] \
564 [ctor "policyd<int, operation_1<int> >" "int"] \
[all …]
/netbsd/src/external/gpl3/gcc/dist/gcc/cp/
Dconstexpr.cc308 tree ctor; in build_anon_member_initialization() local
314 ctor = build_constructor (TREE_TYPE (field), NULL); in build_anon_member_initialization()
315 CONSTRUCTOR_APPEND_ELT (*vec, field, ctor); in build_anon_member_initialization()
318 ctor = (*vec)->last().value; in build_anon_member_initialization()
319 vec = &CONSTRUCTOR_ELTS (ctor); in build_anon_member_initialization()
1130 tree ctor; member
1887 clear_no_implicit_zero (tree ctor) in clear_no_implicit_zero() argument
1889 if (CONSTRUCTOR_NO_CLEARING (ctor)) in clear_no_implicit_zero()
1891 CONSTRUCTOR_NO_CLEARING (ctor) = false; in clear_no_implicit_zero()
1892 for (auto &e: CONSTRUCTOR_ELTS (ctor)) in clear_no_implicit_zero()
[all …]
Dcvt.cc929 tree ctor = NULL_TREE; in ocp_convert() local
940 ctor = e; in ocp_convert()
945 if (BRACE_ENCLOSED_INITIALIZER_P (ctor)) in ocp_convert()
946 ctor = perform_implicit_conversion (type, ctor, complain); in ocp_convert()
952 ctor = build_user_type_conversion (type, ctor, flags, complain); in ocp_convert()
955 releasing_vec ctor_vec (make_tree_vector_single (ctor)); in ocp_convert()
956 ctor = build_special_member_call (NULL_TREE, in ocp_convert()
961 if (ctor) in ocp_convert()
962 return build_cplus_new (type, ctor, complain); in ocp_convert()
Dinit.cc355 tree ctor in build_value_init() local
358 if (ctor == error_mark_node || TREE_CONSTANT (ctor)) in build_value_init()
359 return ctor; in build_value_init()
364 if (TREE_CODE (ctor) == CALL_EXPR) in build_value_init()
365 fn = get_callee_fndecl (ctor); in build_value_init()
366 ctor = build_aggr_init_expr (type, ctor); in build_value_init()
368 return ctor; in build_value_init()
375 AGGR_INIT_ZERO_FIRST (ctor) = 1; in build_value_init()
376 return ctor; in build_value_init()
1509 tree ctor = perform_target_ctor (TREE_VALUE (mem_inits)); in emit_mem_initializers() local
[all …]
Dcall.cc827 build_list_conv (tree type, tree ctor, int flags, tsubst_flags_t complain) in build_list_conv() argument
830 unsigned len = CONSTRUCTOR_NELTS (ctor); in build_list_conv()
848 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (ctor), i, val) in build_list_conv()
964 build_aggr_conv (tree type, tree ctor, int flags, tsubst_flags_t complain) in build_aggr_conv() argument
982 if (CONSTRUCTOR_IS_DESIGNATED_INIT (ctor)) in build_aggr_conv()
985 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (ctor), i, idx, val) in build_aggr_conv()
1022 if (i < CONSTRUCTOR_NELTS (ctor)) in build_aggr_conv()
1024 val = CONSTRUCTOR_ELT (ctor, i)->value; in build_aggr_conv()
1052 if (i < CONSTRUCTOR_NELTS (ctor)) in build_aggr_conv()
1060 c->u.expr = ctor; in build_aggr_conv()
[all …]
/netbsd/src/external/gpl3/gcc/dist/gcc/
Dsancov.cc205 tree ctor = build_constructor (case_array_type, v); in instrument_switch() local
206 TREE_STATIC (ctor) = 1; in instrument_switch()
207 TREE_PUBLIC (ctor) = 0; in instrument_switch()
208 TREE_CONSTANT (ctor) = 1; in instrument_switch()
209 TREE_READONLY (ctor) = 1; in instrument_switch()
210 DECL_INITIAL (case_array_var) = ctor; in instrument_switch()
Dcoverage.cc1073 tree ctor, stmt, init_fn; in build_init_ctor() local
1085 ctor = NULL; in build_init_ctor()
1088 append_to_statement_list (stmt, &ctor); in build_init_ctor()
1093 cgraph_build_static_cdtor ('I', ctor, priority); in build_init_ctor()
1209 coverage_obj_fn (vec<constructor_elt, va_gc> *ctor, tree fn, in coverage_obj_fn() argument
1218 CONSTRUCTOR_APPEND_ELT (ctor, NULL, in coverage_obj_fn()
1220 return ctor; in coverage_obj_fn()
1227 coverage_obj_finish (vec<constructor_elt, va_gc> *ctor, in coverage_obj_finish() argument
1230 unsigned n_functions = vec_safe_length (ctor); in coverage_obj_finish()
1241 DECL_INITIAL (fn_info_ary) = build_constructor (fn_info_ary_type, ctor); in coverage_obj_finish()
Dgimple-fold.cc7780 fold_array_ctor_reference (tree type, tree ctor, in fold_array_ctor_reference() argument
7793 if (TREE_CODE (TREE_TYPE (ctor)) == ARRAY_TYPE) in fold_array_ctor_reference()
7794 domain_type = TYPE_DOMAIN (TREE_TYPE (ctor)); in fold_array_ctor_reference()
7805 if (TREE_CODE (TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (ctor)))) != INTEGER_CST) in fold_array_ctor_reference()
7807 elt_size = wi::to_offset (TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (ctor)))); in fold_array_ctor_reference()
7838 tree val = get_array_ctor_element_at_index (ctor, access_index, in fold_array_ctor_reference()
7840 if (!val && ctor_idx >= CONSTRUCTOR_NELTS (ctor)) in fold_array_ctor_reference()
7848 constructor_elt *elt = CONSTRUCTOR_ELT (ctor, ctor_idx); in fold_array_ctor_reference()
7850 val = build_zero_cst (TREE_TYPE (TREE_TYPE (ctor))); in fold_array_ctor_reference()
7880 if (ctor_idx >= CONSTRUCTOR_NELTS (ctor)) in fold_array_ctor_reference()
[all …]
Dubsan.cc317 tree ctor = build_constructor_va (type, 3, NULL_TREE, str, NULL_TREE, in ubsan_source_location() local
322 TREE_CONSTANT (ctor) = 1; in ubsan_source_location()
323 TREE_STATIC (ctor) = 1; in ubsan_source_location()
325 return ctor; in ubsan_source_location()
516 tree ctor = build_constructor_va (dtype, 3, NULL_TREE, in ubsan_type_descriptor() local
521 TREE_CONSTANT (ctor) = 1; in ubsan_type_descriptor()
522 TREE_STATIC (ctor) = 1; in ubsan_type_descriptor()
523 DECL_INITIAL (decl) = ctor; in ubsan_type_descriptor()
620 tree ctor = build_constructor (ret, v); in ubsan_create_data() local
636 TREE_CONSTANT (ctor) = 1; in ubsan_create_data()
[all …]
/netbsd/src/crypto/external/bsd/openssl/dist/crypto/perlasm/
Dx86gas.pl269 { my $ctor="${nmdecor}_GLOBAL_\$I\$$f";
271 $initseg.=".type $ctor,\@function\n" if ($::pic);
273 .globl $ctor
275 $ctor:
/netbsd/src/sys/external/bsd/common/include/linux/
Dslab.h200 unsigned long flags, void (*ctor)(void *), void (*dtor)(void *)) in kmem_cache_create_dtor()
215 kc->kc_ctor = ctor; in kmem_cache_create_dtor()
223 unsigned long flags, void (*ctor)(void *)) in kmem_cache_create()
225 return kmem_cache_create_dtor(name, size, align, flags, ctor, NULL); in kmem_cache_create()
/netbsd/src/tests/libexec/ld.elf_so/
Dt_thread_local_dtor.sh39 in ctor: global_dtor
40 in ctor: thread_local
/netbsd/src/external/gpl3/binutils/dist/ld/scripttempl/
Di386go32.sc14 CTOR='.ctor : {
16 *(.ctor)
50 *(.ctor)
Delf32cr16.sc95 .ctor ALIGN(4) :
110 /* We don't want to include the .ctor section from
112 The .ctor section from the crtend file contains the
Delf32crx.sc91 .ctor ALIGN(4) :
107 /* We don't want to include the .ctor section from
109 The .ctor section from the crtend file contains the
Delfd10v.sc32 /* We don't want to include the .ctor section from
34 The .ctor section from the crtend file contains the
/netbsd/src/sys/kern/
Dsubr_percpu.c311 percpu_create(size_t size, percpu_callback_t ctor, percpu_callback_t dtor, in percpu_create() argument
324 pc->pc_ctor = ctor; in percpu_create()
328 if (ctor) { in percpu_create()
352 (*ctor)(buf, cookie, ci); in percpu_create()
/netbsd/src/external/bsd/libevent/dist/
Devmap.c126 #define GET_IO_SLOT_AND_CTOR(x, map, slot, type, ctor, fdinfo_len) \ argument
140 (ctor)(&ent_->ent.type); \
173 #define GET_SIGNAL_SLOT_AND_CTOR(x, map, slot, type, ctor, fdinfo_len) \ argument
180 (ctor)((struct type *)(map)->entries[slot]); \
189 #define GET_IO_SLOT_AND_CTOR(x,map,slot,type,ctor,fdinfo_len) \ argument
190 GET_SIGNAL_SLOT_AND_CTOR(x,map,slot,type,ctor,fdinfo_len)
/netbsd/src/external/bsd/ntp/dist/sntp/libevent/
Devmap.c124 #define GET_IO_SLOT_AND_CTOR(x, map, slot, type, ctor, fdinfo_len) \ argument
138 (ctor)(&ent_->ent.type); \
171 #define GET_SIGNAL_SLOT_AND_CTOR(x, map, slot, type, ctor, fdinfo_len) \ argument
178 (ctor)((struct type *)(map)->entries[slot]); \
187 #define GET_IO_SLOT_AND_CTOR(x,map,slot,type,ctor,fdinfo_len) \ argument
188 GET_SIGNAL_SLOT_AND_CTOR(x,map,slot,type,ctor,fdinfo_len)
/netbsd/src/external/gpl3/gdb/dist/gdb/testsuite/gdb.multi/
Dstart-inferior-specific.c22 ctor (void) in ctor() function
Dstart-inferior-specific-other.c22 ctor (void) in ctor() function
/netbsd/src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
Dstarti.c21 ctor () in ctor() function
/netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/include/std/
Dspanstream61 // [spanbuf.ctor], constructors
235 // [ispanstream.ctor], constructors
327 // [ospanstream.ctor], constructors
395 // [spanstream.ctor], constructors
/netbsd/src/lib/csu/
DREADME38 .ctor: writeable
69 6: Iterate from the end of the .ctor section to the start. Skip the
/netbsd/src/external/bsd/lutok/lib/liblutok/
DMakefile43 COPTS+= -Wno-error=ctor-dtor-privacy -Wno-error=unused-local-typedefs

123456789