Home
last modified time | relevance | path

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

12

/freebsd/sys/contrib/openzfs/config/
H A Dkernel-kmem-cache.m49 static void ctor(void *foo) { /* fake ctor */ }
20 name, size, align, flags, useroffset, usersize, ctor);
/freebsd/sys/gnu/gcov/
H A Dgcov_subr.c117 void (*ctor)(void); in gcov_invoke_ctor() local
127 ctor = (void *)symval.value; in gcov_invoke_ctor()
128 ctor(); in gcov_invoke_ctor()
/freebsd/crypto/openssl/crypto/perlasm/
H A Dx86gas.pl269 { my $ctor="${nmdecor}_GLOBAL_\$I\$$f";
271 $initseg.=".type $ctor,\@function\n" if ($::pic);
273 .globl $ctor
275 $ctor:
/freebsd/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_threadprivate.cpp369 if (d_tn->ct.ctor != 0) { in kmp_threadprivate_insert()
473 if (d_tn->ct.ctor != 0) { in kmp_threadprivate_insert()
474 (void)(*d_tn->ct.ctor)(tn->par_addr); in kmp_threadprivate_insert()
504 void __kmpc_threadprivate_register(ident_t *loc, void *data, kmpc_ctor ctor, in __kmpc_threadprivate_register() argument
522 d_tn->ct.ctor = ctor; in __kmpc_threadprivate_register()
747 kmpc_ctor_vec ctor, kmpc_cctor_vec cctor, in __kmpc_threadprivate_register_vec() argument
767 d_tn->ct.ctorv = ctor; in __kmpc_threadprivate_register_vec()
H A Dkmp.h1833 kmpc_ctor ctor; member
4157 kmpc_ctor_vec ctor,
4162 kmpc_ctor ctor, kmpc_cctor cctor,
/freebsd/sys/sys/
H A Dmodule_khelp.h73 #define KHELP_DECLARE_MOD_UMA(hname, hdata, hhooks, version, size, ctor, dtor) \ argument
80 .umactor = ctor, \
/freebsd/sys/contrib/openzfs/include/os/linux/spl/sys/
H A Dkmem_cache.h182 size_t align, spl_kmem_ctor_t ctor, spl_kmem_dtor_t dtor,
195 #define kmem_cache_create(name, size, align, ctor, dtor, rclm, priv, vmp, fl) \ argument
196 spl_kmem_cache_create(name, size, align, ctor, dtor, rclm, priv, vmp, fl)
/freebsd/sys/compat/linuxkpi/common/src/
H A Dlinux_slab.c109 unsigned flags, linux_kmem_ctor_t *ctor) in linux_kmem_cache_create() argument
135 ctor ? linux_kmem_ctor : NULL, NULL, in linux_kmem_cache_create()
140 c->cache_ctor = ctor; in linux_kmem_cache_create()
/freebsd/sys/vm/
H A Duma.h177 uma_zone_t uma_zcreate(const char *name, size_t size, uma_ctor ctor,
212 uma_zone_t uma_zsecond_create(const char *name, uma_ctor ctor, uma_dtor dtor,
224 uma_zone_t uma_zcache_create(const char *name, int size, uma_ctor ctor,
H A Duma_core.c218 uma_ctor ctor; member
2819 zone->uz_ctor = arg->ctor; in zone_ctor()
3123 args.ctor = keg_ctor; in uma_startup1()
3134 args.ctor = zone_ctor; in uma_startup1()
3288 uma_zcreate(const char *name, size_t size, uma_ctor ctor, uma_dtor dtor, in uma_zcreate() argument
3301 args.ctor = ctor; in uma_zcreate()
3333 uma_zsecond_create(const char *name, uma_ctor ctor, uma_dtor dtor, in uma_zsecond_create() argument
3344 args.ctor = ctor; in uma_zsecond_create()
3361 uma_zcache_create(const char *name, int size, uma_ctor ctor, uma_dtor dtor, in uma_zcache_create() argument
3370 args.ctor = ctor; in uma_zcache_create()
/freebsd/contrib/ntp/sntp/libevent/
H A Devmap.c122 #define GET_IO_SLOT_AND_CTOR(x, map, slot, type, ctor, fdinfo_len) \ argument
136 (ctor)(&ent_->ent.type); \
169 #define GET_SIGNAL_SLOT_AND_CTOR(x, map, slot, type, ctor, fdinfo_len) \ argument
176 (ctor)((struct type *)(map)->entries[slot]); \
185 #define GET_IO_SLOT_AND_CTOR(x,map,slot,type,ctor,fdinfo_len) \ argument
186 GET_SIGNAL_SLOT_AND_CTOR(x,map,slot,type,ctor,fdinfo_len)
/freebsd/contrib/libevent/
H A Devmap.c122 #define GET_IO_SLOT_AND_CTOR(x, map, slot, type, ctor, fdinfo_len) \ argument
136 (ctor)(&ent_->ent.type); \
169 #define GET_SIGNAL_SLOT_AND_CTOR(x, map, slot, type, ctor, fdinfo_len) \ argument
176 (ctor)((struct type *)(map)->entries[slot]); \
185 #define GET_IO_SLOT_AND_CTOR(x,map,slot,type,ctor,fdinfo_len) \ argument
186 GET_SIGNAL_SLOT_AND_CTOR(x,map,slot,type,ctor,fdinfo_len)
/freebsd/contrib/llvm-project/compiler-rt/lib/cfi/
H A Dcfi_ignorelist.txt15 # This ctor is used by std::make_shared and needs to cast to uninitialized T*
/freebsd/contrib/llvm-project/libcxx/include/experimental/
H A Dmemory24 // default ctor
31 // copying ctors (in addition to compiler-generated copy ctor)
H A Dpropagate_const59 // [propagate_const.ctor], constructors
/freebsd/sys/conf/
H A Dldscript.i386116 /* We don't want to include the .ctor section from
118 The .ctor section from the crtend file contains the
H A Dldscript.amd64122 /* We don't want to include the .ctor section from
124 The .ctor section from the crtend file contains the
/freebsd/sys/compat/linuxkpi/common/include/linux/
H A Dslab.h223 size_t size, size_t align, unsigned flags, linux_kmem_ctor_t *ctor);
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DCXXRecordDeclDefinitionBits.def130 /// provided default ctor also doesn't have an in-class initializer.
166 /// C++11 [class.ctor]p5, C++11 [class.copy]p12, C++11 [class.copy]p25,
/freebsd/sys/kern/
H A Dlink_elf.c363 void (**ctor)(void); in link_elf_invoke_cbs() local
368 cnt = size / sizeof(*ctor); in link_elf_invoke_cbs()
369 ctor = (void *)addr; in link_elf_invoke_cbs()
371 if (ctor[i] != NULL) in link_elf_invoke_cbs()
372 (*ctor[i])(); in link_elf_invoke_cbs()
H A Dlink_elf_obj.c648 void (**ctor)(void); in link_elf_invoke_cbs() local
653 cnt = size / sizeof(*ctor); in link_elf_invoke_cbs()
654 ctor = (void *)addr; in link_elf_invoke_cbs()
656 if (ctor[i] != NULL) in link_elf_invoke_cbs()
657 (*ctor[i])(); in link_elf_invoke_cbs()
H A Dvfs_subr.c713 uma_ctor ctor; in vntblinit() local
755 ctor = vnode_ctor; in vntblinit()
758 ctor = NULL; in vntblinit()
761 vnode_zone = uma_zcreate("VNODE", sizeof(struct vnode), ctor, dtor, in vntblinit()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGClass.cpp1975 const CXXConstructorDecl *ctor, const ArrayType *arrayType, in EmitCXXAggrConstructorCall() argument
1982 EmitCXXAggrConstructorCall(ctor, numElements, arrayBegin, E, in EmitCXXAggrConstructorCall()
1995 void CodeGenFunction::EmitCXXAggrConstructorCall(const CXXConstructorDecl *ctor, in EmitCXXAggrConstructorCall() argument
2045 QualType type = getContext().getTypeDeclType(ctor->getParent()); in EmitCXXAggrConstructorCall()
2069 !ctor->getParent()->hasTrivialDestructor()) { in EmitCXXAggrConstructorCall()
2080 EmitCXXConstructorCall(ctor, Ctor_Complete, /*ForVirtualBase=*/false, in EmitCXXAggrConstructorCall()
/freebsd/sys/contrib/openzfs/module/os/linux/spl/
H A Dspl-kmem-cache.c677 spl_kmem_ctor_t ctor, spl_kmem_dtor_t dtor, void *reclaim, in spl_kmem_cache_create() argument
705 skc->skc_ctor = ctor; in spl_kmem_cache_create()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DDiagnosticGroups.td162 def : DiagGroup<"ctor-dtor-privacy">;
448 def PureVirtualCallFromCtorDtor: DiagGroup<"call-to-pure-virtual-from-ctor-dtor">;
820 def ReorderCtor : DiagGroup<"reorder-ctor">;
1166 DiagGroup<"delegating-ctor-cycles">;

12