OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SORT_CMP
(Results
1 - 2
of
2
) sorted by null
/external/libxml2/
timsort.h
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
[
all
...]
xpath.c
170
#define
SORT_CMP
(x, y) (wrap_cmp(x, y))
[
all
...]
Completed in 97 milliseconds