Home | History | Annotate | Download | only in dist

Lines Matching refs:nMax

29676   int nMax;                           /* Configured cache size */
29833 p->nMax = 100;
29877 sqlite3GlobalConfig.pcache.xCachesize(p, pCache->nMax);
30203 return pCache->nMax;
30211 pCache->nMax = mxPage;
30262 ** flag (bPurgeable) are set when the cache is created. nMax may be
30264 ** The global mutex must be held when accessing nMax.
30269 unsigned int nMax; /* Configured "cache_size" value */
30681 static void pcache1Cachesize(sqlite3_pcache *p, int nMax){
30685 pcache1.nMaxPage += (nMax - pCache->nMax);
30686 pCache->nMax = nMax;
30731 ** PCache1.nMax, or
30733 ** the sum of nMax for all purgeable caches, less the sum of
30740 ** PCache1.nMax, or
30743 ** already equal to or greater than the sum of nMax for all
30776 || nPinned>=(pCache->nMax * 9 / 10)
30787 (pCache->nPage+1>=pCache->nMax) || pcache1.nCurrentPage>=pcache1.nMaxPage
30932 pcache1.nMaxPage -= pCache->nMax;
35266 int nMax;
35279 rc = sqlite3PagerPagecount(pPager, &nMax);
35284 if( MEMDB || nMax<(int)pgno || noContent || !isOpen(pPager->fd) ){