Home
last modified time | relevance | path

Searched refs:iMaxKey (Results 1 – 1 of 1) sorted by relevance

/sqlite-3.40.0/src/
H A Dpcache1.c191 unsigned int iMaxKey; /* Largest key seen since xTruncate() */ member
653 assert( pCache->iMaxKey >= iLimit ); in pcache1TruncateUnsafe()
655 if( pCache->iMaxKey - iLimit < pCache->nHash ){ in pcache1TruncateUnsafe()
661 iStop = pCache->iMaxKey % pCache->nHash; in pcache1TruncateUnsafe()
936 if( iKey>pCache->iMaxKey ){ in pcache1FetchStage2()
937 pCache->iMaxKey = iKey; in pcache1FetchStage2()
1042 assert( pPage==0 || pCache->iMaxKey>=iKey ); in pcache1FetchWithMutex()
1142 if( iNew>pCache->iMaxKey ){ in pcache1Rekey()
1143 pCache->iMaxKey = iNew; in pcache1Rekey()
1159 if( iLimit<=pCache->iMaxKey ){ in pcache1Truncate()
[all …]