Lines Matching refs:nHeap
3258 if (yy > nHeap) break; \
3259 if (yy < nHeap && \
3280 Int32 nNodes, nHeap, n1, n2, i, j, k; in BZ2_hbMakeCodeLengths() local
3293 nHeap = 0; in BZ2_hbMakeCodeLengths()
3301 nHeap++; in BZ2_hbMakeCodeLengths()
3302 heap[nHeap] = i; in BZ2_hbMakeCodeLengths()
3303 UPHEAP(nHeap); in BZ2_hbMakeCodeLengths()
3306 AssertH( nHeap < (BZ_MAX_ALPHA_SIZE+2), 2001 ); in BZ2_hbMakeCodeLengths()
3308 while (nHeap > 1) { in BZ2_hbMakeCodeLengths()
3309 n1 = heap[1]; heap[1] = heap[nHeap]; nHeap--; DOWNHEAP(1); in BZ2_hbMakeCodeLengths()
3310 n2 = heap[1]; heap[1] = heap[nHeap]; nHeap--; DOWNHEAP(1); in BZ2_hbMakeCodeLengths()
3315 nHeap++; in BZ2_hbMakeCodeLengths()
3316 heap[nHeap] = nNodes; in BZ2_hbMakeCodeLengths()
3317 UPHEAP(nHeap); in BZ2_hbMakeCodeLengths()