Lines Matching refs:nHeap
3220 if (yy > nHeap) break; \
3221 if (yy < nHeap && \
3242 Int32 nNodes, nHeap, n1, n2, i, j, k; in BZ2_hbMakeCodeLengths() local
3255 nHeap = 0; in BZ2_hbMakeCodeLengths()
3263 nHeap++; in BZ2_hbMakeCodeLengths()
3264 heap[nHeap] = i; in BZ2_hbMakeCodeLengths()
3265 UPHEAP(nHeap); in BZ2_hbMakeCodeLengths()
3268 AssertH( nHeap < (BZ_MAX_ALPHA_SIZE+2), 2001 ); in BZ2_hbMakeCodeLengths()
3270 while (nHeap > 1) { in BZ2_hbMakeCodeLengths()
3271 n1 = heap[1]; heap[1] = heap[nHeap]; nHeap--; DOWNHEAP(1); in BZ2_hbMakeCodeLengths()
3272 n2 = heap[1]; heap[1] = heap[nHeap]; nHeap--; DOWNHEAP(1); in BZ2_hbMakeCodeLengths()
3277 nHeap++; in BZ2_hbMakeCodeLengths()
3278 heap[nHeap] = nNodes; in BZ2_hbMakeCodeLengths()
3279 UPHEAP(nHeap); in BZ2_hbMakeCodeLengths()