Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/sqlite3/
Dsqlite3.c23324 int nOpAlloc; /* Slots allocated for aOp[] */ member
83967 assert( p->nOpAlloc==0 );
84100 sqlite3_int64 nNew = (v->nOpAlloc>=512 ? 2*(sqlite3_int64)v->nOpAlloc
84101 : (sqlite3_int64)v->nOpAlloc+nOp);
84103 sqlite3_int64 nNew = (v->nOpAlloc ? 2*(sqlite3_int64)v->nOpAlloc
84115 assert( nNew>=(v->nOpAlloc+nOp) );
84119 v->nOpAlloc = p->szOpAlloc/sizeof(Op);
84151 assert( p->nOpAlloc<=p->nOp );
84153 assert( p->nOpAlloc>p->nOp );
84202 if( p->nOpAlloc<=i ){
[all …]
/freebsd-12-stable/crypto/heimdal/lib/sqlite/
Dsqlite3.c12826 int nOpAlloc; /* Number of slots allocated for aOp[] */ member
58418 int nNew = (p->nOpAlloc ? p->nOpAlloc*2 : (int)(1024/sizeof(Op)));
58421 p->nOpAlloc = sqlite3DbMallocSize(p->db, pNew)/sizeof(Op);
58450 if( p->nOpAlloc<=i ){
58799 if( p->nOp + nOp > p->nOpAlloc && growOpArray(p) ){
59807 zEnd = (u8*)&p->aOp[p->nOpAlloc]; /* First byte past end of zCsr[] */