Searched refs:nHeap (Results 1 – 3 of 3) sorted by relevance
/netbsd-src/external/bsd/bzip2/dist/ |
H A D | huffman.c | 52 if (yy > nHeap) break; \ 53 if (yy < nHeap && \ 74 Int32 nNodes, nHeap, n1, n2, i, j, k; in BZ2_hbMakeCodeLengths() local 87 nHeap = 0; in BZ2_hbMakeCodeLengths() 95 nHeap++; in BZ2_hbMakeCodeLengths() 96 heap[nHeap] = i; in BZ2_hbMakeCodeLengths() 97 UPHEAP(nHeap); in BZ2_hbMakeCodeLengths() 100 AssertH( nHeap < (BZ_MAX_ALPHA_SIZE+2), 2001 ); in BZ2_hbMakeCodeLengths() 102 while (nHeap > 1) { in BZ2_hbMakeCodeLengths() 103 n1 = heap[1]; heap[1] = heap[nHeap]; nHeap--; DOWNHEAP(1); in BZ2_hbMakeCodeLengths() [all …]
|
/netbsd-src/crypto/external/bsd/netpgp/dist/src/netpgpverify/ |
H A D | bzlib.c | 1888 if (yy > nHeap) break; \ 1889 if (yy < nHeap && \ 1910 Int32 nNodes, nHeap, n1, n2, i, j, k; in netpgpv_BZ2_hbMakeCodeLengths() local 1923 nHeap = 0; in netpgpv_BZ2_hbMakeCodeLengths() 1931 nHeap++; in netpgpv_BZ2_hbMakeCodeLengths() 1932 heap[nHeap] = i; in netpgpv_BZ2_hbMakeCodeLengths() 1933 UPHEAP(nHeap); in netpgpv_BZ2_hbMakeCodeLengths() 1936 AssertH( nHeap < (BZ_MAX_ALPHA_SIZE+2), 2001 ); in netpgpv_BZ2_hbMakeCodeLengths() 1938 while (nHeap > 1) { in netpgpv_BZ2_hbMakeCodeLengths() 1939 n1 = heap[1]; heap[1] = heap[nHeap]; nHeap--; DOWNHEAP(1); in netpgpv_BZ2_hbMakeCodeLengths() [all …]
|
/netbsd-src/external/public-domain/sqlite/dist/ |
H A D | sqlite3.c | 20133 int nHeap; /* Size of pHeap[] */ member 27746 mem3.nPool = (sqlite3GlobalConfig.nHeap / sizeof(Mem3Block)) - 2; in memsys3Init() 28351 nByte = sqlite3GlobalConfig.nHeap; in memsys5Init() 47882 DWORD dwMaximumSize = (DWORD)sqlite3GlobalConfig.nHeap; 178765 sqlite3GlobalConfig.nHeap = va_arg(ap, int); 178886 sqlite3GlobalConfig.nHeap = va_arg(ap, int);
|