Lines Matching refs:nHeap
98 if (yy > nHeap) \
100 if (yy < nHeap && weight[heap[yy + 1]] < weight[heap[yy]]) \
116 Int32 nNodes, nHeap, n1, n2, i, j, k; in BZ2_hbMakeCodeLengths() local
128 nHeap = 0; in BZ2_hbMakeCodeLengths()
136 nHeap++; in BZ2_hbMakeCodeLengths()
137 heap[nHeap] = i; in BZ2_hbMakeCodeLengths()
138 UPHEAP(nHeap); in BZ2_hbMakeCodeLengths()
141 AssertH(nHeap < (BZ_MAX_ALPHA_SIZE + 2), 2001); in BZ2_hbMakeCodeLengths()
143 while (nHeap > 1) { in BZ2_hbMakeCodeLengths()
145 heap[1] = heap[nHeap]; in BZ2_hbMakeCodeLengths()
146 nHeap--; in BZ2_hbMakeCodeLengths()
149 heap[1] = heap[nHeap]; in BZ2_hbMakeCodeLengths()
150 nHeap--; in BZ2_hbMakeCodeLengths()
156 nHeap++; in BZ2_hbMakeCodeLengths()
157 heap[nHeap] = nNodes; in BZ2_hbMakeCodeLengths()
158 UPHEAP(nHeap); in BZ2_hbMakeCodeLengths()