Lines Matching refs:tmp2
72 #define COPY(a, b, count, size, tmp1, tmp2) { \ argument
75 tmp2 = b; \
77 *tmp1++ = *tmp2++; \
120 #define SELECT(par_i, child_i, nmemb, par, child, size, k, count, tmp1, tmp2) { \ argument
128 COPY(par, child, count, size, tmp1, tmp2); \
136 COPY(child, k, count, size, tmp1, tmp2); \
139 COPY(child, par, count, size, tmp1, tmp2); \
166 char tmp, *tmp1, *tmp2; in heapsort_b() local
195 COPY(k, base + nmemb * size, cnt, size, tmp1, tmp2); in heapsort_b()
196 COPY(base + nmemb * size, base + size, cnt, size, tmp1, tmp2); in heapsort_b()
198 SELECT(i, j, nmemb, t, p, size, k, cnt, tmp1, tmp2); in heapsort_b()