Home
last modified time | relevance | path

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

/PHP-5.5/ext/sqlite3/libsqlite/
H A Dsqlite3.c12520 int nOpAlloc; /* Number of slots allocated for Vdbe.aOp[] */ member
64819 assert( pParse->nOpAlloc==0 );
64888 int nNew = (p->nOpAlloc>=512 ? p->nOpAlloc*2 : p->nOpAlloc+nOp);
64890 int nNew = (p->nOpAlloc ? p->nOpAlloc*2 : (int)(1024/sizeof(Op)));
64895 assert( nNew>=(p->nOpAlloc+nOp) );
64898 p->nOpAlloc = sqlite3DbMallocSize(p->db, pNew)/sizeof(Op);
64938 if( p->pParse->nOpAlloc<=i ){
65344 if( p->nOp + nOp > p->pParse->nOpAlloc && growOpArray(p, nOp) ){
66480 zEnd = (u8*)&p->aOp[pParse->nOpAlloc]; /* First byte past end of zCsr[] */

Completed in 268 milliseconds