Lines Matching full:nalloc
1411 int nAlloc = 0; /* Allocated size of p->aiIndent[], abYield */
1441 if( iOp>=nAlloc ){
1442 nAlloc += 100;
1443 p->aiIndent = (int*)sqlite3_realloc64(p->aiIndent, nAlloc*sizeof(int));
1444 abYield = (int*)sqlite3_realloc64(abYield, nAlloc*sizeof(int));
2148 int nAlloc; /* Space allocated for z[] */
2157 if( p->n+1>=p->nAlloc ){
2158 p->nAlloc += p->nAlloc + 100;
2159 p->z = sqlite3_realloc64(p->z, p->nAlloc);
3727 int nRow, nAlloc;
3772 nRow = nAlloc = 0;
3780 if( nRow>=nAlloc ){
3782 int n2 = nAlloc*2 + 10;
3788 nAlloc = n2;
4190 int nAlloc = 0; /* Allocated zSql[] space */
4229 if( nSql+nLine+2>=nAlloc ){
4230 nAlloc = nSql+nLine+100;
4231 zSql = realloc(zSql, nAlloc);
4241 assert( nAlloc>0 && zSql!=0 );