Home
last modified time | relevance | path

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

/illumos-gate/usr/src/tools/smatch/src/
H A Davl.c43 static size_t countNode(AvlNode *node);
402 && countNode(avl->root) == avl->count; in avl_check_invariants()
442 static size_t countNode(AvlNode *node) in countNode() function
445 return 1 + countNode(node->lr[0]) + countNode(node->lr[1]); in countNode()