Home | History | Annotate | Download | only in orig

Lines Matching defs:nAlloc

1210   int nAlloc = 0;                 /* Allocated size of p->aiIndent[], abYield */
1239 if( iOp>=nAlloc ){
1240 nAlloc += 100;
1241 p->aiIndent = (int*)sqlite3_realloc(p->aiIndent, nAlloc*sizeof(int));
1242 abYield = (int*)sqlite3_realloc(abYield, nAlloc*sizeof(int));
1920 int nAlloc; /* Space allocated for z[] */
1928 if( p->n+1>=p->nAlloc ){
1929 p->nAlloc += p->nAlloc + 100;
1930 p->z = sqlite3_realloc(p->z, p->nAlloc);
3184 int nRow, nAlloc;
3219 nRow = nAlloc = 0;
3227 if( nRow>=nAlloc ){
3229 int n = nAlloc*2 + 10;
3235 nAlloc = n;
3548 int nAlloc = 0; /* Allocated zSql[] space */
3587 if( nSql+nLine+2>=nAlloc ){
3588 nAlloc = nSql+nLine+100;
3589 zSql = realloc(zSql, nAlloc);
3599 assert( nAlloc>0 && zSql!=0 );