Lines Matching refs:tmp2
58 #define COPY(a, b, count, size, tmp1, tmp2) { \ argument
61 tmp2 = b; \
63 *tmp1++ = *tmp2++; \
106 #define SELECT(par_i, child_i, nmemb, par, child, size, k, count, tmp1, tmp2) { \ argument
114 COPY(par, child, count, size, tmp1, tmp2); \
122 COPY(child, k, count, size, tmp1, tmp2); \
125 COPY(child, par, count, size, tmp1, tmp2); \
141 char tmp, *tmp1, *tmp2; in heapsort() local
170 COPY(k, base + nmemb * size, cnt, size, tmp1, tmp2); in heapsort()
171 COPY(base + nmemb * size, base + size, cnt, size, tmp1, tmp2); in heapsort()
173 SELECT(i, j, nmemb, t, p, size, k, cnt, tmp1, tmp2); in heapsort()