| /openbsd/src/gnu/usr.bin/perl/cpan/File-Temp/t/ |
| D | fork.t | 35 my $children = 2; 36 for my $i (1 .. $children) { 55 while ($children) { 57 $children--; 70 $children = 2; 71 for my $i (1 .. $children) { 88 while ($children) { 90 $children--;
|
| /openbsd/src/gnu/llvm/lldb/include/lldb/Core/ |
| D | FormatEntity.h | 118 const Definition *children = nullptr; member 135 const Definition *children, 137 : name(name), type(t), num_children(num_children), children(children), in name() 144 const Definition (&children)[N], 146 return Definition(name, t, N, children, keep_separator); 162 void AppendEntry(const Entry &&entry) { children.push_back(entry); } in AppendEntry() 167 children.clear(); in Clear() 183 const size_t n = children.size(); 184 const size_t m = rhs.children.size(); 186 if (!(children[i] == rhs.children[i])) [all …]
|
| /openbsd/src/usr.bin/ssh/ |
| D | sshd.c | 167 static struct early_child *children; variable 201 children = xcalloc(options.max_startups, sizeof(*children)); in child_alloc() 203 children[i].pipefd = -1; in child_alloc() 204 children[i].pid = -1; in child_alloc() 220 if (children[i].pipefd != -1 || children[i].pid > 0) in child_register() 222 child = &(children[i]); in child_register() 295 if (children == NULL || pid <= 0) in child_exit() 298 if (children[i].pid == pid) { in child_exit() 299 children[i].have_status = 1; in child_exit() 300 children[i].status = status; in child_exit() [all …]
|
| D | srclimit.c | 45 } *children; variable 121 children = xcalloc(max_children, sizeof(*children)); in srclimit_init() 123 children[i].id = -1; in srclimit_init() 147 if (children[i].id == -1) { in srclimit_check_allow() 150 } else if (addr_cmp(&children[i].addr, &xb) == 0) { in srclimit_check_allow() 173 children[first_unused].id = id; in srclimit_check_allow() 174 memcpy(&children[first_unused].addr, &xb, sizeof(xb)); in srclimit_check_allow() 189 if (children[i].id == id) { in srclimit_done() 190 children[i].id = -1; in srclimit_done()
|
| /openbsd/src/gnu/usr.bin/binutils/gdb/ |
| D | varobj.c | 107 struct varobj_child *children; member 249 static void cplus_class_num_children (struct type *type, int children[3]); 1005 if ((*varp)->children != NULL) in varobj_update() 1008 for (c = (*varp)->children; c != NULL; c = c->next) in varobj_update() 1017 if (v->children != NULL) in varobj_update() 1020 for (c = v->children; c != NULL; c = c->next) in varobj_update() 1122 for (vc = var->children; vc != NULL; vc = next) in delete_variable_1() 1287 for (vc = var->children; vc != NULL; vc = vc->next) in child_exists() 1334 vc = parent->children; in save_child_in_parent() 1335 parent->children = in save_child_in_parent() [all …]
|
| /openbsd/src/gnu/llvm/clang/include/clang/AST/ |
| D | StmtObjC.h | 67 child_range children() { in children() function 71 const_child_range children() const { in children() function 119 child_range children() { return child_range(&Body, &Body + 1); } in children() function 121 const_child_range children() const { in children() function 155 child_range children() { in children() function 159 const_child_range children() const { in children() function 263 child_range children() { in children() function 268 const_child_range children() const { in children() function 269 return const_child_range(const_cast<ObjCAtTryStmt *>(this)->children()); in children() 347 child_range children() { in children() function [all …]
|
| D | OpenMPClause.h | 92 child_range children(); 93 const_child_range children() const { in children() function 94 auto Children = const_cast<OMPClause *>(this)->children(); in children() 103 auto Children = const_cast<OMPClause *>(this)->children(); in used_children() 123 child_range children() { in children() function 127 const_child_range children() const { in children() function 176 child_range children() { return child_range(&S, &S + 1); } in children() function 178 const_child_range children() const { return const_child_range(&S, &S + 1); } in children() function 498 child_range children() { in children() function 503 const_child_range children() const { in children() function [all …]
|
| D | ExprObjC.h | 75 child_range children() { return child_range(&String, &String+1); } in children() function 77 const_child_range children() const { in children() function 110 child_range children() { in children() function 114 const_child_range children() const { in children() function 166 child_range children() { return child_range(&SubExpr, &SubExpr+1); } in children() function 168 const_child_range children() const { in children() function 245 child_range children() { in children() function 250 const_child_range children() const { in children() function 251 auto Children = const_cast<ObjCArrayLiteral *>(this)->children(); in children() 385 child_range children() { in children() function [all …]
|
| D | ExprCXX.h | 356 child_range children() { in children() function 751 child_range children() { in children() function 755 const_child_range children() const { in children() function 786 child_range children() { in children() function 790 const_child_range children() const { in children() function 833 child_range children() { return child_range(&SubExpr, &SubExpr + 1); } in children() function 835 const_child_range children() const { in children() function 907 child_range children() { in children() function 914 const_child_range children() const { in children() function 969 child_range children() { in children() function [all …]
|
| D | StmtCXX.h | 57 child_range children() { return child_range(&HandlerBlock, &HandlerBlock+1); } in children() function 59 const_child_range children() const { in children() function 118 child_range children() { in children() function 122 const_child_range children() const { in children() function 216 child_range children() { in children() function 220 const_child_range children() const { in children() function 301 child_range children() { in children() function 305 const_child_range children() const { in children() function 431 child_range children() { in children() function 436 const_child_range children() const { in children() function [all …]
|
| D | Stmt.h | 1269 child_range children(); in alignas() 1271 const_child_range children() const { in alignas() 1272 auto Children = const_cast<Stmt *>(this)->children(); in alignas() 1276 child_iterator child_begin() { return children().begin(); } in alignas() 1277 child_iterator child_end() { return children().end(); } in alignas() 1279 const_child_iterator child_begin() const { return children().begin(); } in alignas() 1280 const_child_iterator child_end() const { return children().end(); } in alignas() 1344 child_range children() { in children() function 1349 const_child_range children() const { in children() function 1350 auto Children = const_cast<DeclStmt *>(this)->children(); in children() [all …]
|
| D | Expr.h | 1131 child_range children() { return child_range(&SubExpr, &SubExpr+1); } in children() function 1132 const_child_range children() const { in children() function 1180 child_range children() { in children() function 1184 const_child_range children() const { in children() function 1445 child_range children() { in children() function 1449 const_child_range children() const { in children() function 1540 child_range children() { in children() function 1543 const_child_range children() const { in children() function 1587 child_range children() { in children() function 1590 const_child_range children() const { in children() function [all …]
|
| /openbsd/src/gnu/gcc/gcc/ |
| D | tree-ssa-math-opts.c | 120 struct occurrence *children; member 150 occ_new (basic_block bb, struct occurrence *children) in occ_new() argument 158 occ->children = children; in occ_new() 186 occ->next = new_occ->children; in insert_bb() 187 new_occ->children = occ; in insert_bb() 195 insert_bb (new_occ, dom, &occ->children); in insert_bb() 256 for (occ_child = occ->children; occ_child; occ_child = occ_child->next) in compute_merit() 259 if (occ_child->children) in compute_merit() 339 for (occ_child = occ->children; occ_child; occ_child = occ_child->next) in insert_reciprocals() 373 child = occ->children; in free_bb()
|
| /openbsd/src/usr.bin/make/ |
| D | suff.c | 108 LIST children; /* List of Suff we have a transformation from */ member 126 int children; /* Count of existing children (so we don't free member 492 if (!Lst_IsEmpty(&gn->children)) { in Suff_ParseAsTransform() 493 Lst_Destroy(&gn->children, NOFREE); in Suff_ParseAsTransform() 494 Lst_Init(&gn->children); in Suff_ParseAsTransform() 528 Lst_Init(&s->children); in new_suffixi() 586 if (Lst_IsEmpty(&gn->commands) && Lst_IsEmpty(&gn->children)) in build_suffixes_graph() 591 SuffInsert(&s2->children, s); in build_suffixes_graph() 664 s2->children = 0; in SuffAddSrc() 665 targ->children++; in SuffAddSrc() [all …]
|
| D | expandchildren.c | 148 if (Lst_Member(&pgn->children, gn) == NULL) { in ExpandVarChildren() 149 Lst_Append(&pgn->children, after, gn); in ExpandVarChildren() 189 if (Lst_Member(&pgn->children, gn) == NULL) { in ExpandWildChildren() 190 Lst_Append(&pgn->children, after, gn); in ExpandWildChildren() 233 Lst_Remove(&pgn->children, ln); in ExpandChildren()
|
| /openbsd/src/gnu/usr.bin/binutils/gprof/ |
| D | fsf_callg_bl.m | 3 the total amount of time spent in each function and its children. 16 in this function and its children. Note that due to 22 children This is the total amount of time propagated into this 23 function by its children. 41 children This is the amount of time that was propagated from 42 the function's children into this parent. 58 For the function's children, the fields have the following meanings: 63 children This is the amount of time that was propagated from the 64 child's children to the function. 78 cycle (as parents) and the members of the cycle (as children.)
|
| /openbsd/src/gnu/usr.bin/binutils-2.17/gprof/ |
| D | fsf_callg_bl.m | 3 the total amount of time spent in each function and its children. 16 in this function and its children. Note that due to 22 children This is the total amount of time propagated into this 23 function by its children. 41 children This is the amount of time that was propagated from 42 the function's children into this parent. 58 For the function's children, the fields have the following meanings: 63 children This is the amount of time that was propagated from the 64 child's children to the function. 78 cycle (as parents) and the members of the cycle (as children.)
|
| /openbsd/src/gnu/llvm/clang/include/clang/Tooling/Syntax/ |
| D | Nodes.td | 51 let children = [ 66 let children = [ 78 let children = [ 86 let children = [ 101 let children = [ 109 let children = [ 117 let children = [ 135 let children = [ 143 let children = [ 151 let children = [ [all …]
|
| /openbsd/src/usr.sbin/smtpd/ |
| D | parser.c | 44 TAILQ_HEAD(, node) children; 76 TAILQ_INIT(&root->children); in cmd_install() 81 TAILQ_FOREACH(tmp, &node->children, entry) { in cmd_install() 89 TAILQ_INIT(&tmp->children); in cmd_install() 106 TAILQ_INSERT_TAIL(&node->children, tmp, entry); in cmd_install() 184 TAILQ_FOREACH(tmp, &node->children, entry) { in cmd_run() 196 TAILQ_FOREACH(tmp, &node->children, entry) { in cmd_run() 221 if (TAILQ_FIRST(&node->children) == NULL) { in cmd_run() 227 TAILQ_FOREACH(tmp, &node->children, entry) { in cmd_run()
|
| /openbsd/src/gnu/llvm/clang/bindings/python/tests/cindex/ |
| D | test_diagnostics.py | 97 children = d.children 98 self.assertEqual(len(children), 1) 99 self.assertEqual(children[0].severity, Diagnostic.Note) 100 self.assertRegex(children[0].spelling, 102 self.assertEqual(children[0].location.line, 1) 103 self.assertEqual(children[0].location.column, 6)
|
| /openbsd/src/usr.bin/tmux/ |
| D | mode-tree.c | 62 struct mode_tree_list children; member 104 struct mode_tree_list children; member 140 child = mode_tree_find_item(&mti->children, tag); in mode_tree_find_item() 150 mode_tree_free_items(&mti->children); in mode_tree_free_item() 209 if (!TAILQ_EMPTY(&mti->children)) in mode_tree_build_lines() 212 mode_tree_build_lines(mtd, &mti->children, depth + 1); in mode_tree_build_lines() 250 mode_tree_clear_tagged(&mti->children); in mode_tree_clear_tagged() 456 TAILQ_INIT(&mtd->children); in mode_tree_start() 519 TAILQ_CONCAT(&mtd->saved, &mtd->children, entry); in mode_tree_build() 520 TAILQ_INIT(&mtd->children); in mode_tree_build() [all …]
|
| /openbsd/src/usr.sbin/nsd/ |
| D | ipc.c | 217 if(nsd->children[i].child_fd == fd) { in child_is_done() 218 nsd->children[i].child_fd = -1; in child_is_done() 219 nsd->children[i].handler->fd = -1; in child_is_done() 220 if(nsd->children[i].need_to_exit) { in child_is_done() 222 (int)nsd->children[i].pid)); in child_is_done() 223 nsd->children[i].has_exited = 1; in child_is_done() 227 (int)nsd->children[i].pid); in child_is_done() 233 nsd->children[i].pid = -1; in child_is_done() 464 if(!nsd->children[i].need_to_exit) in parent_check_all_children_exited() 466 if(!nsd->children[i].has_exited) in parent_check_all_children_exited() [all …]
|
| /openbsd/src/gnu/usr.bin/perl/cpan/Test-Simple/t/Test2/modules/EventFacet/ |
| D | Parent.t | 9 my $one = $CLASS->new(details => 'foo', hid => 'abc', children => [], buffered => 1); 14 is_deeply($one->children, [], "Got 'children' value");
|
| /openbsd/src/sys/dev/usb/ |
| D | upd.c | 51 struct upd_usage_entry *children; member 103 struct upd_sensor_head children; /* list of children sensors */ member 202 SLIST_INIT(&sc->sc_sensors[i].children); in upd_attach() 238 entry->nchildren, entry->children, queue); in upd_attach_sensor_tree() 262 entry->children, &sensor->children); in upd_attach_sensor_tree() 400 SLIST_FOREACH(child, &sensor->children, dep_next) in upd_sensor_invalidate() 442 SLIST_FOREACH(child, &sensor->children, dep_next) in upd_sensor_update() 447 upd_request_children(sc, &sensor->children); in upd_sensor_update()
|
| /openbsd/src/gnu/llvm/lld/Common/ |
| D | Timer.cpp | 33 parent.children.push_back(this); in Timer() 41 for (const auto &child : children) in print() 67 for (const auto &child : children) in print()
|