Home | History | Annotate | Download | only in dist

Lines Matching refs:zz

37    Int32 zz, tmp;                                     \
38 zz = z; tmp = heap[zz]; \
39 while (weight[tmp] < weight[heap[zz >> 1]]) { \
40 heap[zz] = heap[zz >> 1]; \
41 zz >>= 1; \
43 heap[zz] = tmp; \
48 Int32 zz, yy, tmp; \
49 zz = z; tmp = heap[zz]; \
51 yy = zz << 1; \
57 heap[zz] = heap[yy]; \
58 zz = yy; \
60 heap[zz] = tmp; \