Lines Matching refs:nHeap
3203 if (yy > nHeap) break; \
3204 if (yy < nHeap && \
3225 Int32 nNodes, nHeap, n1, n2, i, j, k; in BZ2_hbMakeCodeLengths() local
3238 nHeap = 0; in BZ2_hbMakeCodeLengths()
3246 nHeap++; in BZ2_hbMakeCodeLengths()
3247 heap[nHeap] = i; in BZ2_hbMakeCodeLengths()
3248 UPHEAP(nHeap); in BZ2_hbMakeCodeLengths()
3251 AssertH( nHeap < (BZ_MAX_ALPHA_SIZE+2), 2001 ); in BZ2_hbMakeCodeLengths()
3253 while (nHeap > 1) { in BZ2_hbMakeCodeLengths()
3254 n1 = heap[1]; heap[1] = heap[nHeap]; nHeap--; DOWNHEAP(1); in BZ2_hbMakeCodeLengths()
3255 n2 = heap[1]; heap[1] = heap[nHeap]; nHeap--; DOWNHEAP(1); in BZ2_hbMakeCodeLengths()
3260 nHeap++; in BZ2_hbMakeCodeLengths()
3261 heap[nHeap] = nNodes; in BZ2_hbMakeCodeLengths()
3262 UPHEAP(nHeap); in BZ2_hbMakeCodeLengths()