Lines Matching refs:tmp
39 int32_t zz, tmp; \
41 tmp = heap[zz]; \
42 while (weight[tmp] < weight[heap[zz >> 1]]) { \
46 heap[zz] = tmp; \
56 int32_t zz, yy, tmp; \
58 tmp = heap[zz]; \
66 if (weight[tmp] < weight[heap[yy]]) \
71 heap[zz] = tmp; \
79 int32_t zz, yy, tmp; in DOWNHEAP1() local
81 tmp = heap[zz]; in DOWNHEAP1()
89 if (weight[tmp] < weight[heap[yy]]) in DOWNHEAP1()
94 heap[zz] = tmp; in DOWNHEAP1()