Searched refs:has_left (Results 1 – 10 of 10) sorted by relevance
/external/libvpx/libvpx/vp9/common/ |
D | vp9_pred_common.c | 48 const int has_left = !!left_mi; in vp9_get_reference_mode_context() local 53 if (has_above && has_left) { // both edges available in vp9_get_reference_mode_context() 68 } else if (has_above || has_left) { // one edge available in vp9_get_reference_mode_context() 172 const int has_left = !!left_mi; in vp9_get_pred_context_single_ref_p1() local 177 if (has_above && has_left) { // both edges available in vp9_get_pred_context_single_ref_p1() 214 } else if (has_above || has_left) { // one edge available in vp9_get_pred_context_single_ref_p1() 238 const int has_left = !!left_mi; in vp9_get_pred_context_single_ref_p2() local 244 if (has_above && has_left) { // both edges available in vp9_get_pred_context_single_ref_p2() 300 } else if (has_above || has_left) { // one edge available in vp9_get_pred_context_single_ref_p2()
|
D | vp9_pred_common.h | 101 const int has_left = !!left_mi; in get_intra_inter_context() local 103 if (has_above && has_left) { // both edges available in get_intra_inter_context() 107 } else if (has_above || has_left) { // one edge available in get_intra_inter_context() 161 const int has_left = !!left_mi; in get_tx_size_context() local 165 (has_left && !left_mi->skip) ? (int)left_mi->tx_size : max_tx_size; in get_tx_size_context() 166 if (!has_left) left_ctx = above_ctx; in get_tx_size_context()
|
/external/libgav1/libgav1/src/tile/ |
D | prediction.cc | 168 dsp::IntraPredictor GetIntraPredictor(PredictionMode mode, bool has_left, in GetIntraPredictor() argument 171 if (has_left && has_top) { in GetIntraPredictor() 174 if (has_left) { in GetIntraPredictor() 226 bool has_left, bool has_top, bool has_top_right, in IntraPrediction() argument 279 (mode == kPredictionModeDc && has_left); in IntraPrediction() 306 if (has_top || has_left) { in IntraPrediction() 307 const int left_index = has_left ? x - 1 : x; in IntraPrediction() 312 if (!has_top && has_left) { in IntraPrediction() 314 } else if (!has_top && !has_left) { in IntraPrediction() 330 if (has_top || has_left) { in IntraPrediction() [all …]
|
D | tile.cc | 1604 const bool has_left = x > 0 || block.left_available[plane]; in TransformBlock() local 1608 IntraPrediction, block, plane, start_x, start_y, has_left, has_top, in TransformBlock() 2035 const bool has_left = block.left_available[plane]; in ComputePrediction() local 2039 has_left, has_top, in ComputePrediction()
|
/external/libaom/libaom/av1/common/ |
D | pred_common.c | 128 const int has_left = xd->left_available; in av1_get_intra_inter_context() local 130 if (has_above && has_left) { // both edges available in av1_get_intra_inter_context() 134 } else if (has_above || has_left) { // one edge available in av1_get_intra_inter_context() 150 const int has_left = xd->left_available; in av1_get_reference_mode_context() local 156 if (has_above && has_left) { // both edges available in av1_get_reference_mode_context() 171 } else if (has_above || has_left) { // one edge available in av1_get_reference_mode_context()
|
D | pred_common.h | 347 const int has_left = xd->left_available; in get_tx_size_context() local 356 if (has_left) in get_tx_size_context() 360 if (has_above && has_left) in get_tx_size_context() 364 else if (has_left) in get_tx_size_context()
|
/external/rust/crates/itertools/src/ |
D | either_or_both.rs | 18 pub fn has_left(&self) -> bool { in has_left() method
|
/external/libaom/libaom/av1/encoder/ |
D | partition_strategy.c | 486 const int has_left = !!xd->left_mbmi; in simple_motion_search_prune_part_features() local 488 const BLOCK_SIZE left_bsize = has_left ? xd->left_mbmi->sb_type : bsize; in simple_motion_search_prune_part_features() 492 features[f_idx++] = (float)has_left; in simple_motion_search_prune_part_features()
|
/external/libgav1/libgav1/src/ |
D | tile.h | 541 bool has_left, bool has_top, bool has_top_right, 549 bool has_left, bool has_top, bool needs_left,
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_encodeframe.c | 3617 const int has_left = !!xd->left_mi; in ml_predict_var_rd_paritioning() local 3619 const BLOCK_SIZE left_bsize = has_left ? xd->left_mi->sb_type : bsize; in ml_predict_var_rd_paritioning() 3625 features[feature_idx++] = (float)has_left; in ml_predict_var_rd_paritioning()
|