Home
last modified time | relevance | path

Searched refs:CMPFUNC (Results 1 – 7 of 7) sorted by relevance

/external/deqp/framework/delibs/depool/
DdePoolHeap.h57 #define DE_DECLARE_POOL_HEAP(TYPENAME, VALUETYPE, CMPFUNC) \ argument
111 …int childCmpRes = CMPFUNC(TYPENAME##Array_get(array, childNdx0), TYPENAME##Array_get(array, childN…
113 … int cmpRes = CMPFUNC(TYPENAME##Array_get(array, ndx), TYPENAME##Array_get(array, minChildNdx)); \
133 int cmpRes = CMPFUNC(TYPENAME##Array_get(array, ndx), TYPENAME##Array_get(array, parentNdx)); \
DdePoolArray.h239 #define DE_DECLARE_POOL_ARRAY_SORT(TYPENAME, VALUETYPE, SORTNAME, CMPFUNC) \ argument
249 …if ((childNdx + 1 <= endNdx) && (CMPFUNC(TYPENAME##_get(arr, childNdx), TYPENAME##_get(arr, childN…
252 if (CMPFUNC(TYPENAME##_get(arr, rootNdx), TYPENAME##_get(arr, childNdx)) < 0) \
DdePoolHash.h200 #define DE_IMPLEMENT_POOL_HASH(TYPENAME, KEYTYPE, VALUETYPE, HASHFUNC, CMPFUNC) \ argument
310 if (CMPFUNC(slot->keys[elemNdx], key)) \
385 if (CMPFUNC(slot->keys[elemNdx], key)) \
DdePoolMultiSet.h121 #define DE_IMPLEMENT_POOL_MULTISET(TYPENAME, KEYTYPE, HASHFUNC, CMPFUNC) \ argument
123 DE_IMPLEMENT_POOL_HASH(TYPENAME##Hash, KEYTYPE, int, HASHFUNC, CMPFUNC); \
DdePoolSet.h207 #define DE_IMPLEMENT_POOL_SET(TYPENAME, KEYTYPE, HASHFUNC, CMPFUNC) \ argument
318 if (CMPFUNC(slot->keys[elemNdx], key)) \
393 if (CMPFUNC(key, slot->keys[elemNdx])) \
/external/python/cpython2/Doc/library/
Dctypes.rst972 >>> CMPFUNC = CFUNCTYPE(c_int, POINTER(c_int), POINTER(c_int))
986 >>> cmp_func = CMPFUNC(py_cmp_func)
1010 >>> cmp_func = CMPFUNC(py_cmp_func)
1050 >>> qsort(ia, len(ia), sizeof(c_int), CMPFUNC(py_cmp_func)) # doctest: +WINDOWS
1065 >>> qsort(ia, len(ia), sizeof(c_int), CMPFUNC(py_cmp_func)) # doctest: +LINUX
/external/python/cpython3/Doc/library/
Dctypes.rst983 >>> CMPFUNC = CFUNCTYPE(c_int, POINTER(c_int), POINTER(c_int))
993 >>> cmp_func = CMPFUNC(py_cmp_func)
1013 >>> qsort(ia, len(ia), sizeof(c_int), CMPFUNC(py_cmp_func)) # doctest: +LINUX