OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:kMaxScore
(Results
1 - 3
of
3
) sorted by null
/packages/inputmethods/PinyinIME/jni/include/
ngram.h
33
static const LmaScoreType
kMaxScore
= 0x3fff;
82
//
kMaxScore
, but at runtime, we also need float expression to get accurate
/packages/inputmethods/PinyinIME/jni/share/
ngram.cpp
237
if (score > static_cast<float>(
kMaxScore
)) {
238
score = static_cast<float>(
kMaxScore
);
matrixsearch.cpp
724
if (score_to_add > NGram::
kMaxScore
) {
725
score_to_add = NGram::
kMaxScore
;
749
if (score_to_add > NGram::
kMaxScore
) {
750
score_to_add = NGram::
kMaxScore
;
[
all
...]
Completed in 671 milliseconds