Home
last modified time | relevance | path

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

/PHP-7.1/ext/sqlite3/libsqlite/
H A Dsqlite3.c20339 int nOpAlloc; /* Slots allocated for aOp[] */ member
76354 assert( p->nOpAlloc==0 );
76473 sqlite3_int64 nNew = (v->nOpAlloc>=512 ? 2*(sqlite3_int64)v->nOpAlloc
76474 : (sqlite3_int64)v->nOpAlloc+nOp);
76476 sqlite3_int64 nNew = (v->nOpAlloc ? 2*(sqlite3_int64)v->nOpAlloc
76488 assert( nNew>=(v->nOpAlloc+nOp) );
76492 v->nOpAlloc = p->szOpAlloc/sizeof(Op);
76526 assert( p->nOpAlloc<=p->nOp );
76528 assert( p->nOpAlloc>p->nOp );
76538 if( p->nOpAlloc<=i ){
[all …]

Completed in 377 milliseconds