HomeSort by relevance Sort by last modified time
    Searched refs:swaptype (Results 1 - 3 of 3) sorted by null

  /bionic/libc/upstream-freebsd/lib/libc/stdlib/
qsort.c 62 #define SWAPINIT(a, es) swaptype = ((char *)a - (char *)0) % sizeof(long) || \
66 swapfunc(a, b, n, swaptype)
68 int n, swaptype;
70 if(swaptype <= 1)
77 if (swaptype == 0) { \
82 swapfunc(a, b, es, swaptype)
84 #define vecswap(a, b, n) if ((n) > 0) swapfunc(a, b, n, swaptype)
116 int swaptype, swap_cnt; local
  /cts/suite/cts/deviceTests/simplecpu/jni/
CpuNativeJni.cpp 44 #define SWAPINIT(a, es) swaptype = ((char *)a - (char *)0) % sizeof(long) || \
48 swapfunc(char *a, char *b, int n, int swaptype)
50 if (swaptype <= 1)
57 if (swaptype == 0) { \
62 swapfunc(a, b, es, swaptype)
64 #define vecswap(a, b, n) if ((n) > 0) swapfunc(a, b, n, swaptype)
78 int d, r, swaptype, swap_cnt; local
  /external/valgrind/coregrind/
m_libcbase.c 767 swaptype = ((a-(Char*)0) | es) % sizeof(Word) ? 2 \
775 swaptype != 0 \
776 ? bm_swapfunc(a, b, es, swaptype) \
780 if (n > 0) bm_swapfunc(a, b, n, swaptype)
783 if (swaptype != 0) \
795 static void bm_swapfunc ( Char* a, Char* b, SizeT n, Int swaptype )
797 if (swaptype <= 1) {
813 Int r, swaptype; local

Completed in 1226 milliseconds