HomeSort by: relevance | last modified time | path
    Searched defs:cmp_result (Results 1 - 2 of 2) sorted by relevancy

  /src/usr.bin/menuc/
avl.c 70 int cmp_result; local in function:find_id
77 cmp_result = strcmp (id, tree->id);
78 if (cmp_result == 0)
80 else if (cmp_result < 0)
  /src/lib/libc/stdlib/
qsort.c 106 int swaptype, cmp_result; local in function:qsort_r
137 while (pb <= pc && (cmp_result = cmp(pb, a, cookie)) <= 0) {
138 if (cmp_result == 0) {
144 while (pb <= pc && (cmp_result = cmp(pc, a, cookie)) >= 0) {
145 if (cmp_result == 0) {

Completed in 14 milliseconds