Home | History | Annotate | Download | only in share

Lines Matching defs:lmt

76   // 2) lmt_off: lmt index (week offset for example)
106 uint64 lmt = ((raw_score & 0xffff0000) >> 16);
109 lmt &= mask;
111 lmt = lmt * kUserDictLMTGranularity + kUserDictLMTSince;
112 return lmt;
115 inline int UserDict::build_score(uint64 lmt, int freq) {
116 lmt = (lmt - kUserDictLMTSince) / kUserDictLMTGranularity;
117 lmt = (lmt << (64 - kUserDictLMTBitWidth));
118 lmt = (lmt >> (64 - kUserDictLMTBitWidth));
119 uint16 lmt16 = (uint16)lmt;
1700 uint16 lemma_len, uint16 count, uint64 lmt) {
1706 id = _put_lemma(lemma_str, splids, lemma_len, count, lmt);
2054 uint16 lemma_len, uint16 count, uint64 lmt) {
2064 scores_[off] = build_score(lmt, count);
2097 LemmaIdType id = append_a_lemma(lemma_str, splids, lemma_len, count, lmt);
2142 uint64 lmt = extract_score_lmt(score);
2150 lmt = time(NULL);
2152 scores_[off] = build_score(lmt, count);
2176 uint16 lemma_len, uint16 count, uint64 lmt) {
2191 scores_[off] = build_score(lmt, count);