Home
last modified time | relevance | path

Searched refs:child (Results 1 – 25 of 49) sorted by relevance

12

/hardware/google/gfxstream/guest/mesa/src/util/
Ddag.c29 append_edge(struct dag_node *parent, struct dag_node *child, uintptr_t data) in append_edge() argument
32 list_delinit(&child->link); in append_edge()
35 .child = child, in append_edge()
40 child->parent_count++; in append_edge()
50 dag_add_edge(struct dag_node *parent, struct dag_node *child, uintptr_t data) in dag_add_edge() argument
53 if (edge->child == child && edge->data == data) in dag_add_edge()
57 append_edge(parent, child, data); in dag_add_edge()
69 dag_add_edge_max_data(struct dag_node *parent, struct dag_node *child, in dag_add_edge_max_data() argument
73 if (edge->child == child) { in dag_add_edge_max_data()
79 append_edge(parent, child, data); in dag_add_edge_max_data()
[all …]
Dralloc.c63 struct ralloc_header *child; member
93 info->next = parent->child; in add_child()
94 parent->child = info; in add_child()
131 info->child = NULL; in ralloc_size()
162 ralloc_header *child, *old, *info; in resize() local
173 if (info->parent->child == old) in resize()
174 info->parent->child = info; in resize()
184 for (child = info->child; child != NULL; child = child->next) in resize()
185 child->parent = info; in resize()
270 if (info->parent->child == info) in unlink_block()
[all …]
Ddag.h36 struct dag_node *child; member
55 void dag_add_edge(struct dag_node *parent, struct dag_node *child, uintptr_t data);
56 void dag_add_edge_max_data(struct dag_node *parent, struct dag_node *child, uintptr_t data);
Dsparse_array.c178 uintptr_t child = p_atomic_read(&children[child_idx]); in util_sparse_array_get() local
180 if (unlikely(!child)) { in util_sparse_array_get()
181 child = _util_sparse_array_node_alloc(arr, node_level - 1); in util_sparse_array_get()
182 child = _util_sparse_array_set_or_free_node(&children[child_idx], in util_sparse_array_get()
183 NULL_NODE, child); in util_sparse_array_get()
186 node_data = _util_sparse_array_node_data(child); in util_sparse_array_get()
187 node_level = _util_sparse_array_node_level(child); in util_sparse_array_get()
Dslab.c301 return slab_alloc(&mempool->child); in slab_alloc_st()
310 slab_free(&mempool->child, ptr); in slab_free_st()
316 slab_destroy_child(&mempool->child); in slab_destroy()
332 slab_create_child(&mempool->child, &mempool->parent); in slab_create()
Dslab.h90 struct slab_child_pool child; member
/hardware/google/gfxstream/guest/mesa/src/util/tests/
Ddag_test.cpp54 struct node &operator>>(struct node &child) { in operator >>()
56 static_cast<struct dag_node *>(&child), 0); in operator >>()
57 return child; in operator >>()
60 void add_edge(struct node &child, uintptr_t data) { in add_edge()
62 static_cast<struct dag_node *>(&child), data); in add_edge()
65 void add_edge_max_data(struct node &child, uintptr_t data) { in add_edge_max_data()
67 static_cast<struct dag_node *>(&child), data); in add_edge_max_data()
192 if (edge->child == &node[1]) { in TEST_F()
195 EXPECT_EQ(edge->child, &node[2]); in TEST_F()
/hardware/libhardware/modules/sensors/dynamic_sensor/HidUtils/
DHidTree.cpp44 for (auto &child : mChildren) { in outputRecursive() local
45 child->outputRecursive(os, level + 1); in outputRecursive()
63 std::shared_ptr<HidTreeNode> HidTreeNode::addChild(std::shared_ptr<HidTreeNode> child) { in addChild() argument
64 mChildren.push_back(child); in addChild()
65 return child; in addChild()
DHidParser.cpp212 for (const auto &child : node->getChildren()) { in digest() local
213 if (child->getNodeType() == HidTreeNode::TYPE_NORMAL) { in digest()
215 digest(digestVector, child, interestedUsage); in digest()
DHidTree.h46 std::shared_ptr<HidTreeNode> addChild(std::shared_ptr<HidTreeNode> child);
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/config/
Dkhronos.css295 .keyseq kbd:first-child { margin-left: 0; }
297 .keyseq kbd:last-child { margin-right: 0; }
321 #header > h1:first-child { color: black; margin-top: 2.25rem; margin-bottom: 0; }
322 #header > h1:first-child + #toc { margin-top: 8px; border-top: 1px solid #ddd; }
323 #header > h1:only-child, body.toc2 #header > h1:nth-last-child(2) { border-bottom: 1px solid #ddd; …
325 #header .details span:first-child { margin-left: -0.125em; }
334 #content > h1:first-child:not([class]) { color: black; border-bottom: 1px solid #ddd; padding-botto…
363 #content #toc > :first-child { margin-top: 0; }
364 #content #toc > :last-child { margin-bottom: 0; }
376 .sect1:last-child { padding-bottom: 0; }
[all …]
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/scripts/
Dreg.py104 for child in parent.findall('*'):
105 if child.tag == 'remove':
107 parent.remove(child)
109 stack.append(child)
111 supportedList = child.get('supported')
116 child.set('supported', toApiName)
118 if child.get('api'):
123 if child.tag in ['type']:
124 if child.get('name') is not None:
125 definitionName = child.get('name')
[all …]
Dgenvk.py1210 for child in require:
1211 originalEntry.find("require").append(child)
1219 for child in entry:
1220 originalEntry.append(child)
/hardware/interfaces/audio/aidl/default/
DEffectConfig.cpp87 for (auto* child = node.FirstChildElement(childTag); child != nullptr; in getChildren() local
88 child = child->NextSiblingElement(childTag)) { in getChildren()
89 children.emplace_back(*child); in getChildren()
/hardware/google/aemu/base/
DHealthMonitor_unittest.cpp369 auto child = healthMonitor.startMonitoringTask(std::make_unique<EventHangMetadata>(), in TEST_F() local
372 healthMonitor.stopMonitoringTask(child); in TEST_F()
405 auto child = healthMonitor.startMonitoringTask(std::make_unique<EventHangMetadata>(), in TEST_F() local
409 std::nullopt, kDefaultTimeoutMs, child); in TEST_F()
414 healthMonitor.stopMonitoringTask(child); in TEST_F()
432 auto child = healthMonitor.startMonitoringTask(std::make_unique<EventHangMetadata>(), in TEST_F() local
436 healthMonitor.stopMonitoringTask(child); in TEST_F()
460 /* 1 */ auto child = healthMonitor.startMonitoringTask(std::make_unique<EventHangMetadata>(), in TEST_F() local
466 healthMonitor.stopMonitoringTask(child); in TEST_F()
/hardware/google/gfxstream/host/apigen-codec-common/X11/extensions/
DXInput2.h243 Window child; member
284 Window child; member
327 Window child; member
338 Window* child,
DXI2proto.h381 Window child; member
935 Window child; member
959 Window child; member
1015 Window child; member
/hardware/interfaces/tests/inheritance/1.0/
DIFetcher.hal27 getChild(bool sendRemote) generates (IChild child);
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/chapters/VK_NV_external_memory_win32/
Dhandle_permissions.adoc25 default security descriptor values will be used, and child processes created
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/appendices/
DVK_EXT_pipeline_library_group_handles.adoc41 bitwise identical between parent and child pipelines.
DVK_EXT_private_data.adoc59 that private data slot for all of the device's child objects.
/hardware/google/gfxstream/host/testlibs/x11/
DX11Window.cpp557 Window child; in processEvent() local
558 XTranslateCoordinates(mDisplay, mWindow, root, 0, 0, &x, &y, &child); in processEvent()
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/katex/
Dkatex.js991 var toText = function toText(child) {
992 return child.toText();
5699 var child = elem.children[i];
5701 if (child.height > height) {
5702 height = child.height;
5705 if (child.depth > depth) {
5706 depth = child.depth;
5709 if (child.maxFontSize > maxFontSize) {
5710 maxFontSize = child.maxFontSize;
5822 var child = params.children[_i];
[all …]
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/chapters/
DVK_EXT_private_data.adoc13 each child object of the device.
172 pname:objectHandle must: be pname:device or a child of pname:device
Dinitialization.adoc85 object (the first parameter) that is pname:instance or a child of
108 slink:VkDevice objects or their child objects.
111 use a device or device-child object as their dispatchable object.
123 first parameter) that is pname:device or a child of pname:device.
164 object (the first parameter) that is pname:device or a child of
752 All child objects created using pname:instance must: have been destroyed

12