Home
last modified time | relevance | path

Searched refs:compare_keys (Results 1 - 2 of 2) sorted by relevance

/third_party/toybox/toys/posix/
H A Dsort.c244 static int compare_keys(const void *xarg, const void *yarg) in compare_keys() function
292 if (TT.lines && compare_keys((void *)&TT.lines, &line)>j) in sort_lines()
379 qsort(TT.lines, TT.linecount, sizeof(char *), compare_keys); in sort_main()
386 if (!compare_keys(&TT.lines[jdx], &TT.lines[idx])) in sort_main()
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/
H A Dbtree.h1356 bool compare_keys(const K1 &a, const K2 &b) const { in compare_keys() function in absl::container_internal::btree
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(positio
[all...]

Completed in 4 milliseconds