Searched refs:mxCursor (Results 1 – 1 of 1) sorted by relevance
424 static int expandCursorArraySize(Vdbe *p, int mxCursor){ in expandCursorArraySize() argument425 if( mxCursor>=p->nCursor ){ in expandCursorArraySize()426 Cursor *aCsr = sqliteRealloc( p->aCsr, (mxCursor+1)*sizeof(Cursor) ); in expandCursorArraySize()429 memset(&p->aCsr[p->nCursor], 0, sizeof(Cursor)*(mxCursor+1-p->nCursor)); in expandCursorArraySize()430 p->nCursor = mxCursor+1; in expandCursorArraySize()