Searched refs:children (Results 126 - 150 of 348) sorted by relevance

1234567891011>>

/freebsd-current/sys/dev/cxgbe/cxgbei/
H A Dcxgbei.c150 struct sysctl_oid_list *children; local
172 children = SYSCTL_CHILDREN(oid);
174 oid = SYSCTL_ADD_NODE(&ci->ctx, children, OID_AUTO, "iscsi",
176 children = SYSCTL_CHILDREN(oid);
179 SYSCTL_ADD_UINT(&ci->ctx, children, OID_AUTO, "ddp_threshold",
182 SYSCTL_ADD_UINT(&ci->ctx, children, OID_AUTO, "max_rx_data_len",
185 SYSCTL_ADD_UINT(&ci->ctx, children, OID_AUTO, "max_tx_data_len",
/freebsd-current/sys/contrib/openzfs/cmd/zed/agents/
H A Dzfs_diagnosis.c227 uint_t c, children; local
246 * Iterate over all children.
249 &children) == 0) {
250 for (c = 0; c < children; c++)
255 &children) == 0) {
256 for (c = 0; c < children; c++)
261 &children) == 0) {
262 for (c = 0; c < children; c++)
H A Dzfs_mod.c255 * children[0]:
266 * children[1]:
616 uint_t c, children; local
622 * First iterate over any children.
625 &child, &children) == 0) {
626 for (c = 0; c < children; c++)
634 &child, &children) == 0) {
635 for (c = 0; c < children; c++)
639 &child, &children) == 0) {
640 for (c = 0; c < children;
[all...]
/freebsd-current/sys/dev/clk/
H A Dclk.c109 clknode_list_t children; /* List of our children */ member in struct:clknode
279 * Recompute the cached frequency for this node and all its children.
292 /* XXX If an error happens while refreshing children
303 /* Refresh cache for all children. */
304 TAILQ_FOREACH(entry, &(clknode->children), sibling_link) {
604 TAILQ_INIT(&clknode->children);
759 /* Remove me from old children list. */
761 TAILQ_REMOVE(&clknode->parent->children, clknode, sibling_link);
764 /* Insert into children lis
1665 struct clknode *clknode, *children; local
[all...]
/freebsd-current/contrib/llvm-project/clang/lib/AST/
H A DExprObjC.cpp326 Stmt::child_range ObjCMessageExpr::children() { function in class:ObjCMessageExpr
336 Stmt::const_child_range ObjCMessageExpr::children() const { function in class:ObjCMessageExpr
337 auto Children = const_cast<ObjCMessageExpr *>(this)->children();
/freebsd-current/sys/dev/nvdimm/
H A Dnvdimm.c314 struct sysctl_oid_list *children; local
325 children = SYSCTL_CHILDREN(oid);
379 SYSCTL_ADD_STRING(ctx, children, OID_AUTO, "flags",
/freebsd-current/contrib/llvm-project/lldb/source/Host/common/
H A DXML.cpp127 return XMLNode(m_node->children);
195 xmlNodePtr child = attr->children;
285 for (xmlNodePtr node = m_node->children; node != nullptr;
/freebsd-current/sys/contrib/openzfs/module/zfs/
H A Ddnode.c618 * their children (the entries in os_dnodes). This allows
1157 dnode_slots_hold(dnode_children_t *children, int idx, int slots) argument
1162 dnode_handle_t *dnh = &children->dnc_children[i];
1168 dnode_slots_rele(dnode_children_t *children, int idx, int slots) argument
1173 dnode_handle_t *dnh = &children->dnc_children[i];
1183 dnode_slots_tryenter(dnode_children_t *children, int idx, int slots) argument
1188 dnode_handle_t *dnh = &children->dnc_children[i];
1192 dnh = &children->dnc_children[j];
1204 dnode_set_slots(dnode_children_t *children, int idx, int slots, void *ptr) argument
1209 dnode_handle_t *dnh = &children
1215 dnode_check_slots_free(dnode_children_t *children, int idx, int slots) argument
1249 dnode_reclaim_slots(dnode_children_t *children, int idx, int slots) argument
1274 dnode_children_t *children = dmu_buf_get_user(&dn->dn_dbuf->db); local
[all...]
/freebsd-current/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DRunLoopAutoreleaseLeakChecker.cpp66 for (const Stmt *C : Parent->children()) {
H A DDirectIvarAssignment.cpp79 for (const Stmt *Child : S->children())
H A DObjCContainersASTChecker.cpp149 // Recurse and check children.
154 for (Stmt *Child : S->children())
H A DObjCUnusedIVarsChecker.cpp58 for (const Stmt *SubStmt : S->children())
/freebsd-current/contrib/llvm-project/lldb/tools/lldb-instr/
H A DInstrument.cpp57 for (auto &C : Body->children()) {
/freebsd-current/contrib/llvm-project/clang/lib/Analysis/
H A DCloneDetection.cpp247 /// hashes for all possible StmtSequences in the children of this Stmt.
259 for (const Stmt *Child : S->children()) {
323 for (const Stmt *Child : S->children()) {
363 // Generate hash codes for all children of S and save them in StmtsByHash.
454 for (const Stmt *S : Seq.front()->children()) {
544 // children). We skip such statements as they don't reference any
555 // Recursively check all children of the given statement.
556 for (const Stmt *Child : S->children()) {
/freebsd-current/contrib/llvm-project/clang/lib/CodeGen/
H A DVarBypassDetector.cpp104 for (const Stmt *SubStmt : S->children()) {
/freebsd-current/sys/sys/
H A Dsmp.h53 TAILQ_HEAD(topo_children, topo_node) children; member in struct:topo_node
79 struct cpu_group *cg_child; /* Optional children groups. */
84 int16_t cg_children; /* Number of children groups. */
/freebsd-current/usr.sbin/jail/tests/
H A Djail_basic_test.sh70 jail -c name=basejail persist ip4.addr=192.0.1.1 children.max=1
85 # Create jail with no child - children.max should be 0 by default
/freebsd-current/usr.sbin/rpc.ypupdated/
H A Dypupdated_server.c52 int children = 0; variable
H A Dypupdated_main.c174 children--;
/freebsd-current/sys/powerpc/powernv/
H A Dplatform_powernv.c482 const cpuset_t *cpus, int children, int level, int flags)
486 child = children != 0 ? smp_topo_alloc(children) : NULL;
492 group->cg_children = children;
481 cpu_group_init(struct cpu_group *group, struct cpu_group *parent, const cpuset_t *cpus, int children, int level, int flags) argument
/freebsd-current/usr.bin/gprof/
H A Dgprof.h94 struct arcstruct *arc_childlist; /* children-of-this-parent list */
117 double childtime; /* cumulative ticks in children */
133 arctype *children; /* list of callee arcs */ member in struct:nl
H A Ddfn.c57 * given this parent, depth first number its children.
85 * visit yourself before your children
89 * visit children
91 for ( arcp = parentp -> children ; arcp ; arcp = arcp -> arc_childlist ) {
97 * visit yourself after your children
221 * and fix any children it has glommed
275 * visit a node after all its children
H A Dprintgprof.c185 "" , "" , "" , "" , "called" , "total" , "children");
347 arcp = parentp -> children;
348 for ( arcp = parentp -> children ; arcp ; arcp = arcp -> arc_childlist ) {
409 * unlink children from parent,
410 * then insertion sort back on to sorted's children.
417 for ( (arcp = parentp -> children)&&(detachedp = arcp -> arc_childlist);
435 * reattach sorted children to parent
437 parentp -> children = sorted.arc_childlist;
/freebsd-current/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DFormattersHelpers.h53 std::vector<std::string> children, const char *description,
/freebsd-current/contrib/expat/examples/
H A Delement_declarations.c160 = stackPushMalloc(stackTop, model->children + (u - 1), level + 1);

Completed in 487 milliseconds

1234567891011>>