Home
last modified time | relevance | path

Searched refs:children (Results 1 – 25 of 308) sorted by relevance

12345678910>>...13

/linux-6.15/tools/net/sunrpc/xdrgen/
H A Dxdr_ast.py543 return _XdrValue(children[0].children[0].value)
549 value = int(children[0].children[0].value, base=10)
551 value = int(children[0].children[0].value, base=16)
553 value = int(children[0].children[0].value, base=8)
579 body = children[1]
617 spec = children[0]
625 spec = children[0]
656 fields = children[1].children
684 arm = children[0]
693 discriminant = body.children[0].children[0]
[all …]
/linux-6.15/tools/testing/selftests/cgroup/
H A Dtest_cpu.c314 struct cpu_hogger children[3] = {}; in run_cpucg_weight_test() local
328 if (!children[i].cgroup) in run_cpucg_weight_test()
331 if (cg_create(children[i].cgroup)) in run_cpucg_weight_test()
343 children[i].pid = pid; in run_cpucg_weight_test()
357 children[i].usage = cg_read_key_long(children[i].cgroup, in run_cpucg_weight_test()
360 if (validate(children, ARRAY_SIZE(children))) in run_cpucg_weight_test()
366 cg_destroy(children[i].cgroup); in run_cpucg_weight_test()
367 free(children[i].cgroup); in run_cpucg_weight_test()
402 if (children[i + 1].usage <= children[i].usage) in overprovision_validate()
405 delta = children[i + 1].usage - children[i].usage; in overprovision_validate()
[all …]
H A Dtest_memcontrol.c404 char *children[4] = {NULL}; in test_memcg_protection() local
455 for (i = 0; i < ARRAY_SIZE(children); i++) { in test_memcg_protection()
457 if (!children[i]) in test_memcg_protection()
460 if (cg_create(children[i])) in test_memcg_protection()
472 if (cg_write(children[0], attribute, "75M")) in test_memcg_protection()
476 if (cg_write(children[2], attribute, "0")) in test_memcg_protection()
495 for (i = 0; i < ARRAY_SIZE(children); i++) in test_memcg_protection()
520 if (!reclaim_until(children[0], MB(10))) in test_memcg_protection()
548 if (!children[i]) in test_memcg_protection()
551 cg_destroy(children[i]); in test_memcg_protection()
[all …]
/linux-6.15/tools/perf/Documentation/
H A Dcallchain-overhead-calculation.txt10 The 'children' overhead is calculated by adding all period values of
16 It might be confusing that the sum of all the 'children' overhead
20 spread over the children.
65 When the --children option is enabled, the 'self' overhead values of
67 calculate the 'children' overhead. In this case the report could be
97 'children' overhead of 'bar', 'main' and '\_\_libc_start_main'.
99 'children' overhead of 'main' and '\_\_libc_start_main'.
102 same (100%) 'children' overhead (even though they have zero 'self'
106 is sorted by its values. The 'children' overhead is disabled by
107 specifying --no-children option on the command line or by adding
[all …]
/linux-6.15/tools/testing/selftests/arm64/fp/
H A Dfp-stress.c44 static struct child_data *children; variable
278 if (children[i].pid == info->si_pid) { in handle_child_signal()
279 children[i].exited = true; in handle_child_signal()
308 child_stop(&children[i]); in handle_exit_signal()
515 children = calloc(sizeof(*children), tests); in main()
516 if (!children) in main()
618 if (children[i].output_seen || in main()
619 children[i].exited) in main()
637 child_tickle(&children[i]); in main()
650 child_stop(&children[i]); in main()
[all …]
/linux-6.15/tools/testing/selftests/arm64/gcs/
H A Dgcs-stress.c40 static struct child_data *children; variable
295 children[i].exited = true; in handle_child_signal()
324 child_stop(&children[i]); in handle_exit_signal()
399 children = calloc(sizeof(*children), tests); in main()
400 if (!children) in main()
440 start_thread(&children[i], i); in main()
490 if (children[i].output_seen || in main()
491 children[i].exited) in main()
507 child_tickle(&children[i]); in main()
520 child_stop(&children[i]); in main()
[all …]
/linux-6.15/tools/perf/scripts/python/
H A Dmem-phys-addr.py29 children: Dict[IomemEntry, set[IomemEntry]] = collections.defaultdict(set) variable
41 global children
58 children[parent].add(entry)
86 global children
87 for child in children[entry]:
93 global children
102 print_entries(children[entry])
/linux-6.15/drivers/mfd/
H A Dwl1273-core.c164 int children = 0; in wl1273_core_probe() local
174 if (!(pdata->children & WL1273_RADIO_CHILD)) { in wl1273_core_probe()
191 cell = &core->cells[children]; in wl1273_core_probe()
195 children++; in wl1273_core_probe()
203 if (pdata->children & WL1273_CODEC_CHILD) { in wl1273_core_probe()
204 cell = &core->cells[children]; in wl1273_core_probe()
210 children++; in wl1273_core_probe()
214 __func__, children); in wl1273_core_probe()
217 children, NULL, 0, NULL); in wl1273_core_probe()
H A Dtwl6040.c638 int irq, ret, children = 0; in twl6040_probe() local
756 cell = &twl6040->cells[children]; in twl6040_probe()
762 children++; in twl6040_probe()
768 cell = &twl6040->cells[children]; in twl6040_probe()
774 children++; in twl6040_probe()
778 cell = &twl6040->cells[children]; in twl6040_probe()
780 children++; in twl6040_probe()
783 cell = &twl6040->cells[children]; in twl6040_probe()
785 children++; in twl6040_probe()
791 ret = mfd_add_devices(&client->dev, -1, twl6040->cells, children, in twl6040_probe()
/linux-6.15/lib/
H A Dgeneric-radix-tree.c49 new_node->children[0] = n; in __genradix_ptr_alloc()
57 new_node->children[0] = NULL; in __genradix_ptr_alloc()
63 &n->children[offset >> genradix_depth_shift(level)]; in __genradix_ptr_alloc()
114 while (!n->children[i]) { in __genradix_iter_peek()
132 n = n->children[i]; in __genradix_iter_peek()
173 while (!n->children[i]) { in __genradix_iter_peek_prev()
190 n = n->children[i]; in __genradix_iter_peek_prev()
203 if (n->children[i]) in genradix_free_recurse()
204 genradix_free_recurse(n->children[i], level - 1); in genradix_free_recurse()
/linux-6.15/tools/perf/ui/browsers/
H A Dannotate-data.c26 struct list_head children; member
104 INIT_LIST_HEAD(&entry->children); in add_child_entries()
106 parent_list = &parent->children; in add_child_entries()
120 if (!list_empty(&member->children)) { in add_child_entries()
132 INIT_LIST_HEAD(&bracket->children); in add_child_entries()
133 list_add_tail(&bracket->node, &entry->children); in add_child_entries()
182 if (list_empty(&entry->children)) in get_first_child()
190 if (list_empty(&entry->children)) in get_last_child()
412 if (!list_empty(&be->children)) in browser__write()
451 if (list_empty(&entry->children)) in annotated_data_browser__fold()
[all …]
/linux-6.15/drivers/net/ethernet/mellanox/mlx5/core/
H A Dfs_core.h171 struct list_head children; member
256 struct list_head children; member
398 list_for_each_entry_reverse(pos, &(prio)->node.children, list)
401 list_for_each_entry(pos, (&(prio)->node.children), list)
404 fs_list_for_each_entry(pos, &(ns)->node.children)
407 fs_list_for_each_entry(pos, &(prio)->node.children)
410 fs_list_for_each_entry(pos, &(prio)->node.children)
413 fs_list_for_each_entry_safe(pos, tmp, &(prio)->node.children)
416 fs_list_for_each_entry(pos, &(ft)->node.children)
419 fs_list_for_each_entry(pos, &(fg)->node.children)
[all …]
/linux-6.15/drivers/net/ethernet/netronome/nfp/abm/
H A Dqdisc.c23 return qdisc->children[id] && in nfp_abm_qdisc_child_valid()
114 qdisc->children[i] = NULL; in nfp_abm_qdisc_unlink_children()
201 !qdisc->children[0]; in nfp_abm_offload_compile_red()
311 mq->children[i] = NULL; in nfp_abm_qdisc_clear_mq()
332 kfree(qdisc->children); in nfp_abm_qdisc_free()
341 unsigned int children) in nfp_abm_qdisc_alloc() argument
351 if (children) { in nfp_abm_qdisc_alloc()
352 qdisc->children = kcalloc(children, sizeof(void *), GFP_KERNEL); in nfp_abm_qdisc_alloc()
353 if (!qdisc->children) in nfp_abm_qdisc_alloc()
374 kfree(qdisc->children); in nfp_abm_qdisc_alloc()
[all …]
/linux-6.15/fs/nfs/blocklayout/
H A Ddev.c54 bl_unregister_dev(&dev->children[i]); in bl_unregister_dev()
69 if (!bl_register_dev(&dev->children[i])) { in bl_register_dev()
71 bl_unregister_dev(&dev->children[--i]); in bl_register_dev()
92 bl_free_device(&dev->children[i]); in bl_free_device()
93 kfree(dev->children); in bl_free_device()
278 child = &dev->children[chunk_idx]; in bl_map_stripe()
463 if (!d->children) in bl_parse_concat()
473 d->children[i].start += len; in bl_parse_concat()
474 len += d->children[i].len; in bl_parse_concat()
492 if (!d->children) in bl_parse_stripe()
[all …]
/linux-6.15/fs/bcachefs/
H A Dsnapshot.c249 bkey_fsck_err_on(le32_to_cpu(s.v->children[0]) < le32_to_cpu(s.v->children[1]), in bch2_snapshot_validate()
253 bkey_fsck_err_on(s.v->children[0] && s.v->children[0] == s.v->children[1], in bch2_snapshot_validate()
307 t->children[0] = le32_to_cpu(s.v->children[0]); in __bch2_mark_snapshot()
308 t->children[1] = le32_to_cpu(s.v->children[1]); in __bch2_mark_snapshot()
1067 if (le32_to_cpu(s->children[0]) < le32_to_cpu(s->children[1])) in normalize_snapshot_child_pointers()
1068 swap(s->children[0], s->children[1]); in normalize_snapshot_child_pointers()
1161 if (s.v->children[0]) { in bch2_snapshot_node_delete()
1262 if (n_parent->v.children[0] || n_parent->v.children[1]) { in bch2_snapshot_node_create_children()
1362 if (s->children[i] && in __live_child()
1365 return s->children[i]; in __live_child()
[all …]
/linux-6.15/include/linux/phy/
H A Dphy.h180 struct device_node *children; member
209 #define of_phy_provider_register_full(dev, children, xlate) \ argument
210 __of_phy_provider_register(dev, children, THIS_MODULE, xlate)
212 #define devm_of_phy_provider_register_full(dev, children, xlate) \ argument
213 __devm_of_phy_provider_register(dev, children, THIS_MODULE, xlate)
281 struct device_node *children, struct module *owner,
285 struct device_node *children, struct module *owner,
519 struct device *dev, struct device_node *children, struct module *owner, in __of_phy_provider_register() argument
527 *dev, struct device_node *children, struct module *owner, in __devm_of_phy_provider_register() argument
/linux-6.15/drivers/i2c/muxes/
H A Di2c-mux-gpmux.c77 int children; in i2c_mux_probe() local
97 children = of_get_child_count(np); in i2c_mux_probe()
99 muxc = i2c_mux_alloc(parent, dev, children, 0, 0, in i2c_mux_probe()
132 dev_info(dev, "%d-port mux on %s adapter\n", children, parent->name); in i2c_mux_probe()
/linux-6.15/net/ieee802154/
H A Dpan.c36 is_assoc = !list_empty(&wpan_dev->children) || wpan_dev->parent; in cfg802154_device_is_associated()
59 list_for_each_entry(child, &wpan_dev->children, node) in cfg802154_device_is_child()
86 list_for_each_entry(child, &wpan_dev->children, node) in cfg802154_get_free_short_addr()
/linux-6.15/drivers/iio/multiplexer/
H A Diio-mux.c343 int children; in mux_probe() local
373 children = 0; in mux_probe()
376 children++; in mux_probe()
378 if (children <= 0) { in mux_probe()
384 sizeof_priv += sizeof(*mux->child) * children; in mux_probe()
385 sizeof_priv += sizeof(*mux->chan) * children; in mux_probe()
394 mux->chan = (struct iio_chan_spec *)(mux->child + children); in mux_probe()
408 indio_dev->num_channels = children; in mux_probe()
/linux-6.15/Documentation/devicetree/bindings/mtd/
H A Dnvidia-tegra20-nand.txt17 Optional children nodes:
18 Individual NAND chips are children of the NAND controller node. Currently
21 Required children node properties:
24 Optional children node properties:
/linux-6.15/drivers/net/mdio/
H A Dmdio-mux.c25 struct mdio_mux_child_bus *children; member
130 struct mdio_mux_child_bus *cb = pb->children; in mdio_mux_uninit_children()
237 cb->next = pb->children; in mdio_mux_init()
238 pb->children = cb; in mdio_mux_init()
241 if (pb->children) { in mdio_mux_init()
/linux-6.15/drivers/powercap/
H A Ddtpm.c72 list_for_each_entry(child, &dtpm->children, sibling) { in __get_power_uw()
91 list_for_each_entry(child, &dtpm->children, sibling) { in __dtpm_rebalance_weight()
174 if (!list_empty(&dtpm->children)) in dtpm_release_zone()
231 list_for_each_entry(child, &dtpm->children, sibling) { in __set_power_limit_uw()
322 INIT_LIST_HEAD(&dtpm->children); in dtpm_init()
398 list_add_tail(&dtpm->sibling, &parent->children); in dtpm_register()
622 list_for_each_entry_safe(child, aux, &dtpm->children, sibling) in __dtpm_destroy_hierarchy()
/linux-6.15/arch/s390/kvm/
H A Dgmap-vsie.c44 list_for_each_entry(sg, &parent->children, list) { in gmap_find_shadow()
107 list_for_each_entry(sg, &parent->children, list) { in gmap_shadow()
119 list_add(&new->list, &parent->children); in gmap_shadow()
/linux-6.15/fs/xfs/scrub/
H A Dnlinks.h79 xfs_nlink_t children; member
106 return ret + live->children; in xchk_nlink_total()
/linux-6.15/scripts/
H A Dasn1_compiler.c686 struct element *children; member
942 element->children = alloc_elem(); in parse_type()
943 element = element->children; in parse_type()
1150 struct element *children, **child_p = &children, *element; in parse_compound() local
1193 children->flags &= ~ELEMENT_CONDITIONAL; in parse_compound()
1203 return children; in parse_compound()
1246 for (c = e->children; c; c = c->next) in dump_element()
1406 for (ce = e->children; ce; ce = ce->next) in render_out_of_line_list()
1471 render_element(out, e->children, e); in render_element()
1576 render_element(out, e->children, NULL); in render_element()
[all …]

12345678910>>...13