OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:kRatio
(Results
1 - 2
of
2
) sorted by null
/frameworks/av/media/libnbaio/include/media/nbaio/
PerformanceAnalysis.h
115
static constexpr double
kRatio
= 0.75; // estimate of CPU time as ratio of period length
116
int kPeriodMsCPU; // compute based on kPeriodLen and
kRatio
/art/dex2oat/
dex2oat_image_test.cc
333
const double
kRatio
= 0.95;
334
EXPECT_LE(profile_sizes.art_size *
kRatio
, compiled_methods_sizes.art_size);
336
// EXPECT_LE(profile_sizes.oat_size *
kRatio
, compiled_methods_sizes.oat_size);
337
EXPECT_LE(profile_sizes.vdex_size *
kRatio
, compiled_methods_sizes.vdex_size);
338
EXPECT_GE(profile_sizes.art_size /
kRatio
, compiled_methods_sizes.art_size);
340
// EXPECT_GE(profile_sizes.oat_size /
kRatio
, compiled_methods_sizes.oat_size);
341
EXPECT_GE(profile_sizes.vdex_size /
kRatio
, compiled_methods_sizes.vdex_size);
Completed in 56 milliseconds