Searched refs:child (Results 1 - 25 of 40) sorted by relevance

12

/seL4-camkes-master/projects/musllibc/src/thread/
H A Dpthread_atfork.c7 void (*child)(void); member in struct:atfork_funcs
26 else if (who && p->child) p->child();
33 int pthread_atfork(void (*prepare)(void), void (*parent)(void), void (*child)(void)) argument
43 new->child = child;
/seL4-camkes-master/projects/util_libs/libplatsupport/src/arch/arm/
H A Dclock.c149 clk_print_tree(clk->child, new_prefix);
154 void clk_register_child(clk_t *parent, clk_t *child) argument
158 if (child->parent != NULL) {
160 clk_t *sibling = parent->child;
161 /* Make sure that we are a sibling of the parent's child */
162 while (sibling != child) {
167 if (child->parent == NULL) {
168 child->parent = parent;
169 child->sibling = parent->child;
[all...]
H A Dclock.h27 .child = NULL, \
/seL4-camkes-master/kernel/tools/hardware/
H A Dirq.py15 def parse_irq(self, child, data):
45 "routing" interrupts from a child to multiple IRQ controllers. '''
47 def parse_irq(self, child, data):
49 # <<child unit address> <child interrupt specifier> <interrupt parent>
52 # "child unit address" seems to be special: the docs say one thing, but
54 # child unit address size is specified by '#address-cells' in the nexus node,
62 # only look at the first child address.
63 # note we're using our #address-cells, not the child node's,
65 if child
[all...]
H A Ddevice.py41 def add_child(self, child: 'WrappedNode'):
42 ''' Add a child to this node '''
43 self.children[child.node.get_name()] = child
141 for child in self.children.values():
142 ret += child.visit(visitor)
147 for child in self.children.values():
148 yield child
183 # <child-addr> <parent-addr> <length>
184 # child
[all...]
/seL4-camkes-master/projects/picotcp/include/
H A Dheap.h71 uint32_t i, child; \
77 for(i = 1; (i * 2u) <= heap->n; i = child) { \
78 child = 2u * i; \
79 right_child = heap_get_element(heap, child+1); \
80 left_child = heap_get_element(heap, child); \
81 if ((child != heap->n) && \
84 child++; \
85 left_child = heap_get_element(heap, child); \
88 memcpy(heap_get_element(heap,i), heap_get_element(heap,child), \
/seL4-camkes-master/tools/cogent/impl/fs/bilby/cogent/plat/linux/
H A Drbt.c238 struct rbt_node *child, *parent; local
242 child = node->rbt_right;
244 child = node->rbt_left;
261 child = node->rbt_right;
268 if (child)
269 rbt_set_parent(child, parent);
270 parent->rbt_left = child;
281 __rbt_erase_color(child, parent, rbt);
288 if (child)
289 rbt_set_parent(child, paren
[all...]
/seL4-camkes-master/projects/global-components/components/ClockServer/libClockServer-client/include/
H A Dclockserver_client.h22 int (*clockserver_register_child)(clk_id_t parent, clk_id_t child),
/seL4-camkes-master/projects/projects_libs/libfdtgen/
H A Dfdtgen.c84 static int is_to_keep(fdtgen_context_t *handle, UNUSED int child) argument
110 int child; local
112 fdt_for_each_subnode(child, dtb, offset) {
115 const char *n = fdt_get_name(dtb, child, NULL);
119 int keep = keep_node_and_parents(handle, child, target);
135 register_node_dependencies(handle, child);
260 * keep the parent if the child is kept
265 int child; local
268 fdt_for_each_subnode(child, dtb, offset) {
271 const char *n = fdt_get_name(dtb, child, NUL
305 int child; local
392 int child; local
418 int child = fdt_path_offset(ori_fdt, node); local
441 int child = fdt_path_offset(ori_fdt, node); local
[all...]
/seL4-camkes-master/tools/cogent/impl/fs/bilby/c/
H A Drbt.c246 struct rbt_node *child, *parent; local
250 child = node->rbt_right;
252 child = node->rbt_left;
269 child = node->rbt_right;
276 if (child)
277 rbt_set_parent(child, parent);
278 parent->rbt_left = child;
289 __rbt_erase_color(child, parent, root);
296 if (child)
297 rbt_set_parent(child, paren
[all...]
/seL4-camkes-master/tools/cogent/regression/
H A Dtestspec.py79 for child in doc:
80 if child.tag == "set":
82 new_tests = parse_set(child, env, strict=strict)
86 elif child.tag == "sequence":
88 new_tests = parse_sequence(child, env, strict=strict)
92 elif child.tag == "test":
93 tests.append(parse_test(child, env, strict=strict))
96 raise TestSpecParseException("Unknown tag '%s'" % child.tag)
109 for child in doc:
110 if child
[all...]
/seL4-camkes-master/projects/capdl/python-capdl-tool/capdl/
H A Dutil.py44 def __init__(self, coverage, pages, object, make_object, type_name, parent=None, child=None):
48 self.child = child
69 Index of a child object that is contained in this object.
71 and coverage of child objects. If we have no child assume
72 our 'child' is a standard page
74 if self.child is None:
77 return vaddr % self.coverage // self.child.coverage
87 levels[i].child
[all...]
H A DPageCollection.py114 while level.child is not None and page['size'] < level.child.coverage:
115 level = level.child
/seL4-camkes-master/projects/musllibc/src/thread/powerpc64/
H A Dclone.s18 # save fn and arg to child stack
39 # we're the child. call fn(arg)
/seL4-camkes-master/projects/global-components/components/ClockServer/src/
H A Dclock_server.c166 int the_clock_register_child(clk_id_t parent, clk_id_t child) argument
170 if (!check_valid_clk_id(parent) || !check_valid_clk_id(child)) {
189 if (!check_clk_initialised(child)) {
195 if (!check_is_owner(child, client_id)) {
196 ZF_LOGE("Client is not the owner of the child clock");
201 clk_register_child(clock_table[parent].clk, clock_table[child].clk);
/seL4-camkes-master/projects/util_libs/libplatsupport/src/plat/pc99/acpi/
H A Dacpi.c134 int child; local
139 child = find_region(slist, 0, ACPI_RSDT);
140 if (child >= 0) {
142 child, index);
151 child = find_region(slist, 0, ACPI_XSDT);
152 if (child >= 0) {
155 child, index);
176 int child[MAX_REGIONS]; local
181 child[children++] = i;
203 p = _acpi_copy_tables(slist, dlist, child[
[all...]
/seL4-camkes-master/projects/projects_libs/libmsgpack/msgpack-c/example/cpp03/
H A Dspeed_test_nested_array.cpp25 typename vecvec<T, level - 1>::type child; local
26 vecvec<T, level - 1>::fill(child, num_of_elems, val);
27 v.push_back(child);
/seL4-camkes-master/projects/camkes-tool/camkes/parser/tests/
H A Dtestcpp.py76 child = self.mkstemp()
78 with open(child, 'wt') as f:
82 f.write('hello world\n#include "%s"' % child)
87 self.assertIn(child, read)
H A Dteststage2.py110 child = self.mkstemp()
113 f.write('component foo\n#include "%s"' % child)
114 with open(child, 'wt') as f:
131 self.assertIn(child, read)
/seL4-camkes-master/kernel/tools/hardware/utils/
H A Dmemory.py36 for child in node:
37 if child.has_prop('reg') and child.has_prop('no-map'):
38 ret.update(child.get_regions())
/seL4-camkes-master/projects/musllibc/src/thread/s390x/
H A Dclone.s25 # save fn and arg to child stack
41 # we're the child. call fn(arg)
/seL4-camkes-master/projects/capdl/python-capdl-tool/tests/
H A Dallocator.py48 child = Untyped(name="child_ut", size_bits=child_size_bits)
49 spec.add_object(child)
51 self.assertValidSpec(allocator, spec, ut_size_bits, child_size_bits, [child], [ut])
59 child = Untyped(name="child ut {0}".format(i), size_bits=size_bits)
60 spec.add_object(child)
61 children.append(child)
66 """Test allocating multiple child objects from a single untyped"""
150 child = Untyped("child_ut", size_bits=size_bits, paddr=unfun_paddr)
151 spec.add_object(child)
[all...]
/seL4-camkes-master/projects/util_libs/libplatsupport/arch_include/arm/platsupport/
H A Dclock.h59 clk_t *child; member in struct:clock
179 * Register a clock as a child of another
181 * child clock will be called.
183 * @param[in] child The child of this clock relationship
185 void clk_register_child(clk_t *parent, clk_t *child);
/seL4-camkes-master/projects/global-components/components/ClockServer/libClockServer-client/
H A Dclockserver_client.c25 int (*clockserver_register_child)(clk_id_t parent, clk_id_t child);
31 * also no register child for now as there are limitations */
94 int (*clockserver_register_child)(clk_id_t parent, clk_id_t child),
89 clockserver_interface_init(ps_io_ops_t *io_ops, int (*clockserver_init_clock)(clk_id_t id), int (*clockserver_set_gate_mode)(clock_gate_t gate, clock_gate_mode_t mode), freq_t (*clockserver_get_freq)(clk_id_t clk_id), freq_t (*clockserver_set_freq)(clk_id_t clk_id, freq_t hz), int (*clockserver_register_child)(clk_id_t parent, clk_id_t child), clock_sys_t *clock_sys) argument
/seL4-camkes-master/projects/musllibc/src/thread/sh/
H A Dclone.s35 1: ! we are the child, call fn(arg)

Completed in 197 milliseconds

12