Home | History | Annotate | Download | only in libxml2

Lines Matching refs:SORT_CMP

97 #ifndef SORT_CMP
98 #define SORT_CMP(x, y) ((x) < (y) ? -1 : ((x) == (y) ? 0 : 1))
142 if (SORT_CMP(x, lx) < 0)
144 else if (SORT_CMP(x, lx) == 0)
147 while (SORT_CMP(x, dst[i]) == 0) i++;
154 const int val = SORT_CMP(x, cx);
171 } while (SORT_CMP(x, cx) == 0);
189 if (SORT_CMP(dst[i - 1], dst[i]) <= 0) continue;
227 if (SORT_CMP(dst[size - 2], dst[size - 1]) > 0)
234 if (SORT_CMP(dst[start], dst[start + 1]) <= 0)
240 if (SORT_CMP(dst[curr - 1], dst[curr]) > 0) break;
251 if (SORT_CMP(dst[curr - 1], dst[curr]) <= 0) break;
356 if (SORT_CMP(storage[i], dst[j]) <= 0)
380 if (SORT_CMP(dst[j], storage[i]) > 0)
501 #undef SORT_CMP