Home
last modified time | relevance | path

Searched refs:next_stats (Results 1 – 3 of 3) sorted by relevance

/external/libaom/av1/encoder/
Dpass2_strategy.c2738 const FIRSTPASS_STATS *next_stats = in test_candidate_kf() local
2740 if (last_stats == NULL || this_stats == NULL || next_stats == NULL) { in test_candidate_kf()
2774 (next_stats->pcnt_second_ref < second_ref_usage_thresh) && in test_candidate_kf()
2776 slide_transition(this_stats, last_stats, next_stats) || in test_candidate_kf()
2788 ((next_stats->intra_error / in test_candidate_kf()
2789 DOUBLE_DIVIDE_CHECK(next_stats->coded_error)) > in test_candidate_kf()
2946 const FIRSTPASS_STATS *next_stats = in define_kf_interval() local
2948 loop_decay_rate = get_prediction_decay_rate(next_stats); in define_kf_interval()
3494 FIRSTPASS_STATS *this_stats = first_stats, *next_stats; in av1_mark_flashes() local
3496 next_stats = this_stats + 1; in av1_mark_flashes()
[all …]
/external/tensorflow/tensorflow/compiler/mlir/lite/quantization/
Dquantization_utils.cc806 if (auto next_stats = llvm::dyn_cast<quantfork::StatisticsOp>( in RemoveRedundantStatsOps() local
809 redundant_stats_ops.insert(next_stats); in RemoveRedundantStatsOps()
811 all_stats_ops.push_back(next_stats); in RemoveRedundantStatsOps()
834 if (auto next_stats = llvm::dyn_cast_or_null<quantfork::StatisticsOp>( in RemoveRedundantStatsOps() local
836 redundant_stats_ops.insert(next_stats); in RemoveRedundantStatsOps()
837 all_stats_ops.push_back(next_stats); in RemoveRedundantStatsOps()
/external/libaom/av1/qmode_rc/
Dratectrl_qmode.cc313 const FIRSTPASS_STATS &next_stats) { in DetectIntraInterErrorChange() argument
348 next_stats.intra_error / ModifyDivisor(next_stats.coded_error); in DetectIntraInterErrorChange()
369 const auto &next_stats = stats_list[candidate_key_idx + 1]; in TestCandidateKey() local
375 if (next_stats.pcnt_second_ref >= second_ref_usage_threshold) return false; in TestCandidateKey()
382 DetectSlideTransition(this_stats, last_stats, next_stats) || in TestCandidateKey()
383 DetectIntraInterErrorChange(this_stats, last_stats, next_stats)) { in TestCandidateKey()