Searched defs:c_rbnode_is_black (Results 1 - 2 of 2) sorted by relevance

/systemd/src/basic/
H A Dc-rbtree.c60 static inline _Bool c_rbnode_is_black(CRBNode *n) { function
255 } else if (c_rbnode_is_black(p)) {
453 if (!x || c_rbnode_is_black(x)) {
455 if (!y || c_rbnode_is_black(y)) {
463 if (c_rbnode_is_black(p))
513 if (!x || c_rbnode_is_black(x)) {
515 if (!y || c_rbnode_is_black(y)) {
517 if (c_rbnode_is_black(p))
673 next = c_rbnode_is_black(s) ? p : NULL;
/systemd/src/test/
H A Dtest-rbtree.c68 static inline _Bool c_rbnode_is_black(CRBNode *n) { function
78 assert(!t->root || c_rbnode_is_black(t->root));
84 if (c_rbnode_is_black(n))
115 assert(c_rbnode_is_black(n));
119 assert(!n->left || c_rbnode_is_black(n->left));
120 assert(!n->right || c_rbnode_is_black(n->right));
123 assert(c_rbnode_is_black(n));
133 if (c_rbnode_is_black(n))
138 if (c_rbnode_is_black(n))
144 if (c_rbnode_is_black(
[all...]

Completed in 701 milliseconds