Searched refs:compare_keys (Results 1 – 5 of 5) sorted by relevance
/third_party/toybox/toys/posix/ |
D | sort.c | 245 static int compare_keys(const void *xarg, const void *yarg) in compare_keys() function 293 if (TT.lines && compare_keys((void *)&TT.lines, &line)>j) in sort_lines() 380 qsort(TT.lines, TT.linecount, sizeof(char *), compare_keys); in sort_main() 387 if (!compare_keys(&TT.lines[jdx], &TT.lines[idx])) in sort_main()
|
/third_party/grpc/src/core/lib/avl/ |
D | avl.h | 48 long (*compare_keys)(void* key1, void* key2, void* user_data); member
|
D | avl.cc | 102 cmp = vtable->compare_keys(node->key, key, user_data); in get() 212 cmp = vtable->compare_keys(node->key, key, user_data); in add_key() 257 cmp = vtable->compare_keys(node->key, key, user_data); in remove_key()
|
/third_party/abseil-cpp/absl/container/internal/ |
D | btree.h | 1290 bool compare_keys(const K1 &a, const K2 &b) const { 1901 if (lower == end() || compare_keys(key, lower.key())) return {lower, lower}; 1915 assert(next == end() || compare_keys(key, next.key())); 1922 if (next == end() || compare_keys(key, next.key())) return {lower, next}; 1947 if (last.node && !compare_keys(key, last.key())) { 1961 if (position == end() || compare_keys(key, position.key())) { 1962 if (position == begin() || compare_keys(std::prev(position).key(), key)) { 1966 } else if (compare_keys(position.key(), key)) { 1968 if (position == end() || compare_keys(key, position.key())) { 2016 if (position == end() || !compare_keys(position.key(), key)) { [all …]
|
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/ |
D | btree.h | 1356 bool compare_keys(const K1 &a, const K2 &b) const { 1948 : lower != end() && !compare_keys(key, lower.key()); 1967 assert(next == end() || compare_keys(key, next.key())); 1974 if (next == end() || compare_keys(key, next.key())) return {lower, next}; 1999 if (last.node && !compare_keys(key, last.key())) { 2013 if (position == end() || compare_keys(key, position.key())) { 2014 if (position == begin() || compare_keys(std::prev(position).key(), key)) { 2018 } else if (compare_keys(position.key(), key)) { 2020 if (position == end() || compare_keys(key, position.key())) { 2068 if (position == end() || !compare_keys(position.key(), key)) { [all …]
|