Home
last modified time | relevance | path

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

1234567

/dports/databases/sqlite2/sqlite-2.8.17/src/
H A Dvdbeaux.c81 if( i>=p->nOpAlloc ){ in sqliteVdbeAddOp()
82 int oldSize = p->nOpAlloc; in sqliteVdbeAddOp()
84 p->nOpAlloc = p->nOpAlloc*2 + 100; in sqliteVdbeAddOp()
85 aNew = sqliteRealloc(p->aOp, p->nOpAlloc*sizeof(Op)); in sqliteVdbeAddOp()
87 p->nOpAlloc = oldSize; in sqliteVdbeAddOp()
204 if( p->nOp + nOp >= p->nOpAlloc ){ in sqliteVdbeAddOpList()
205 int oldSize = p->nOpAlloc; in sqliteVdbeAddOpList()
207 p->nOpAlloc = p->nOpAlloc*2 + nOp + 10; in sqliteVdbeAddOpList()
208 aNew = sqliteRealloc(p->aOp, p->nOpAlloc*sizeof(Op)); in sqliteVdbeAddOpList()
210 p->nOpAlloc = oldSize; in sqliteVdbeAddOpList()
[all …]
H A DvdbeInt.h235 int nOpAlloc; /* Number of slots allocated for aOp[] */ member
/dports/databases/p5-DBD-SQLite2/DBD-SQLite2-0.38/
H A Dvdbeaux.c81 if( i>=p->nOpAlloc ){ in sqliteVdbeAddOp()
82 int oldSize = p->nOpAlloc; in sqliteVdbeAddOp()
84 p->nOpAlloc = p->nOpAlloc*2 + 100; in sqliteVdbeAddOp()
85 aNew = sqliteRealloc(p->aOp, p->nOpAlloc*sizeof(Op)); in sqliteVdbeAddOp()
87 p->nOpAlloc = oldSize; in sqliteVdbeAddOp()
204 if( p->nOp + nOp >= p->nOpAlloc ){ in sqliteVdbeAddOpList()
205 int oldSize = p->nOpAlloc; in sqliteVdbeAddOpList()
207 p->nOpAlloc = p->nOpAlloc*2 + nOp + 10; in sqliteVdbeAddOpList()
208 aNew = sqliteRealloc(p->aOp, p->nOpAlloc*sizeof(Op)); in sqliteVdbeAddOpList()
210 p->nOpAlloc = oldSize; in sqliteVdbeAddOpList()
[all …]
H A DvdbeInt.h235 int nOpAlloc; /* Number of slots allocated for aOp[] */ member
/dports/devel/qmake/qt-x11-free-3.3.8/src/3rdparty/sqlite/
H A DvdbeInt.h235 int nOpAlloc; /* Number of slots allocated for aOp[] */ member
/dports/science/mmdb2/mmdb2-2.0.20/mmdb2/
H A Dmmdb_coormngr.cpp192 nOpAlloc = 0; in InitGenSym()
197 for (i=0;i<nOpAlloc;i++) { in FreeMemory()
204 nOpAlloc = 0; in FreeMemory()
215 if (Nops>nOpAlloc) { in AddSymOp()
219 for (i=0;i<nOpAlloc;i++) { in AddSymOp()
235 nOpAlloc = Nops; in AddSymOp()
267 nOpAlloc = Nops; in Copy()
293 f.WriteInt ( &nOpAlloc ); in write()
294 for (i=0;i<nOpAlloc;i++) { in write()
308 f.ReadInt ( &nOpAlloc ); in read()
[all …]
H A Dmmdb_coormngr.h148 int nOpAlloc; // number of allocated operations
/dports/databases/sqlcipher/sqlcipher-3.4.2/src/
H A Dvdbeaux.c38 assert( pParse->nOpAlloc==0 ); in sqlite3VdbeCreate()
114 int nNew = (p->nOpAlloc>=512 ? p->nOpAlloc*2 : p->nOpAlloc+nOp); in growOpArray()
116 int nNew = (p->nOpAlloc ? p->nOpAlloc*2 : (int)(1024/sizeof(Op))); in growOpArray()
127 assert( nNew>=(p->nOpAlloc+nOp) ); in growOpArray()
131 p->nOpAlloc = p->szOpAlloc/sizeof(Op); in growOpArray()
165 assert( p->pParse->nOpAlloc<=p->nOp ); in growOp3()
167 assert( p->pParse->nOpAlloc>p->nOp ); in growOp3()
177 if( p->pParse->nOpAlloc<=i ){ in sqlite3VdbeAddOp3()
661 assert( p->nOp + N <= p->pParse->nOpAlloc ); in sqlite3VdbeVerifyNoMallocRequired()
722 if( p->nOp + nOp > p->pParse->nOpAlloc && growOpArray(p, nOp) ){ in sqlite3VdbeAddOpList()
H A DsqliteInt.h2964 int nOpAlloc; /* Number of slots allocated for Vdbe.aOp[] */ member
/dports/databases/sqlite3/sqlite-src-3350500/src/
H A Dvdbeaux.c43 assert( p->nOpAlloc==0 ); in sqlite3VdbeCreate()
169 sqlite3_int64 nNew = (v->nOpAlloc>=512 ? 2*(sqlite3_int64)v->nOpAlloc in growOpArray()
170 : (sqlite3_int64)v->nOpAlloc+nOp); in growOpArray()
172 sqlite3_int64 nNew = (v->nOpAlloc ? 2*(sqlite3_int64)v->nOpAlloc in growOpArray()
184 assert( nNew>=(v->nOpAlloc+nOp) ); in growOpArray()
188 v->nOpAlloc = p->szOpAlloc/sizeof(Op); in growOpArray()
229 assert( p->nOpAlloc<=p->nOp ); in growOp3()
231 assert( p->nOpAlloc>p->nOp ); in growOp3()
241 if( p->nOpAlloc<=i ){ in sqlite3VdbeAddOp3()
908 assert( p->nOp + N <= p->nOpAlloc ); in sqlite3VdbeVerifyNoMallocRequired()
[all …]
H A DvdbeInt.h407 int nOpAlloc; /* Slots allocated for aOp[] */ member
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/sqlite/src/src/
H A Dvdbeaux.c43 assert( p->nOpAlloc==0 ); in sqlite3VdbeCreate()
169 sqlite3_int64 nNew = (v->nOpAlloc>=512 ? 2*(sqlite3_int64)v->nOpAlloc in growOpArray()
170 : (sqlite3_int64)v->nOpAlloc+nOp); in growOpArray()
172 sqlite3_int64 nNew = (v->nOpAlloc ? 2*(sqlite3_int64)v->nOpAlloc in growOpArray()
184 assert( nNew>=(v->nOpAlloc+nOp) ); in growOpArray()
188 v->nOpAlloc = p->szOpAlloc/sizeof(Op); in growOpArray()
229 assert( p->nOpAlloc<=p->nOp ); in growOp3()
231 assert( p->nOpAlloc>p->nOp ); in growOp3()
241 if( p->nOpAlloc<=i ){ in sqlite3VdbeAddOp3()
905 assert( p->nOp + N <= p->nOpAlloc ); in sqlite3VdbeVerifyNoMallocRequired()
[all …]
H A DvdbeInt.h405 int nOpAlloc; /* Slots allocated for aOp[] */ member
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/sqlite/src/src/
H A Dvdbeaux.c43 assert( p->nOpAlloc==0 ); in sqlite3VdbeCreate()
169 sqlite3_int64 nNew = (v->nOpAlloc>=512 ? 2*(sqlite3_int64)v->nOpAlloc in growOpArray()
170 : (sqlite3_int64)v->nOpAlloc+nOp); in growOpArray()
172 sqlite3_int64 nNew = (v->nOpAlloc ? 2*(sqlite3_int64)v->nOpAlloc in growOpArray()
184 assert( nNew>=(v->nOpAlloc+nOp) ); in growOpArray()
188 v->nOpAlloc = p->szOpAlloc/sizeof(Op); in growOpArray()
229 assert( p->nOpAlloc<=p->nOp ); in growOp3()
231 assert( p->nOpAlloc>p->nOp ); in growOp3()
241 if( p->nOpAlloc<=i ){ in sqlite3VdbeAddOp3()
907 assert( p->nOp + N <= p->nOpAlloc ); in sqlite3VdbeVerifyNoMallocRequired()
[all …]
H A DvdbeInt.h406 int nOpAlloc; /* Slots allocated for aOp[] */ member
/dports/databases/db5/db-5.3.28/lang/sql/sqlite/src/
H A DvdbeInt.h277 int nOpAlloc; /* Number of slots allocated for aOp[] */ member
H A Dvdbeaux.c113 int nNew = (p->nOpAlloc ? p->nOpAlloc*2 : (int)(1024/sizeof(Op))); in growOpArray()
116 p->nOpAlloc = sqlite3DbMallocSize(p->db, pNew)/sizeof(Op); in growOpArray()
145 if( p->nOpAlloc<=i ){ in sqlite3VdbeAddOp3()
481 if( p->nOp + nOp > p->nOpAlloc && growOpArray(p) ){ in sqlite3VdbeAddOpList()
1450 u8 *zEnd = (u8 *)&p->aOp[p->nOpAlloc]; /* First byte past available mem */ in sqlite3VdbeMakeReady()
/dports/databases/R-cran-RSQLite/RSQLite/src/sqlite/
H A Dsqlite3.c11928 int nOpAlloc; /* Number of slots allocated for Vdbe.aOp[] */ member
62253 assert( pParse->nOpAlloc==0 );
62322 int nNew = (p->nOpAlloc>=512 ? p->nOpAlloc*2 : p->nOpAlloc+nOp);
62324 int nNew = (p->nOpAlloc ? p->nOpAlloc*2 : (int)(1024/sizeof(Op)));
62329 assert( nNew>=(p->nOpAlloc+nOp) );
62332 p->nOpAlloc = sqlite3DbMallocSize(p->db, pNew)/sizeof(Op);
62372 if( p->pParse->nOpAlloc<=i ){
62775 if( p->nOp + nOp > p->pParse->nOpAlloc && growOpArray(p, nOp) ){
63882 zEnd = (u8*)&p->aOp[pParse->nOpAlloc]; /* First byte past end of zCsr[] */
/dports/games/redeclipse/base-2.0.0/src/support/
H A Dsqlite3.c12603 int nOpAlloc; /* Number of slots allocated for Vdbe.aOp[] */ member
65933 assert( pParse->nOpAlloc==0 );
66013 int nNew = (p->nOpAlloc>=512 ? p->nOpAlloc*2 : p->nOpAlloc+nOp);
66015 int nNew = (p->nOpAlloc ? p->nOpAlloc*2 : (int)(1024/sizeof(Op)));
66020 assert( nNew>=(p->nOpAlloc+nOp) );
66023 p->nOpAlloc = sqlite3DbMallocSize(p->db, pNew)/sizeof(Op);
66063 if( p->pParse->nOpAlloc<=i ){
66487 if( p->nOp + nOp > p->pParse->nOpAlloc && growOpArray(p, nOp) ){
67637 zEnd = (u8*)&p->aOp[pParse->nOpAlloc]; /* First byte past end of zCsr[] */
/dports/games/redeclipse16/base-1.6.0/src/support/
H A Dsqlite3.c12603 int nOpAlloc; /* Number of slots allocated for Vdbe.aOp[] */ member
65933 assert( pParse->nOpAlloc==0 );
66013 int nNew = (p->nOpAlloc>=512 ? p->nOpAlloc*2 : p->nOpAlloc+nOp);
66015 int nNew = (p->nOpAlloc ? p->nOpAlloc*2 : (int)(1024/sizeof(Op)));
66020 assert( nNew>=(p->nOpAlloc+nOp) );
66023 p->nOpAlloc = sqlite3DbMallocSize(p->db, pNew)/sizeof(Op);
66063 if( p->pParse->nOpAlloc<=i ){
66487 if( p->nOp + nOp > p->pParse->nOpAlloc && growOpArray(p, nOp) ){
67637 zEnd = (u8*)&p->aOp[pParse->nOpAlloc]; /* First byte past end of zCsr[] */
/dports/security/libzrtpcppcore/ZRTPCPP-4.6.6/clients/tivi/android/jni/sqlite3/
H A Dsqlite3.c12435 int nOpAlloc; /* Number of slots allocated for Vdbe.aOp[] */ member
64687 assert( pParse->nOpAlloc==0 );
64756 int nNew = (p->nOpAlloc>=512 ? p->nOpAlloc*2 : p->nOpAlloc+nOp);
64758 int nNew = (p->nOpAlloc ? p->nOpAlloc*2 : (int)(1024/sizeof(Op)));
64763 assert( nNew>=(p->nOpAlloc+nOp) );
64766 p->nOpAlloc = sqlite3DbMallocSize(p->db, pNew)/sizeof(Op);
64806 if( p->pParse->nOpAlloc<=i ){
65212 if( p->nOp + nOp > p->pParse->nOpAlloc && growOpArray(p, nOp) ){
66348 zEnd = (u8*)&p->aOp[pParse->nOpAlloc]; /* First byte past end of zCsr[] */
/dports/devel/global/global-6.6.7/libdb/
H A Dsqlite3.c12080 int nOpAlloc; /* Number of slots allocated for Vdbe.aOp[] */ member
63231 assert( pParse->nOpAlloc==0 );
63300 int nNew = (p->nOpAlloc>=512 ? p->nOpAlloc*2 : p->nOpAlloc+nOp);
63302 int nNew = (p->nOpAlloc ? p->nOpAlloc*2 : (int)(1024/sizeof(Op)));
63307 assert( nNew>=(p->nOpAlloc+nOp) );
63310 p->nOpAlloc = sqlite3DbMallocSize(p->db, pNew)/sizeof(Op);
63350 if( p->pParse->nOpAlloc<=i ){
63753 if( p->nOp + nOp > p->pParse->nOpAlloc && growOpArray(p, nOp) ){
64861 zEnd = (u8*)&p->aOp[pParse->nOpAlloc]; /* First byte past end of zCsr[] */
/dports/sysutils/py-pytsk/pytsk3-20210419/sleuthkit/tsk/auto/
H A Dsqlite3.c12603 int nOpAlloc; /* Number of slots allocated for Vdbe.aOp[] */ member
65954 assert( pParse->nOpAlloc==0 );
66034 int nNew = (p->nOpAlloc>=512 ? p->nOpAlloc*2 : p->nOpAlloc+nOp);
66036 int nNew = (p->nOpAlloc ? p->nOpAlloc*2 : (int)(1024/sizeof(Op)));
66041 assert( nNew>=(p->nOpAlloc+nOp) );
66044 p->nOpAlloc = sqlite3DbMallocSize(p->db, pNew)/sizeof(Op);
66084 if( p->pParse->nOpAlloc<=i ){
66508 if( p->nOp + nOp > p->pParse->nOpAlloc && growOpArray(p, nOp) ){
67658 zEnd = (u8*)&p->aOp[pParse->nOpAlloc]; /* First byte past end of zCsr[] */
/dports/databases/libgda5-bdb/libgda-5.2.10/libgda/sqlite/sqlite-src/
H A Dsqlite3.c12603 int nOpAlloc; /* Number of slots allocated for Vdbe.aOp[] */ member
65933 assert( pParse->nOpAlloc==0 );
66013 int nNew = (p->nOpAlloc>=512 ? p->nOpAlloc*2 : p->nOpAlloc+nOp);
66015 int nNew = (p->nOpAlloc ? p->nOpAlloc*2 : (int)(1024/sizeof(Op)));
66020 assert( nNew>=(p->nOpAlloc+nOp) );
66023 p->nOpAlloc = sqlite3DbMallocSize(p->db, pNew)/sizeof(Op);
66063 if( p->pParse->nOpAlloc<=i ){
66487 if( p->nOp + nOp > p->pParse->nOpAlloc && growOpArray(p, nOp) ){
67637 zEnd = (u8*)&p->aOp[pParse->nOpAlloc]; /* First byte past end of zCsr[] */
/dports/databases/libgda5/libgda-5.2.10/libgda/sqlite/sqlite-src/
H A Dsqlite3.c12603 int nOpAlloc; /* Number of slots allocated for Vdbe.aOp[] */ member
65933 assert( pParse->nOpAlloc==0 );
66013 int nNew = (p->nOpAlloc>=512 ? p->nOpAlloc*2 : p->nOpAlloc+nOp);
66015 int nNew = (p->nOpAlloc ? p->nOpAlloc*2 : (int)(1024/sizeof(Op)));
66020 assert( nNew>=(p->nOpAlloc+nOp) );
66023 p->nOpAlloc = sqlite3DbMallocSize(p->db, pNew)/sizeof(Op);
66063 if( p->pParse->nOpAlloc<=i ){
66487 if( p->nOp + nOp > p->pParse->nOpAlloc && growOpArray(p, nOp) ){
67637 zEnd = (u8*)&p->aOp[pParse->nOpAlloc]; /* First byte past end of zCsr[] */

1234567