Home
last modified time | relevance | path

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

/illumos-gate/usr/src/lib/libsqlite/src/
H A Dvdbe.c422 static int expandCursorArraySize(Vdbe *p, int mxCursor){ in expandCursorArraySize() argument
423 if( mxCursor>=p->nCursor ){ in expandCursorArraySize()
424 Cursor *aCsr = sqliteRealloc( p->aCsr, (mxCursor+1)*sizeof(Cursor) ); in expandCursorArraySize()
427 memset(&p->aCsr[p->nCursor], 0, sizeof(Cursor)*(mxCursor+1-p->nCursor)); in expandCursorArraySize()
428 p->nCursor = mxCursor+1; in expandCursorArraySize()