Home | History | Annotate | Download | only in dist

Lines Matching defs:nAlloc

1215   int nAlloc = 0;                 /* Allocated size of p->aiIndent[], abYield */
1244 if( iOp>=nAlloc ){
1245 nAlloc += 100;
1246 p->aiIndent = (int*)sqlite3_realloc(p->aiIndent, nAlloc*sizeof(int));
1247 abYield = (int*)sqlite3_realloc(abYield, nAlloc*sizeof(int));
1940 int nAlloc; /* Space allocated for z[] */
1948 if( p->n+1>=p->nAlloc ){
1949 p->nAlloc += p->nAlloc + 100;
1950 p->z = sqlite3_realloc(p->z, p->nAlloc);
3204 int nRow, nAlloc;
3239 nRow = nAlloc = 0;
3247 if( nRow>=nAlloc ){
3249 int n = nAlloc*2 + 10;
3255 nAlloc = n;
3568 int nAlloc = 0; /* Allocated zSql[] space */
3607 if( nSql+nLine+2>=nAlloc ){
3608 nAlloc = nSql+nLine+100;
3609 zSql = realloc(zSql, nAlloc);
3619 assert( nAlloc>0 && zSql!=0 );