Searched refs:left (Results 1 - 16 of 16) sorted by relevance

/seL4-test-master/projects/musllibc/src/search/
H A Dtdestroy.c7 struct node *left; member in struct:node
17 tdestroy(r->left, freekey);
H A Dtsearch_avl.c12 struct node *left; member in struct:node
18 return (n->left ? n->left->height:0) - (n->right ? n->right->height:0);
23 if (n->left && n->left->height > n->height)
24 n->height = n->left->height;
32 n->right = r->left;
33 r->left = n;
40 struct node *l = n->left;
41 n->left
[all...]
/seL4-test-master/projects/musllibc/src/signal/
H A Dsigandset.c6 int sigandset(sigset_t *dest, const sigset_t *left, const sigset_t *right) argument
8 unsigned long i = 0, *d = (void*) dest, *l = (void*) left, *r = (void*) right;
H A Dsigorset.c6 int sigorset(sigset_t *dest, const sigset_t *left, const sigset_t *right) argument
8 unsigned long i = 0, *d = (void*) dest, *l = (void*) left, *r = (void*) right;
/seL4-test-master/projects/musllibc/src/locale/
H A Dstrfmon.c12 int fill, nogrp, negpar, nosym, left, intl; local
29 left = 0;
46 left = 1;
64 if (!left && fw>w) w = fw;
H A Dpleval.c66 static int binop(struct st *st, int op, unsigned long left) argument
68 unsigned long a = left, b = st->r;
112 unsigned long left; local
119 st->r (left hand side value) and st->op are now set,
126 left = st->r;
128 if (binop(st, op, left))
/seL4-test-master/projects/seL4_libs/libsel4allocman/src/utspace/
H A Dsplit.c133 struct utspace_split_node *left, *right; local
173 left = _new_node(alloc);
174 if (!left) {
175 ZF_LOGV("Failed to allocate left node");
181 _delete_node(alloc, left);
185 sel4_error = seL4_Untyped_Retype(node->ut.capPtr, seL4_UntypedObject, size_bits, left->ut.root, left->ut.dest,
186 left->ut.destDepth, left->ut.offset, 1);
188 _delete_node(alloc, left);
[all...]
/seL4-test-master/projects/musllibc/src/regex/
H A Dregcomp.c110 If there are more than one subexpressions in sequence, the `left' part
112 (catenation is left associative). */
114 tre_ast_node_t *left; member in struct:__anon405
135 tre_ast_node_t *left; member in struct:__anon407
188 tre_ast_new_union(tre_mem_t mem, tre_ast_node_t *left, tre_ast_node_t *right) argument
193 if (!left)
199 un->left = left;
201 node->num_submatches = left->num_submatches + right->num_submatches;
206 tre_ast_new_catenation(tre_mem_t mem, tre_ast_node_t *left, tre_ast_node_ argument
1359 tre_ast_node_t *left = cat->left; local
1442 tre_ast_node_t *left = uni->left; local
1587 tre_ast_node_t *left = tre_stack_pop_voidptr(stack); local
[all...]
/seL4-test-master/tools/nanopb/tests/cyclic_messages/
H A Dencode_cyclic_callback.c42 tree.left.funcs.encode = encode_tree;
43 tree.left.arg = p;
/seL4-test-master/projects/util_libs/libutils/include/utils/
H A Dsglib.h728 #define SGLIB___BIN_TREE_MAP_ON_ELEMENTS(type, tree, iteratedVariable, order, left, right, command) {\
750 _cn_ = _cn_->left;\
773 #define SGLIB_BIN_TREE_MAP_ON_ELEMENTS(type, tree, _current_element_, left, right, command) {\
774 SGLIB___BIN_TREE_MAP_ON_ELEMENTS(type, tree, _current_element_, 1, left, right, command);\
777 #define SGLIB_BIN_TREE_MAP_ON_ELEMENTS_PREORDER(type, tree, _current_element_, left, right, command) {\
778 SGLIB___BIN_TREE_MAP_ON_ELEMENTS(type, tree, _current_element_, 0, left, right, command);\
781 #define SGLIB_BIN_TREE_MAP_ON_ELEMENTS_POSTORDER(type, tree, _current_element_, left, right, command) {\
782 SGLIB___BIN_TREE_MAP_ON_ELEMENTS(type, tree, _current_element_, 2, left, right, command);\
785 #define SGLIB___BIN_TREE_FIND_MEMBER(type, tree, elem, left, right, comparator, res) {\
791 if (_c_ < 0) _s_ = _s_->left;\
[all...]
/seL4-test-master/projects/sel4_projects_libs/libsel4vm/src/
H A Dguest_memory.c59 struct res_tree *left; member in struct:res_tree
80 SGLIB_DEFINE_RBTREE_PROTOTYPES(res_tree, left, right, color_field, reservation_node_cmp);
81 SGLIB_DEFINE_RBTREE_FUNCTIONS(res_tree, left, right, color_field, reservation_node_cmp);
273 ZF_LOGW("Unable to find reservation for addr: 0x%x, memory fault left unhandled", addr);
288 ZF_LOGW("Unable to find anoymous reservation for addr: 0x%x, memory fault left unhandled", addr);
507 * If failed its left to the caller to update the memory map iterator */
/seL4-test-master/kernel/manual/parts/
H A Dcspace.tex224 level. The third level on the left is a copy of the level 2 untyped
504 \ipcbloc{Offset + seL4\_CapFault\_BitsLeft} & Bits left \\
511 bits than was left to decode in the CPTR or a non-CNode capability was
H A Dbootup.tex220 Arguments are listed in \autoref{tab:bootargs} along with their default values (if left unspecified).
H A Dipc.tex90 the space left in the \texttt{msg} array if desired.
H A Dthreads.tex70 reused or left suspended indefinitely if not needed. Threads will be
206 The kernel does not conduct any schedulability tests, as task admission is left to user-level policy
H A Dobjects.tex408 when there are no dangling references (i.e., capabilities) left to the

Completed in 66 milliseconds