OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:bigramFrequency
(Results
1 - 2
of
2
) sorted by null
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
BinaryDictEncoderUtils.java
665
* @param
bigramFrequency
the frequency of the bigram, 0..255.
671
int
bigramFrequency
, final int unigramFrequency, final String word) {
687
if (unigramFrequency >
bigramFrequency
) {
689
+ "\". Bigram freq is " +
bigramFrequency
+ ", unigram freq for "
691
bigramFrequency
= unigramFrequency;
708
// number of steps to the
bigramFrequency
. One last thing: we want our steps to include
[
all
...]
BinaryDictIOUtils.java
399
final int
bigramFrequency
= info.mBigrams.get(i).mFrequency;
417
bigramFlags |=
bigramFrequency
& FormatSpec.FLAG_BIGRAM_SHORTCUT_ATTR_FREQUENCY;
589
* @param
bigramFrequency
compressed frequency
593
final int
bigramFrequency
) {
596
final float resultFreqFloat = unigramFrequency + stepSize * (
bigramFrequency
+ 1.0f);
Completed in 1783 milliseconds