Lines Matching defs:szMax
51344 sqlite3_int64 szMax; /* Maximum allowed size of the file */
51550 if( newSz>p->szMax ){
51554 if( newSz>p->szMax ) newSz = p->szMax;
51747 iLimit = p->szMax;
51752 p->szMax = iLimit;
51857 p->szMax = sqlite3GlobalConfig.mxMemdbSize;
51881 p->szMax = sqlite3GlobalConfig.mxMemdbSize;
52157 pStore->szMax = szBuf;
52158 if( pStore->szMax<sqlite3GlobalConfig.mxMemdbSize ){
52159 pStore->szMax = sqlite3GlobalConfig.mxMemdbSize;
231308 int szMax = 0;
231313 if( sz>szMax ) szMax = sz;
231315 if( szMax>=szSeg ){
231319 szPromote = szMax;