Home | History | Annotate | Download | only in dist

Lines Matching full:nalloc

1417   int nAlloc = 0;                 /* Allocated size of p->aiIndent[], abYield */
1447 if( iOp>=nAlloc ){
1448 nAlloc += 100;
1449 p->aiIndent = (int*)sqlite3_realloc64(p->aiIndent, nAlloc*sizeof(int));
1450 abYield = (int*)sqlite3_realloc64(abYield, nAlloc*sizeof(int));
2170 int nAlloc; /* Space allocated for z[] */
2179 if( p->n+1>=p->nAlloc ){
2180 p->nAlloc += p->nAlloc + 100;
2181 p->z = sqlite3_realloc64(p->z, p->nAlloc);
3749 int nRow, nAlloc;
3794 nRow = nAlloc = 0;
3802 if( nRow>=nAlloc ){
3804 int n2 = nAlloc*2 + 10;
3810 nAlloc = n2;
4212 int nAlloc = 0; /* Allocated zSql[] space */
4251 if( nSql+nLine+2>=nAlloc ){
4252 nAlloc = nSql+nLine+100;
4253 zSql = realloc(zSql, nAlloc);
4263 assert( nAlloc>0 && zSql!=0 );