Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dshell.c21365 i64 nLoop = 0; in display_explain_scanstats() local
21379 sqlite3_stmt_scanstatus_v2(p, ii, SQLITE_SCANSTAT_NLOOP,f,(void*)&nLoop); in display_explain_scanstats()
21387 if( nCycle>=0 || nLoop>=0 || nRow>=0 ){ in display_explain_scanstats()
21394 if( nLoop>=0 ){ in display_explain_scanstats()
21395 z = sqlite3_mprintf("%z%sloops=%lld", z, z ? " " : "", nLoop); in display_explain_scanstats()
21402 double rpl = (double)nRow / (double)nLoop; in display_explain_scanstats()
H A Dsqlite3.c157784 int nLoop = 0;
157790 if( nLoop && (pTerm->wtFlags & TERM_LIKE)!=0 ){
157806 nLoop++;
166902 u16 nLoop, /* Number of entries in pPath->aLoop[] */
166954 if( nLoop && OptimizationDisabled(db, SQLITE_OrderByIdxJoin) ) return 0;
166967 for(iLoop=0; isOrderDistinct && obSat<obDone && iLoop<=nLoop; iLoop++){
166969 if( iLoop<nLoop ){
167254 static const char *wherePathName(WherePath *pPath, int nLoop, WhereLoop *pLast){
167257 for(i=0; i<nLoop; i++){ zName[i] = pPath->aLoop[i]->cId; }
167343 int nLoop; /* Number of terms in the join */
[all …]