Home
last modified time | relevance | path

Searched refs:root (Results 1 – 10 of 10) sorted by relevance

/picolibc-latest/newlib/libc/search/
Dtdestroy.c55 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()
Dtwalk.c57 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/
Dsteps-cmake3 …eadlink -f picolibc):/picolibc -w /picolibc -v $GITHUB_WORKSPACE/.ccache:/root/.ccache $IMAGE bash…
Dsteps-minsize3 …eadlink -f picolibc):/picolibc -w /picolibc -v $GITHUB_WORKSPACE/.ccache:/root/.ccache $IMAGE bash…
Dsteps-release3 …eadlink -f picolibc):/picolibc -w /picolibc -v $GITHUB_WORKSPACE/.ccache:/root/.ccache $IMAGE bash…
/picolibc-latest/newlib/libc/include/sys/
Dtree.h73 #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/
Dcomplex.tex29 * Function csqrt:: Complex square root
/picolibc-latest/newlib/libm/math/
Dmath.tex39 * Function cbrt:: Cube root
83 * Function sqrt:: Positive square root
/picolibc-latest/
Dmeson.build661 # --picolibc-buildtype options, system-root vs absolute paths and
/picolibc-latest/newlib/
DChangeLog-201524727 (vfork1): If not root, set state back to FORK_STATE_VFORK_0.
24733 (wait_for_any): Likewise. Start scan after root entry.