OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:bigramFreq
(Results
1 - 2
of
2
) sorted by null
/packages/inputmethods/LatinIME/native/jni/src/
bigram_dictionary.cpp
90
*
bigramFreq
: an array to output frequencies.
102
int codesSize, unsigned short *bigramChars, int *
bigramFreq
, int maxWordLength,
106
mBigramFreq =
bigramFreq
;
128
const int
bigramFreq
= UnigramDictionary::MASK_ATTRIBUTE_FREQUENCY & bigramFlags;
135
BinaryFormat::computeFrequencyForBigram(unigramFreq,
bigramFreq
);
binary_format.h
70
static int computeFrequencyForBigram(const int unigramFreq, const int
bigramFreq
);
535
inline int BinaryFormat::computeFrequencyForBigram(const int unigramFreq, const int
bigramFreq
) {
542
return (int)(unigramFreq + (
bigramFreq
+ 1) * stepSize);
552
const int
bigramFreq
= bigramFreqIt->second;
553
return computeFrequencyForBigram(unigramFreq,
bigramFreq
);
Completed in 70 milliseconds