OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:max_freq
(Results
1 - 6
of
6
) 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/lzma/C/
Ppmd7.c
12
#define
MAX_FREQ
124
427
if (p->FoundState->Freq <
MAX_FREQ
/ 4 && p->MinContext->Suffix != 0)
449
if (s->Freq <
MAX_FREQ
- 9)
541
if (s->Freq <
MAX_FREQ
/ 4 - 1)
544
s->Freq =
MAX_FREQ
- 4;
677
if (s->Freq >
MAX_FREQ
)
688
if ((p->FoundState->Freq += 4) >
MAX_FREQ
)
704
if ((p->FoundState->Freq += 4) >
MAX_FREQ
)
/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);
/external/chromium_org/third_party/libjingle/source/talk/base/
systeminfo.cc
210
int
max_freq
= talk_base::ReadCpuMaxFreq();
local
211
if (
max_freq
> 0) {
212
cpu_speed_ =
max_freq
/ 1000;
/packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
XmlDictInputOutput.java
238
private final static int
MAX_FREQ
= 14;
251
if (intValue < MIN_FREQ || intValue >
MAX_FREQ
) {
253
+ MIN_FREQ + ".." +
MAX_FREQ
);
Completed in 255 milliseconds