OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:max_freq
(Results
1 - 7
of
7
) sorted by null
/packages/inputmethods/PinyinIME/jni/share/
ngram.cpp
271
double
max_freq
= 0;
local
278
if (freqs[pos] >
max_freq
)
279
max_freq
= freqs[pos];
/external/linux-tools-perf/
builtin-timechart.c
52
static u64
max_freq
; /* Highest CPU frequency seen */
variable
422
if ((u64)new_freq >
max_freq
)
423
max_freq
= new_freq;
428
if (new_freq ==
max_freq
- 1000)
429
turbo_frequency =
max_freq
;
975
svg_cpu_box(i,
max_freq
, turbo_frequency);
/external/linux-tools-perf/util/
svghelper.c
24
static u64 turbo_frequency,
max_freq
;
variable
228
if (freq >
max_freq
)
229
max_freq
= freq;
242
max_freq
= __max_freq;
342
if (
max_freq
)
343
height = freq * 1.0 /
max_freq
* (SLOT_HEIGHT + SLOT_MULT);
/packages/inputmethods/LatinIME/tools/dicttool/src/android/inputmethod/latin/dicttool/
XmlDictInputOutput.java
239
private final static int
MAX_FREQ
= 14;
252
if (intValue < MIN_FREQ || intValue >
MAX_FREQ
) {
254
+ MIN_FREQ + ".." +
MAX_FREQ
);
/packages/inputmethods/LatinIME/native/jni/src/
defines.h
316
#define
MAX_FREQ
255
350
#define SUPPRESS_SHORT_MULTIPLE_WORDS_THRESHOLD_FREQ (
MAX_FREQ
* 58 / 100)
binary_format.h
585
const float stepSize = static_cast<float>(
MAX_FREQ
- unigramFreq) / (1.5f + MAX_BIGRAM_FREQ);
correction.cpp
[
all
...]
Completed in 521 milliseconds