| /NextBSD/sys/compat/linuxkpi/common/include/linux/ |
| HD | slab.h | 67 void (*ctor)(void *); in kmem_ctor() local 69 ctor = arg; in kmem_ctor() 70 ctor(mem); in kmem_ctor() 77 void (*ctor)(void *)) in kmem_cache_create() 86 c->cache_zone = uma_zcreate(name, size, ctor ? kmem_ctor : NULL, in kmem_cache_create() 88 c->cache_ctor = ctor; in kmem_cache_create()
|
| /NextBSD/crypto/openssl/crypto/perlasm/ |
| HD | x86gas.pl | 241 { my $ctor="${nmdecor}_GLOBAL_\$I\$$f"; 243 $initseg.=".type $ctor,\@function\n" if ($::pic); 245 .globl $ctor 247 $ctor:
|
| /NextBSD/contrib/binutils/ld/scripttempl/ |
| HD | armcoff.sc | 12 CTOR='.ctor : { 14 *(.ctor) 40 LONG (-1); *(.ctors); *(.ctor); LONG (0); }
|
| HD | elf32cr16.sc | 80 .ctor ALIGN(4) : 95 /* We don't want to include the .ctor section from 97 The .ctor section from the crtend file contains the
|
| /NextBSD/contrib/gcc/ |
| HD | tree-ssa-ccp.c | 982 tree base, ctor, idx, field; in fold_const_aggregate_ref() local 1002 ctor = DECL_INITIAL (base); in fold_const_aggregate_ref() 1007 ctor = fold_const_aggregate_ref (base); in fold_const_aggregate_ref() 1014 if (ctor == NULL_TREE in fold_const_aggregate_ref() 1015 || (TREE_CODE (ctor) != CONSTRUCTOR in fold_const_aggregate_ref() 1016 && TREE_CODE (ctor) != STRING_CST) in fold_const_aggregate_ref() 1017 || !TREE_STATIC (ctor)) in fold_const_aggregate_ref() 1042 if (TREE_CODE (ctor) == STRING_CST) in fold_const_aggregate_ref() 1045 == TYPE_MODE (TREE_TYPE (TREE_TYPE (ctor)))) in fold_const_aggregate_ref() 1046 && (GET_MODE_CLASS (TYPE_MODE (TREE_TYPE (TREE_TYPE (ctor)))) in fold_const_aggregate_ref() [all …]
|
| HD | gimplify.c | 2935 tree ctor = TREE_OPERAND (*expr_p, 1); in gimplify_init_constructor() local 2936 tree type = TREE_TYPE (ctor); in gimplify_init_constructor() 2940 if (TREE_CODE (ctor) != CONSTRUCTOR) in gimplify_init_constructor() 2949 elts = CONSTRUCTOR_ELTS (ctor); in gimplify_init_constructor() 2974 = categorize_ctor_elements (ctor, &num_nonzero_elements, in gimplify_init_constructor() 2984 DECL_INITIAL (object) = ctor; in gimplify_init_constructor() 3048 TREE_TYPE (ctor) = type = TREE_TYPE (object); in gimplify_init_constructor() 3065 DECL_INITIAL (new) = ctor; in gimplify_init_constructor() 3101 CONSTRUCTOR_ELTS (ctor) = NULL; in gimplify_init_constructor() 3138 ctor = build_complex (type, r, i); in gimplify_init_constructor() [all …]
|
| /NextBSD/sys/sys/ |
| HD | module_khelp.h | 73 #define KHELP_DECLARE_MOD_UMA(hname, hdata, hhooks, version, size, ctor, dtor) \ argument 80 .umactor = ctor, \
|
| /NextBSD/sys/vm/ |
| HD | uma.h | 178 uma_zone_t uma_zcreate(const char *name, size_t size, uma_ctor ctor, 214 uma_zone_t uma_zsecond_create(char *name, uma_ctor ctor, uma_dtor dtor, 237 uma_zone_t uma_zcache_create(char *name, int size, uma_ctor ctor, uma_dtor dtor,
|
| HD | uma_core.c | 175 uma_ctor ctor; member 1573 zone->uz_ctor = arg->ctor; in zone_ctor() 1805 args.ctor = keg_ctor; in uma_startup() 1832 args.ctor = zone_ctor; in uma_startup() 1934 uma_zcreate(const char *name, size_t size, uma_ctor ctor, uma_dtor dtor, in uma_zcreate() argument 1946 args.ctor = ctor; in uma_zcreate() 1957 ctor == NULL && dtor == NULL && uminit == NULL && fini == NULL) { in uma_zcreate() 1958 args.ctor = trash_ctor; in uma_zcreate() 1982 uma_zsecond_create(char *name, uma_ctor ctor, uma_dtor dtor, in uma_zsecond_create() argument 1994 args.ctor = ctor; in uma_zsecond_create() [all …]
|
| /NextBSD/contrib/gcc/cp/ |
| HD | cvt.c | 743 tree ctor = NULL_TREE; in ocp_convert() local 754 ctor = e; in ocp_convert() 764 ctor = build_user_type_conversion (type, ctor, flags); in ocp_convert() 766 ctor = build_special_member_call (NULL_TREE, in ocp_convert() 768 build_tree_list (NULL_TREE, ctor), in ocp_convert() 770 if (ctor) in ocp_convert() 771 return build_cplus_new (type, ctor); in ocp_convert()
|
| HD | mangle.c | 1387 write_special_name_constructor (const tree ctor) in write_special_name_constructor() argument 1389 if (DECL_BASE_CONSTRUCTOR_P (ctor)) in write_special_name_constructor() 1393 gcc_assert (DECL_COMPLETE_CONSTRUCTOR_P (ctor) in write_special_name_constructor() 1398 || DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (ctor)); in write_special_name_constructor()
|
| /NextBSD/contrib/ntp/sntp/libevent/ |
| HD | evmap.c | 121 #define GET_IO_SLOT_AND_CTOR(x, map, slot, type, ctor, fdinfo_len) \ argument 135 (ctor)(&ent_->ent.type); \ 168 #define GET_SIGNAL_SLOT_AND_CTOR(x, map, slot, type, ctor, fdinfo_len) \ argument 175 (ctor)((struct type *)(map)->entries[slot]); \ 184 #define GET_IO_SLOT_AND_CTOR(x,map,slot,type,ctor,fdinfo_len) \ argument 185 GET_SIGNAL_SLOT_AND_CTOR(x,map,slot,type,ctor,fdinfo_len)
|
| /NextBSD/contrib/gcclibs/libgomp/ |
| HD | ChangeLog | 67 * testsuite/libgomp.c++/ctor-11.C: New test. 68 * testsuite/libgomp.c++/ctor-12.C: New test. 793 testsuite/libgomp.c++/ctor-5.C, testsuite/libgomp.c++/ctor-8.C, 794 testsuite/libgomp.c++/ctor-9.C, testsuite/libgomp.c++/pr24455.C, 882 testsuite/libgomp.c++/ctor-5.C, testsuite/libgomp.c++/ctor-8.C, 883 testsuite/libgomp.c++/ctor-9.C, testsuite/libgomp.c++/pr24455-1.C, 1051 * testsuite/libgomp.c++/ctor-1.C: New. 1052 * testsuite/libgomp.c++/ctor-2.C: New. 1053 * testsuite/libgomp.c++/ctor-3.C: New. 1054 * testsuite/libgomp.c++/ctor-4.C: New. [all …]
|
| /NextBSD/contrib/binutils/bfd/doc/ |
| HD | ChangeLog-9103 | 370 * Makefile.in (DOCFILES): Remove ctor.texi. 371 (IPROTOS): Remove ctor.ip. 372 (SRCIPROT): Remove $(srcdir)/../ctor.c. 373 (ctor.texi): Remove target. 374 (libbfd.h): Remove dependency on $(srcdir)/../ctor.c. Remove 375 $(MKDOC) run on $(srcdir)/../ctor.c.
|
| /NextBSD/sys/conf/ |
| HD | ldscript.sparc64 | 174 /* We don't want to include the .ctor section from 176 The .ctor section from the crtend file contains the
|
| HD | ldscript.i386 | 112 /* We don't want to include the .ctor section from 114 The .ctor section from the crtend file contains the
|
| HD | ldscript.mips.mips64 | 205 /* We don't want to include the .ctor section from 207 The .ctor section from the crtend file contains the
|
| HD | ldscript.mips | 204 /* We don't want to include the .ctor section from 206 The .ctor section from the crtend file contains the
|
| HD | ldscript.amd64 | 124 /* We don't want to include the .ctor section from 126 The .ctor section from the crtend file contains the
|
| HD | ldscript.mips.cfe | 221 /* We don't want to include the .ctor section from 223 The .ctor section from the crtend file contains the
|
| /NextBSD/sys/kern/ |
| HD | link_elf.c | 337 void (**ctor)(void); in link_elf_invoke_ctors() local 342 cnt = size / sizeof(*ctor); in link_elf_invoke_ctors() 343 ctor = (void *)addr; in link_elf_invoke_ctors() 345 if (ctor[i] != NULL) in link_elf_invoke_ctors() 346 (*ctor[i])(); in link_elf_invoke_ctors()
|
| HD | link_elf_obj.c | 420 void (**ctor)(void); in link_elf_invoke_ctors() local 425 cnt = size / sizeof(*ctor); in link_elf_invoke_ctors() 426 ctor = (void *)addr; in link_elf_invoke_ctors() 428 if (ctor[i] != NULL) in link_elf_invoke_ctors() 429 (*ctor[i])(); in link_elf_invoke_ctors()
|
| /NextBSD/contrib/libstdc++/config/abi/pre/ |
| D | gnu-versioned-namespace.ver | 134 # *_type_info classes, ctor and dtor
|
| /NextBSD/gnu/lib/libsupc++/ |
| D | Version.map | 63 # *_type_info classes, ctor and dtor
|
| /NextBSD/contrib/libstdc++/ |
| D | ChangeLog-1999 | 278 * bits/std_ostream.h: Tweaks, sentry ctor can't be inlined. 1074 for default ctor. 1077 basic_filebuf ctor with fileno open arguments. Thus, filebufs are 1285 * bits/std_ostream.h: Make default ctor/assign/operator= private. 1701 * stl/bits/std_stdexcept.h: Forward-declare __Named_exception ctor. 1703 * src/stdexcept.cc: Define ctor here. 1707 * bits/std_streambuf.h: Add a private copy ctor and assignment 1803 (gslice::gslice(const gslice&)): implement copy-ctor to support 1810 (ctor gslice::_Indexer::_Indexer): implement. 1818 ctor): Put in a const_cast. [all …]
|