Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dsqlite3.c163180 u16 nEq; /* Number of equality constraints */ member
163777 u16 nEq = pLoop->u.btree.nEq; local
163781 if( nEq==0 && (pLoop->wsFlags&(WHERE_BTM_LIMIT|WHERE_TOP_LIMIT))==0 ) return;
163783 for(i=0; i<nEq; i++){
163834 || ((flags&WHERE_VIRTUALTABLE)==0 && (pLoop->u.btree.nEq>0))
163995 for(i=pLoop->nSkip; i<pLoop->u.btree.nEq; i++){
164371 int nEq = 0; local
164392 if( pLoop->aLTerm[i]->pExpr==pX ) nEq++;
164402 aiMap = (int*)sqlite3DbMallocZero(db, sizeof(int)*nEq);
164426 pLevel->u.in.nIn += nEq;
[all …]
H A Dshell.c15620 int nEq = 0; /* Number of elements in pEq */ in idxFindCompatible() local
15624 for(pIter=pEq; pIter; pIter=pIter->pLink) nEq++; in idxFindCompatible()
15643 if( iIdx<nEq ){ in idxFindCompatible()