Lines Matching refs:nFreeSlot
46250 ** The nFreeSlot and pFree values do require mutex protection.
46257 int nReserve; /* Try to keep nFreeSlot above this */
46262 int nFreeSlot; /* Number of unused pcache slots */
46310 pcache1.nSlot = pcache1.nFreeSlot = n;
46379 pcache1.nFreeSlot--;
46380 pcache1.bUnderPressure = pcache1.nFreeSlot<pcache1.nReserve;
46381 assert( pcache1.nFreeSlot>=0 );
46418 pcache1.nFreeSlot++;
46419 pcache1.bUnderPressure = pcache1.nFreeSlot<pcache1.nReserve;
46420 assert( pcache1.nFreeSlot<=pcache1.nSlot );