Searched refs:root (Results 1 – 10 of 10) sorted by relevance
/picolibc-latest/newlib/libc/search/ |
D | tdestroy.c | 55 trecurse(node_t *root, /* Root of the tree to be walked */ in trecurse() argument 58 if (root->llink != NULL) in trecurse() 59 trecurse(root->llink, free_action); in trecurse() 60 if (root->rlink != NULL) in trecurse() 61 trecurse(root->rlink, free_action); in trecurse() 63 (*free_action) ((void *) root->key); in trecurse() 64 free(root); in trecurse() 71 node_t *root = (node_t *) vrootp; in tdestroy() local 73 if (root != NULL) in tdestroy() 74 trecurse(root, freefct); in tdestroy()
|
D | twalk.c | 57 trecurse(const node_t *root, void (*action)(const void *, VISIT, int), int level) in trecurse() argument 60 if (root->llink == NULL && root->rlink == NULL) in trecurse() 61 (*action)(root, leaf, level); in trecurse() 63 (*action)(root, preorder, level); in trecurse() 64 if (root->llink != NULL) in trecurse() 65 trecurse(root->llink, action, level + 1); in trecurse() 66 (*action)(root, postorder, level); in trecurse() 67 if (root->rlink != NULL) in trecurse() 68 trecurse(root->rlink, action, level + 1); in trecurse() 69 (*action)(root, endorder, level); in trecurse()
|
/picolibc-latest/.github/workflows/ |
D | steps-cmake | 3 …eadlink -f picolibc):/picolibc -w /picolibc -v $GITHUB_WORKSPACE/.ccache:/root/.ccache $IMAGE bash…
|
D | steps-minsize | 3 …eadlink -f picolibc):/picolibc -w /picolibc -v $GITHUB_WORKSPACE/.ccache:/root/.ccache $IMAGE bash…
|
D | steps-release | 3 …eadlink -f picolibc):/picolibc -w /picolibc -v $GITHUB_WORKSPACE/.ccache:/root/.ccache $IMAGE bash…
|
/picolibc-latest/newlib/libc/include/sys/ |
D | tree.h | 73 #define SPLAY_INITIALIZER(root) \ argument 76 #define SPLAY_INIT(root) do { \ argument 77 (root)->sph_root = NULL; \ 307 #define RB_INITIALIZER(root) \ argument 310 #define RB_INIT(root) do { \ argument 311 (root)->rbh_root = NULL; \
|
/picolibc-latest/newlib/libm/complex/ |
D | complex.tex | 29 * Function csqrt:: Complex square root
|
/picolibc-latest/newlib/libm/math/ |
D | math.tex | 39 * Function cbrt:: Cube root 83 * Function sqrt:: Positive square root
|
/picolibc-latest/ |
D | meson.build | 661 # --picolibc-buildtype options, system-root vs absolute paths and
|
/picolibc-latest/newlib/ |
D | ChangeLog-2015 | 24727 (vfork1): If not root, set state back to FORK_STATE_VFORK_0. 24733 (wait_for_any): Likewise. Start scan after root entry.
|