| /netbsd/src/external/gpl3/gcc/dist/gcc/cp/ |
| D | optimize.cc | 89 clone_body (tree clone, tree fn, void *arg_map) in clone_body() argument 98 id.dst_fn = clone; in clone_body() 116 if (DECL_NAME (clone) == base_dtor_identifier in clone_body() 117 || DECL_NAME (clone) == base_ctor_identifier) in clone_body() 126 append_to_statement_list_force (stmts, &DECL_SAVED_TREE (clone)); in clone_body() 241 tree clone; in populate_clone_array() local 247 FOR_EACH_CLONE (clone, fn) in populate_clone_array() 248 if (DECL_NAME (clone) == complete_dtor_identifier in populate_clone_array() 249 || DECL_NAME (clone) == complete_ctor_identifier) in populate_clone_array() 250 fns[1] = clone; in populate_clone_array() [all …]
|
| D | class.cc | 4842 tree clone = copy_decl (fn); in copy_fndecl_with_name() local 4844 DECL_NAME (clone) = name; in copy_fndecl_with_name() 4849 set_constraints (clone, copy_node (ci)); in copy_fndecl_with_name() 4851 SET_DECL_ASSEMBLER_NAME (clone, NULL_TREE); in copy_fndecl_with_name() 4853 DECL_PENDING_INLINE_INFO (clone) = NULL; in copy_fndecl_with_name() 4854 DECL_PENDING_INLINE_P (clone) = 0; in copy_fndecl_with_name() 4859 DECL_VIRTUAL_P (clone) = 0; in copy_fndecl_with_name() 4860 DECL_VINDEX (clone) = NULL_TREE; in copy_fndecl_with_name() 4866 DECL_OVERLOADED_OPERATOR_CODE_RAW (clone) = ovl_op->ovl_op_code; in copy_fndecl_with_name() 4869 if (DECL_VIRTUAL_P (clone)) in copy_fndecl_with_name() [all …]
|
| /netbsd/src/external/bsd/elftosb/dist/elftosb2/ |
| D | ElftosbAST.h | 50 virtual ASTNode * clone() const = 0; 114 virtual ASTNode * clone() const { return new ListASTNode(*this); } in clone() function 157 virtual ASTNode * clone() const { return NULL; } in clone() function 173 virtual ASTNode * clone() const { return NULL; } in clone() function 189 virtual ASTNode * clone() const { return NULL; } in clone() function 206 virtual ASTNode * clone() const { return new CommandFileASTNode(*this); } in clone() function 266 virtual ASTNode * clone() const { return new IntConstExprASTNode(*this); } in clone() function 289 virtual ASTNode * clone() const { return new VariableExprASTNode(*this); } in clone() function 312 virtual ASTNode * clone() const { return new SymbolRefExprASTNode(*this); } in clone() function 333 virtual ASTNode * clone() const { return new NegativeExprASTNode(*this); } in clone() function [all …]
|
| D | ElftosbAST.cpp | 55 m_list.push_back((*it)->clone()); in ListASTNode() 137 m_options = dynamic_cast<ListASTNode*>(other.m_options->clone()); in CommandFileASTNode() 138 m_constants = dynamic_cast<ListASTNode*>(other.m_constants->clone()); in CommandFileASTNode() 139 m_sources = dynamic_cast<ListASTNode*>(other.m_sources->clone()); in CommandFileASTNode() 140 m_sections = dynamic_cast<ListASTNode*>(other.m_sections->clone()); in CommandFileASTNode() 262 m_symbol = dynamic_cast<SymbolASTNode*>(other.m_symbol->clone()); in SymbolRefExprASTNode() 346 m_expr = dynamic_cast<ExprASTNode*>(other.m_expr->clone()); in NegativeExprASTNode() 380 m_expr = dynamic_cast<ExprASTNode*>(other.m_expr->clone()); in BooleanNotExprASTNode() 490 m_symbol = dynamic_cast<SymbolASTNode*>(other.m_symbol->clone()); in SizeofOperatorASTNode() 596 m_left = dynamic_cast<ExprASTNode*>(other.m_left->clone()); in BinaryOpExprASTNode() [all …]
|
| /netbsd/src/external/gpl3/gdb/dist/gdb/ |
| D | location.h | 81 virtual location_spec_up clone () const = 0; 152 location_spec_up clone () const override; 174 location_spec_up clone () const override; 200 location_spec_up clone () const override; 238 location_spec_up clone () const override;
|
| D | location.c | 50 probe_location_spec::clone () const in clone() function 90 linespec_location_spec::clone () const in clone() function 133 address_location_spec::clone () const in clone() function 176 explicit_location_spec::clone () const in clone() function
|
| /netbsd/src/external/cddl/osnet/dist/uts/common/fs/zfs/ |
| D | dsl_dataset.c | 1824 dsl_dataset_t *clone; in get_clones_stat() local 1827 za.za_first_integer, FTAG, &clone)); in get_clones_stat() 1828 dsl_dir_name(clone->ds_dir, buf); in get_clones_stat() 1830 dsl_dataset_rele(clone, FTAG); in get_clones_stat() 2392 dsl_dataset_t *ds, *clone; in dsl_dataset_rollback_sync() local 2404 VERIFY0(dsl_dataset_hold_obj(dp, cloneobj, FTAG, &clone)); in dsl_dataset_rollback_sync() 2406 dsl_dataset_clone_swap_sync_impl(clone, ds, tx); in dsl_dataset_rollback_sync() 2409 dsl_destroy_head_sync_impl(clone, tx); in dsl_dataset_rollback_sync() 2411 dsl_dataset_rele(clone, FTAG); in dsl_dataset_rollback_sync() 3004 dsl_dataset_clone_swap_check_impl(dsl_dataset_t *clone, in dsl_dataset_clone_swap_check_impl() argument [all …]
|
| D | dsl_destroy.c | 224 dsl_dataset_t *clone; in dsl_dataset_remove_clones_key() local 227 za.za_first_integer, FTAG, &clone)); in dsl_dataset_remove_clones_key() 228 if (clone->ds_dir->dd_origin_txg > mintxg) { in dsl_dataset_remove_clones_key() 229 dsl_deadlist_remove_key(&clone->ds_deadlist, in dsl_dataset_remove_clones_key() 231 dsl_dataset_remove_clones_key(clone, mintxg, tx); in dsl_dataset_remove_clones_key() 233 dsl_dataset_rele(clone, FTAG); in dsl_dataset_remove_clones_key()
|
| /netbsd/src/external/gpl3/gcc/dist/gcc/ |
| D | cgraphclones.cc | 95 cgraph_edge::clone (cgraph_node *n, gcall *call_stmt, unsigned stmt_uid, in clone() function in cgraph_edge 309 const cgraph_node *clone, in dump_callgraph_transformation() argument 319 DECL_SOURCE_COLUMN (original->decl), clone->asm_name (), in dump_callgraph_transformation() 320 clone->order, DECL_SOURCE_FILE (clone->decl), in dump_callgraph_transformation() 321 DECL_SOURCE_LINE (clone->decl), DECL_SOURCE_COLUMN (clone->decl), in dump_callgraph_transformation() 325 symtab->cloned_nodes.add (clone); in dump_callgraph_transformation() 443 e->clone (new_node, e->call_stmt, e->lto_stmt_uid, new_node->count, old_count, in create_clone() 447 e->clone (new_node, e->call_stmt, e->lto_stmt_uid, in create_clone() 959 e->clone (new_version, e->call_stmt, in create_version_clone() 965 e->clone (new_version, e->call_stmt, in create_version_clone()
|
| D | omp-simd-clone.cc | 425 for (struct cgraph_node *clone = node->simd_clones; clone; in simd_clone_mangle() local 426 clone = clone->simdclone->next_clone) in simd_clone_mangle() 427 if (id_equal (DECL_ASSEMBLER_NAME (clone->decl), str)) in simd_clone_mangle() 1713 struct cgraph_simd_clone *clone = clone_info; in expand_simd_clones() local 1719 clone = simd_clone_struct_alloc (clone_info->nargs in expand_simd_clones() 1721 simd_clone_struct_copy (clone, clone_info); in expand_simd_clones() 1725 clone->nargs -= clone_info->inbranch; in expand_simd_clones() 1726 clone->simdlen = orig_simdlen; in expand_simd_clones() 1728 targetm.simd_clone.compute_vecsize_and_simdlen (node, clone, in expand_simd_clones() 1732 clone->inbranch = 1; in expand_simd_clones() [all …]
|
| /netbsd/src/tests/lib/libc/sys/ |
| D | t_fork.c | 349 NESTED(nested_clone, clone, 0) 350 NESTED(nested_clone_vm, clone, CLONE_VM) in NESTED() argument 351 NESTED(nested_clone_fs, clone, CLONE_FS) in NESTED() 352 NESTED(nested_clone_files, clone, CLONE_FILES) in NESTED() 354 NESTED(nested_clone_vfork, clone, CLONE_VFORK) in NESTED()
|
| /netbsd/src/sys/external/bsd/ipf/netinet/ |
| D | ip_state.c | 2302 ipstate_t *clone; in ipf_state_clone() local 2310 KMALLOC(clone, ipstate_t *); in ipf_state_clone() 2311 if (clone == NULL) { in ipf_state_clone() 2315 bcopy((char *)is, (char *)clone, sizeof(*clone)); in ipf_state_clone() 2317 MUTEX_NUKE(&clone->is_lock); in ipf_state_clone() 2322 clone->is_sti.tqe_pnext = NULL; in ipf_state_clone() 2323 clone->is_sti.tqe_next = NULL; in ipf_state_clone() 2324 clone->is_sti.tqe_ifq = NULL; in ipf_state_clone() 2325 clone->is_sti.tqe_parent = clone; in ipf_state_clone() 2327 clone->is_die = ONE_DAY + softc->ipf_ticks; in ipf_state_clone() [all …]
|
| /netbsd/src/lib/libc/arch/sparc64/sys/ |
| D | __clone.S | 37 WEAK_ALIAS(clone, __clone) 76 call %l0 ! Call the clone's entry point.
|
| /netbsd/src/external/gpl3/gdb/dist/gdb/tui/ |
| D | tui-layout.h | 59 virtual std::unique_ptr<tui_layout_base> clone () const = 0; 155 std::unique_ptr<tui_layout_base> clone () const override; 237 std::unique_ptr<tui_layout_base> clone () const override;
|
| /netbsd/src/external/cddl/osnet/dist/uts/common/fs/zfs/sys/ |
| D | dsl_dataset.h | 262 int dsl_dataset_clone_swap(dsl_dataset_t *clone, dsl_dataset_t *origin_head, 316 int dsl_dataset_clone_swap_check_impl(dsl_dataset_t *clone, 318 void dsl_dataset_clone_swap_sync_impl(dsl_dataset_t *clone,
|
| /netbsd/src/common/dist/zlib/amiga/ |
| D | Makefile.sas | 29 copy clone zlib.h zconf.h INCLUDE: 30 copy clone z.lib LIB:
|
| /netbsd/src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/ |
| D | step-over-syscall.exp | 28 clone "(56|120)"} 39 clone "(120|220)"}
|
| /netbsd/src/external/gpl3/gcc/dist/maintainer-scripts/ |
| D | update_web_docs_git | 116 git clone -q $GITROOT gcc 118 git clone -q -b releases/gcc-$RELEASE $GITROOT gcc
|
| /netbsd/src/lib/libc/sys/ |
| D | Lint_clone.c | 13 clone(int (*func)(void *), void *stack, int flags, void *arg) in clone() function
|
| /netbsd/src/lib/libc/arch/ia64/sys/ |
| D | __clone.S | 35 WEAK_ALIAS(clone, __clone)
|
| /netbsd/src/external/cddl/osnet/dist/lib/libzfs/common/ |
| D | libzfs_iter.c | 50 zfs_handle_t *clone = zfs_open(zhp->zfs_hdl, nvpair_name(pair), in zfs_iter_clones() local 52 if (clone != NULL) { in zfs_iter_clones() 53 int err = func(clone, data); in zfs_iter_clones()
|
| /netbsd/src/external/gpl3/binutils/dist/gold/ |
| D | resolve.cc | 956 Symbol::clone(const Symbol* from) in clone() function in gold::Symbol 999 Sized_symbol<size>::clone(const Sized_symbol<size>* from) in clone() function in gold::Sized_symbol 1003 return Symbol::clone(from); in clone() 1207 Sized_symbol<32>::clone(const Sized_symbol<32>*); 1211 Sized_symbol<64>::clone(const Sized_symbol<64>*);
|
| /netbsd/src/external/gpl3/gdb/dist/gdb/testsuite/gdb.threads/ |
| D | clone-attach-detach.c | 56 clone_pid = clone (clone_fn, stack + STACK_SIZE, CLONE_FLAGS, NULL); in main()
|
| /netbsd/src/lib/libc/arch/aarch64/sys/ |
| D | __clone.S | 35 WEAK_ALIAS(clone, __clone)
|
| /netbsd/src/lib/libc/arch/powerpc64/sys/ |
| D | __clone.S | 33 WEAK_ALIAS(clone, __clone)
|