Home
last modified time | relevance | path

Searched refs:sibling (Results 1 – 25 of 78) sorted by relevance

1234

/openbmc/u-boot/lib/
H A Drbtree.c195 struct rb_node *node = NULL, *sibling, *tmp1, *tmp2; in ____rb_erase_color() local
205 sibling = parent->rb_right; in ____rb_erase_color()
206 if (node != sibling) { /* node == parent->rb_left */ in ____rb_erase_color()
207 if (rb_is_red(sibling)) { in ____rb_erase_color()
217 parent->rb_right = tmp1 = sibling->rb_left; in ____rb_erase_color()
218 sibling->rb_left = parent; in ____rb_erase_color()
220 __rb_rotate_set_parents(parent, sibling, root, in ____rb_erase_color()
222 augment_rotate(parent, sibling); in ____rb_erase_color()
223 sibling = tmp1; in ____rb_erase_color()
225 tmp1 = sibling->rb_right; in ____rb_erase_color()
[all …]
H A Dof_live.c120 np->sibling = dad->child; in unflatten_dt_node()
236 struct device_node *next = child->sibling; in unflatten_dt_node()
238 child->sibling = np->child; in unflatten_dt_node()
/openbmc/qemu/util/
H A Dinterval-tree.c351 RBNode *node = NULL, *sibling, *tmp1, *tmp2; in rb_erase_color() local
361 sibling = parent->rb_right; in rb_erase_color()
362 if (node != sibling) { /* node == parent->rb_left */ in rb_erase_color()
363 if (rb_is_red(sibling)) { in rb_erase_color()
373 tmp1 = sibling->rb_left; in rb_erase_color()
375 qatomic_set(&sibling->rb_left, parent); in rb_erase_color()
377 rb_rotate_set_parents(parent, sibling, root, RB_RED); in rb_erase_color()
378 augment->rotate(parent, sibling); in rb_erase_color()
379 sibling = tmp1; in rb_erase_color()
381 tmp1 = sibling->rb_right; in rb_erase_color()
[all …]
/openbmc/libbej/test/
H A Dbej_tree_test.cpp21 EXPECT_THAT(node.nodeAttr.sibling, nullptr); in TEST()
38 EXPECT_THAT(node.nodeAttr.sibling, nullptr); in TEST()
55 EXPECT_THAT(node.nodeAttr.sibling, nullptr); in TEST()
83 EXPECT_THAT(child1.leaf.nodeAttr.sibling, &child2); in TEST()
100 EXPECT_THAT(child.leaf.nodeAttr.sibling, nullptr); in TEST()
133 EXPECT_THAT(child.leaf.nodeAttr.sibling, nullptr); in TEST()
152 EXPECT_THAT(child.leaf.nodeAttr.sibling, nullptr); in TEST()
171 EXPECT_THAT(child.leaf.nodeAttr.sibling, nullptr); in TEST()
190 EXPECT_THAT(child.leaf.nodeAttr.sibling, nullptr); in TEST()
/openbmc/libbej/src/
H A Dbej_tree.c12 node->nodeAttr.sibling = NULL; in bejTreeInitParent()
51 node->nodeAttr.sibling = NULL; in bejTreeInitChildNode()
126 lastChild->sibling = child; in bejTreeLinkChildToParent()
150 parent->metaData.nextChild = currentChild->sibling; in bejParentGoToNextChild()
151 return currentChild->sibling; in bejParentGoToNextChild()
/openbmc/qemu/hw/core/
H A Dbus.c53 QTAILQ_FOREACH_RCU(kid, &bus->children, sibling) { in qbus_walk_children()
96 QTAILQ_FOREACH_RCU(kid, &bus->children, sibling) { in bus_reset_child_foreach()
128 QLIST_INSERT_HEAD(&bus->parent->child_bus, bus, sibling); in qbus_init_internal()
150 QLIST_REMOVE(bus, sibling); in bus_unparent()
203 QTAILQ_FOREACH_RCU(kid, &bus->children, sibling) { in bus_set_realized()
H A Dclock.c90 QLIST_FOREACH(child, &clk->children, sibling) { in clock_propagate_period()
121 QLIST_INSERT_HEAD(&src->children, clk, sibling); in clock_set_source()
135 QLIST_REMOVE(clk, sibling); in clock_disconnect()
199 QLIST_FOREACH_SAFE(child, &clk->children, sibling, next) { in clock_finalizefn()
H A Dqdev.c62 QTAILQ_FOREACH(kid, &bus->children, sibling) { in bus_remove_child()
67 QTAILQ_REMOVE_RCU(&bus->children, kid, sibling); in bus_remove_child()
91 QTAILQ_INSERT_HEAD_RCU(&bus->children, kid, sibling); in bus_add_child()
259 QLIST_FOREACH(bus, &dev->child_bus, sibling) { in device_reset_child_foreach()
332 QLIST_FOREACH(bus, &dev->child_bus, sibling) { in qdev_get_child_bus()
355 QLIST_FOREACH(bus, &dev->child_bus, sibling) { in qdev_walk_children()
380 QTAILQ_FOREACH_RCU(kid, &bus->children, sibling) { in qdev_find_recursive()
387 QLIST_FOREACH(child, &dev->child_bus, sibling) { in qdev_find_recursive()
533 QLIST_FOREACH(bus, &dev->child_bus, sibling) { in device_set_realized()
576 QLIST_FOREACH(bus, &dev->child_bus, sibling) { in device_set_realized()
[all …]
/openbmc/qemu/hw/misc/
H A Domap_clk.c32 struct clk *sibling; member
628 for (i = clk->child1; i; i = i->sibling) in omap_clk_update()
643 for (i = clk->child1; i; i = i->sibling) in omap_clk_rate_update_full()
666 for (p = &clk->parent->child1; *p != clk; p = &(*p)->sibling); in omap_clk_reparent()
667 *p = clk->sibling; in omap_clk_reparent()
672 clk->sibling = parent->child1; in omap_clk_reparent()
677 clk->sibling = NULL; in omap_clk_reparent()
729 j->sibling = k->child1; in omap_clk_init()
733 k->sibling = j->child1; in omap_clk_init()
/openbmc/qemu/hw/smbios/
H A Dsmbios_type_38.c89 QTAILQ_FOREACH(kid, &bus->children, sibling) { in smbios_add_ipmi_devices()
110 QLIST_FOREACH(childbus, &dev->child_bus, sibling) { in smbios_add_ipmi_devices()
/openbmc/qemu/system/
H A Dqdev-monitor.c375 QLIST_FOREACH(child, &dev->child_bus, sibling) { in qbus_error_append_bus_list_hint()
389 QTAILQ_FOREACH(kid, &bus->children, sibling) { in qbus_error_append_dev_list_hint()
405 QLIST_FOREACH(child, &dev->child_bus, sibling) { in qbus_find_bus()
423 QTAILQ_FOREACH(kid, &bus->children, sibling) { in qbus_find_dev()
429 QTAILQ_FOREACH(kid, &bus->children, sibling) { in qbus_find_dev()
435 QTAILQ_FOREACH(kid, &bus->children, sibling) { in qbus_find_dev()
486 QTAILQ_FOREACH(kid, &bus->children, sibling) { in qbus_find_recursive()
488 QLIST_FOREACH(child, &dev->child_bus, sibling) { in qbus_find_recursive()
814 QTAILQ_FOREACH(kid, &bus->children, sibling) { in qbus_print()
822 QLIST_FOREACH(child_bus, &dev->child_bus, sibling) { in qbus_print()
/openbmc/openbmc/poky/meta/recipes-bsp/opensbi/opensbi/
H A D0001-Makefile-Add-flag-for-reprodubility-compiler-flags.patch37 CFLAGS += -fno-omit-frame-pointer -fno-optimize-sibling-calls
44 ASFLAGS += -fno-omit-frame-pointer -fno-optimize-sibling-calls
/openbmc/qemu/hw/s390x/
H A Devent-facility.c61 QTAILQ_FOREACH(kid, &ef->sbus.qbus.children, sibling) { in event_pending()
80 QTAILQ_FOREACH(kid, &ef->sbus.qbus.children, sibling) { in get_host_send_mask()
96 QTAILQ_FOREACH(kid, &ef->sbus.qbus.children, sibling) { in get_host_receive_mask()
135 QTAILQ_FOREACH(kid, &ef->sbus.qbus.children, sibling) { in handle_write_event_buf()
214 QTAILQ_FOREACH(kid, &ef->sbus.qbus.children, sibling) { in handle_sccb_read_events()
/openbmc/openbmc-test-automation/gui/gui_test/gui_header/
H A Dtest_gui_header.robot63 ... /following-sibling::*/*[text()='${redfish_model_number}']
68 ... /following-sibling::*/*[text()='${redfish_serial_number}']
/openbmc/qemu/hw/9pfs/
H A D9p-synth.c68 QLIST_INSERT_HEAD_RCU(&parent->child, node, sibling); in v9fs_add_dir_node()
87 QLIST_FOREACH(tmp, &parent->child, sibling) { in qemu_v9fs_synth_mkdir()
119 QLIST_FOREACH(tmp, &parent->child, sibling) { in qemu_v9fs_synth_add_file()
135 QLIST_INSERT_HEAD_RCU(&parent->child, node, sibling); in qemu_v9fs_synth_add_file()
245 QLIST_FOREACH(node, &dir->child, sibling) { in synth_get_dentry()
512 QLIST_FOREACH(node, &dir_node->child, sibling) { in synth_name_to_path()
H A D9p-synth.h32 QLIST_ENTRY(V9fsSynthNode) sibling;
/openbmc/qemu/hw/acpi/
H A Dacpi_interface.c20 QTAILQ_FOREACH(kid, &bus->children, sibling) { in qbus_build_aml()
/openbmc/qemu/hw/ssi/
H A Dssi.c35 QTAILQ_FOREACH(kid, &b->children, sibling) { in OBJECT_DECLARE_SIMPLE_TYPE()
162 QTAILQ_FOREACH(kid, &b->children, sibling) { in ssi_transfer()
/openbmc/qemu/include/hw/pci/
H A Dpci_bus.h50 QLIST_ENTRY(PCIBus) sibling;/* this will be replaced by qdev later */
/openbmc/u-boot/include/dm/
H A Dof.h52 struct device_node *sibling; member
/openbmc/qemu/hw/ppc/
H A Dspapr_vio.c73 QTAILQ_FOREACH(kid, &bus->bus.children, sibling) { in spapr_vio_find_by_reg()
375 QTAILQ_FOREACH(kid, &bus->bus.children, sibling) { in rtas_quiesce()
394 QTAILQ_FOREACH(kid, &bus->bus.children, sibling) { in reg_conflict()
696 QTAILQ_FOREACH(kid, &bus->bus.children, sibling) { in spapr_dt_vdevice()
703 QTAILQ_FOREACH(kid, &bus->bus.children, sibling) { in spapr_dt_vdevice()
/openbmc/qemu/hw/i386/
H A Dmicrovm-dt.c231 QTAILQ_FOREACH(kid, &bus->children, sibling) { in dt_setup_isa_bus()
263 QTAILQ_FOREACH(kid, &bus->children, sibling) { in dt_setup_sys_bus()
274 QTAILQ_FOREACH(kid, &bus->children, sibling) { in dt_setup_sys_bus()
/openbmc/openbmc-test-automation/gui/gui_test/overview_menu/
H A Dtest_overview_menu.robot30 …critical_logs_count} //dt[contains(text(),'Critical')]/following-sibling::dd[1]
31 ${xpath_warning_logs_count} //dt[contains(text(),'Warning')]/following-sibling
32 …sset_tag} //dt[contains(text(),'Asset tag')]/following-sibling::dd[1]
33 …ing_mode} //dt[contains(text(),'Operating mode')]/following-sibling::dd[1]
34 ${xpath_machine_model} //dt[contains(text(),'Model')]/following-sibling::…
35 …l_number} //dt[contains(text(),'Serial number')]/following-sibling::dd[1]
/openbmc/libbej/include/libbej/
H A Dbej_tree.h60 void* sibling; member
/openbmc/u-boot/drivers/core/
H A Dof_access.c157 while (np->parent && !np->sibling) in of_find_all_nodes()
159 np = np->sibling; /* Might be null at the end of the tree */ in of_find_all_nodes()
269 next = prev ? prev->sibling : node->child; in __of_get_next_child()
276 for (; next; next = next->sibling) in __of_get_next_child()

1234