Lines Matching refs:tmp1
66 #define COPY(a, b, count, size, tmp1, tmp2) { \ argument
68 tmp1 = a; \
71 *tmp1++ = *tmp2++; \
114 #define SELECT(par_i, child_i, nmemb, par, child, size, k, count, tmp1, tmp2) { \ argument
122 COPY(par, child, count, size, tmp1, tmp2); \
130 COPY(child, k, count, size, tmp1, tmp2); \
133 COPY(child, par, count, size, tmp1, tmp2); \
160 char tmp, *tmp1, *tmp2; in heapsort_b() local
189 COPY(k, base + nmemb * size, cnt, size, tmp1, tmp2); in heapsort_b()
190 COPY(base + nmemb * size, base + size, cnt, size, tmp1, tmp2); in heapsort_b()
192 SELECT(i, j, nmemb, t, p, size, k, cnt, tmp1, tmp2); in heapsort_b()