Home
last modified time | relevance | path

Searched refs:__COMPARE (Results 1 – 4 of 4) sorted by relevance

/reactos/sdk/lib/ucrt/stdlib/
H A Dqsort.cpp37 #define __COMPARE(context, p1, p2) comp(context, p1, p2) macro
40 #define __COMPARE(context, p1, p2) comp(p1, p2)
104 if (__COMPARE(context, p, max) > 0)
217 if (__COMPARE(context, lo, mid) > 0) in qsort_s()
220 if (__COMPARE(context, lo, hi) > 0) in qsort_s()
223 if (__COMPARE(context, mid, hi) > 0) in qsort_s()
253 while (loguy < mid && __COMPARE(context, loguy, mid) <= 0); in qsort_s()
271 while (higuy > mid && __COMPARE(context, higuy, mid) > 0); in qsort_s()
316 while (higuy > mid && __COMPARE(context, higuy, mid) == 0); in qsort_s()
324 while (higuy > lo && __COMPARE(context, higuy, mid) == 0); in qsort_s()
[all …]
H A Dbsearch.cpp45 #define __COMPARE(context, p1, p2) (*compare)(context, p1, p2) macro
47 #define __COMPARE(context, p1, p2) (*compare)(p1, p2) macro
95 int const result = __COMPARE(context, key, mid); in bsearch_s()
113 return __COMPARE(context, key, lo) in bsearch_s()
126 #undef __COMPARE
H A Dlfind.cpp20 #define __COMPARE(context, p1, p2) (*compare)(context, p1, p2) macro
22 #define __COMPARE(context, p1, p2) (*compare)(p1, p2) macro
71 if (__COMPARE(context, key, const_cast<char*>(p)) == 0) in _lfind_s()
80 #undef __COMPARE
H A Dlsearch.cpp22 #define __COMPARE(context, p1, p2) (*compare)(context, p1, p2) macro
24 #define __COMPARE(context, p1, p2) (*compare)(p1, p2) macro
80 if (__COMPARE(context, key, p) == 0) in _lsearch_s()
91 #undef __COMPARE