HomeSort by: relevance | last modified time | path
    Searched defs:idf (Results 1 - 3 of 3) sorted by relevancy

  /src/lib/libm/src/
e_acosf.c 69 int32_t idf; local in function:__ieee754_acosf
73 GET_FLOAT_WORD(idf,df);
74 SET_FLOAT_WORD(df,idf&0xfffff000);
  /src/sys/external/bsd/drm2/dist/drm/i915/display/
dvo_ch7xxx.c 285 u8 tvco, tpcp, tpd, tlpf, idf; local in function:ch7xxx_mode_set
307 ch7xxx_readb(dvo, CH7xxx_IDF, &idf);
309 idf &= ~(CH7xxx_IDF_HSP | CH7xxx_IDF_VSP);
311 idf |= CH7xxx_IDF_HSP;
314 idf |= CH7xxx_IDF_VSP;
316 ch7xxx_writeb(dvo, CH7xxx_IDF, idf);
  /src/usr.sbin/makemandb/
apropos-utils.c 463 * For each phrase of the query, it computes the tf and idf and adds them over.
464 * It computes the final rank, by multiplying tf and idf together.
477 inverse_document_frequency *idf = sqlite3_user_data(pctx); local in function:rank_func
515 if (idf->status == 0 && ndocshitcount)
516 idf->value +=
528 idf->status = 1;
534 double score = (tf * idf->value) / (k + tf);
678 inverse_document_frequency idf = {0, 0}; local in function:execute_search_query
683 (void *) &idf, rank_func, NULL, NULL);

Completed in 15 milliseconds