Home
last modified time | relevance | path

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

/sqlite-3.40.0/src/
H A Dprintf.c151 if( p->mxAlloc ) sqlite3_str_reset(p); in sqlite3StrAccumSetError()
183 if( n>pAccum->nAlloc && n>pAccum->mxAlloc ){ in printfTempBuf()
763 && pAccum->mxAlloc in sqlite3_str_vappendf()
981 if( p->mxAlloc==0 ){ in sqlite3StrAccumEnlarge()
988 if( szNew+p->nChar<=p->mxAlloc ){ in sqlite3StrAccumEnlarge()
993 if( szNew > p->mxAlloc ){ in sqlite3StrAccumEnlarge()
1055 assert( p->accError==0 || p->nAlloc==0 || p->mxAlloc==0 ); in sqlite3_str_append()
1080 assert( p->mxAlloc>0 && !isMalloced(p) ); in strAccumFinishRealloc()
1094 if( p->mxAlloc>0 && !isMalloced(p) ){ in sqlite3StrAccumFinish()
1188 p->mxAlloc = mx; in sqlite3StrAccumInit()
H A Dfunc.c1786 int firstTerm = pGCC->str.mxAlloc==0; in groupConcatStep()
1787 pGCC->str.mxAlloc = db->aLimit[SQLITE_LIMIT_LENGTH]; in groupConcatStep()
1880 pGCC->str.mxAlloc = 0; in groupConcatInverse()
H A Dvdbemem.c125 assert( acc.zText==zBuf && acc.mxAlloc<=0 ); in vdbeMemRenderNum()
H A DsqliteInt.h3937 u32 mxAlloc; /* Maximum allowed allocation. 0 for no malloc usage */ member