Lines Matching defs:nHit
196586 int nHit = fts3ColumnlistCount(&pIter);
196589 p->aMatchinfo[iStart + iCol] = (u32)nHit;
196590 }else if( nHit ){
224880 sqlite3_int64 nHit = 0;
224881 rc = pApi->xQueryPhrase(pFts, i, (void*)&nHit, fts5CountCb);
224886 ** IDF = log( (N - nHit + 0.5) / (nHit + 0.5) )
224888 ** where "N" is the total number of documents in the set and nHit
224892 ** The problem with this is that if (N < 2*nHit), the IDF is
224896 double idf = log( (nRow - nHit + 0.5) / (nHit + 0.5) );