Searched refs:base_cost (Results 1 – 10 of 10) sorted by relevance
/external/libaom/av1/encoder/ |
D | txb_rdopt.c | 31 *accu_rate += txb_costs->base_cost[coeff_ctx][0]; in update_coeff_general() 51 rate_low = txb_costs->base_cost[coeff_ctx][0]; in update_coeff_general() 92 *accu_rate += txb_costs->base_cost[coeff_ctx][0]; in update_coeff_simple() 141 *accu_rate += txb_costs->base_cost[coeff_ctx][0]; in update_coeff_eob() 164 rate_low = txb_costs->base_cost[coeff_ctx][0]; in update_coeff_eob() 507 const int(*base_cost)[8] = coeff_costs->base_cost; in warehouse_efficients_txb() local 513 cost += base_cost[coeff_ctx][AOMMIN(level, 3)]; in warehouse_efficients_txb() 530 cost += base_cost[coeff_ctx][AOMMIN(level, 3)]; in warehouse_efficients_txb()
|
D | txb_rdopt_utils.h | 127 int cost = txb_costs->base_cost[coeff_ctx][AOMMIN(abs_qc, 3)]; in get_two_coeff_cost_simple() 129 if (abs_qc <= 3) diff = txb_costs->base_cost[coeff_ctx][abs_qc + 4]; in get_two_coeff_cost_simple() 176 cost += txb_costs->base_cost[coeff_ctx][AOMMIN(abs_qc, 3)]; in get_coeff_cost_general()
|
D | rd.c | 598 av1_cost_tokens_from_cdf(pcost->base_cost[ctx], in av1_fill_coeff_costs() 602 pcost->base_cost[ctx][4] = 0; in av1_fill_coeff_costs() 603 pcost->base_cost[ctx][5] = pcost->base_cost[ctx][1] + in av1_fill_coeff_costs() 605 pcost->base_cost[ctx][0]; in av1_fill_coeff_costs() 606 pcost->base_cost[ctx][6] = in av1_fill_coeff_costs() 607 pcost->base_cost[ctx][2] - pcost->base_cost[ctx][1]; in av1_fill_coeff_costs() 608 pcost->base_cost[ctx][7] = in av1_fill_coeff_costs() 609 pcost->base_cost[ctx][3] - pcost->base_cost[ctx][2]; in av1_fill_coeff_costs()
|
D | block.h | 156 int base_cost[SIG_COEF_CONTEXTS][8]; member
|
D | nonrd_pickmode.c | 620 unsigned int base_cost = mode_costs->intra_inter_cost[intra_inter_ctx][1]; in estimate_single_ref_frame_costs() local 624 base_cost += mode_costs->comp_ref_type_cost[comp_ref_type_ctx][1]; in estimate_single_ref_frame_costs() 626 ref_costs_single[LAST_FRAME] = base_cost; in estimate_single_ref_frame_costs() 627 ref_costs_single[GOLDEN_FRAME] = base_cost; in estimate_single_ref_frame_costs() 628 ref_costs_single[ALTREF_FRAME] = base_cost; in estimate_single_ref_frame_costs()
|
D | rdopt.c | 755 unsigned int base_cost = mode_costs->intra_inter_cost[intra_inter_ctx][1]; in estimate_ref_frame_costs() local 758 ref_costs_single[i] = base_cost; in estimate_ref_frame_costs() 820 base_cost + mode_costs->comp_ref_type_cost[comp_ref_type_ctx][1]; in estimate_ref_frame_costs() 871 base_cost + mode_costs->comp_ref_type_cost[comp_ref_type_ctx][0] + in estimate_ref_frame_costs() 875 base_cost + mode_costs->comp_ref_type_cost[comp_ref_type_ctx][0] + in estimate_ref_frame_costs() 880 base_cost + mode_costs->comp_ref_type_cost[comp_ref_type_ctx][0] + in estimate_ref_frame_costs() 885 base_cost + mode_costs->comp_ref_type_cost[comp_ref_type_ctx][0] + in estimate_ref_frame_costs()
|
/external/tensorflow/tensorflow/core/kernels/ |
D | topk_op.cc | 221 const double base_cost = in Compute() local 225 const double sort_cost = (k == num_cols) ? base_cost : 4 * base_cost; in Compute()
|
/external/brotli/c/enc/ |
D | backward_references_hq.c | 440 const float base_cost = start_costdiff + (float)GetInsertExtra(inscode) + in UpdateNodes() local 481 const float dist_cost = base_cost + in UpdateNodes() 488 const float cost = (cmdcode < 128 ? base_cost : dist_cost) + in UpdateNodes() 525 dist_cost = base_cost + (float)distnumextra + in UpdateNodes()
|
/external/cronet/third_party/brotli/enc/ |
D | backward_references_hq.c | 454 const float base_cost = start_costdiff + (float)GetInsertExtra(inscode) + in UpdateNodes() local 513 const float dist_cost = base_cost + in UpdateNodes() 520 const float cost = (cmdcode < 128 ? base_cost : dist_cost) + in UpdateNodes() 557 dist_cost = base_cost + (float)distnumextra + in UpdateNodes()
|
/external/libvpx/vp9/encoder/ |
D | vp9_rdopt.c | 2394 unsigned int base_cost = vp9_cost_bit(intra_inter_p, 1); in estimate_ref_frame_costs() local 2397 base_cost += vp9_cost_bit(comp_inter_p, 0); in estimate_ref_frame_costs() 2400 ref_costs_single[ALTREF_FRAME] = base_cost; in estimate_ref_frame_costs() 2413 unsigned int base_cost = vp9_cost_bit(intra_inter_p, 1); in estimate_ref_frame_costs() local 2416 base_cost += vp9_cost_bit(comp_inter_p, 1); in estimate_ref_frame_costs() 2418 ref_costs_comp[LAST_FRAME] = base_cost + vp9_cost_bit(ref_comp_p, 0); in estimate_ref_frame_costs() 2419 ref_costs_comp[GOLDEN_FRAME] = base_cost + vp9_cost_bit(ref_comp_p, 1); in estimate_ref_frame_costs()
|