Searched refs:comp_result (Results 1 – 2 of 2) sorted by relevance
87 int comp_result; in lower_bound() local90 comp_result = compare_(key, GetKeyAtIndex(middle)); in lower_bound()91 if (comp_result == 0) in lower_bound()93 if (comp_result < 0) { in lower_bound()
286 int comp_result = 0; in rbtree_insert() local313 comp_result = COMP_NODES(object, cur_node->object); in rbtree_insert()314 if (comp_result == 0) { in rbtree_insert()320 if (comp_result > 0) { in rbtree_insert()628 int comp_result; in rbtree_find() local631 comp_result = COMP_NODES(object, cur_node->object); in rbtree_find()635 if (comp_result == 0) in rbtree_find()638 cur_node = (comp_result > 0) ? cur_node->left : cur_node->right; in rbtree_find()