Searched refs:mxCursor (Results 1 - 1 of 1) sorted by relevance

/illumos-gate/usr/src/lib/libsqlite/src/
H A Dvdbe.c418 ** mxCursor cursors. If there is not currently enough space, then
424 static int expandCursorArraySize(Vdbe *p, int mxCursor){ argument
425 if( mxCursor>=p->nCursor ){
426 Cursor *aCsr = sqliteRealloc( p->aCsr, (mxCursor+1)*sizeof(Cursor) );
429 memset(&p->aCsr[p->nCursor], 0, sizeof(Cursor)*(mxCursor+1-p->nCursor));
430 p->nCursor = mxCursor+1;

Completed in 65 milliseconds