Lines Matching refs:nHeap
3229 if (yy > nHeap) break; \
3230 if (yy < nHeap && \
3251 Int32 nNodes, nHeap, n1, n2, i, j, k; in BZ2_hbMakeCodeLengths() local
3264 nHeap = 0; in BZ2_hbMakeCodeLengths()
3272 nHeap++; in BZ2_hbMakeCodeLengths()
3273 heap[nHeap] = i; in BZ2_hbMakeCodeLengths()
3274 UPHEAP(nHeap); in BZ2_hbMakeCodeLengths()
3277 AssertH( nHeap < (BZ_MAX_ALPHA_SIZE+2), 2001 ); in BZ2_hbMakeCodeLengths()
3279 while (nHeap > 1) { in BZ2_hbMakeCodeLengths()
3280 n1 = heap[1]; heap[1] = heap[nHeap]; nHeap--; DOWNHEAP(1); in BZ2_hbMakeCodeLengths()
3281 n2 = heap[1]; heap[1] = heap[nHeap]; nHeap--; DOWNHEAP(1); in BZ2_hbMakeCodeLengths()
3286 nHeap++; in BZ2_hbMakeCodeLengths()
3287 heap[nHeap] = nNodes; in BZ2_hbMakeCodeLengths()
3288 UPHEAP(nHeap); in BZ2_hbMakeCodeLengths()