Home
last modified time | relevance | path

Searched refs:mvy (Results 1 – 24 of 24) sorted by relevance

/external/libhevc/encoder/arm/
Dihevce_coarse_layer_sad_neon.c117 S32 mvx, mvy, mv_x_offset, mv_y_offset, mv_x_range, mv_y_range; in hme_store_4x4_sads_high_speed_neon() local
179 for(mvy = ps_range_prms->i2_min_y; mvy < ps_range_prms->i2_max_y; mvy += stepy) in hme_store_4x4_sads_high_speed_neon()
185 ((mvy >> step_shift_y) + mv_y_offset) * mv_x_range]; in hme_store_4x4_sads_high_speed_neon()
187 pu1_ref = pu1_ref_coloc + mvx + (mvy * i4_ref_stride); in hme_store_4x4_sads_high_speed_neon()
270 S32 mvx, mvy, mv_x_offset, mv_y_offset, mv_x_range, mv_y_range; in hme_store_4x4_sads_high_quality_neon() local
330 for(mvy = ps_range_prms->i2_min_y; mvy < ps_range_prms->i2_max_y; mvy += stepy) in hme_store_4x4_sads_high_quality_neon()
336 ((mvy >> step_shift_y) + mv_y_offset) * mv_x_range]; in hme_store_4x4_sads_high_quality_neon()
338 pu1_ref = pu1_ref_coloc + mvx + (mvy * i4_ref_stride); in hme_store_4x4_sads_high_quality_neon()
435 best_mv_y_4x8 = mvy; \
441 best_mv_y_8x4 = mvy; \
[all …]
/external/libvpx/libvpx/vp8/encoder/
Dmr_dissim.c34 mvy[cnt] = x->mbmi.mv.as_mv.col; \
41 mvy[cnt] = x->mbmi.mv.as_mv.col; \
45 mvy[cnt] *= -1; \
89 int mvy[8]; in vp8_cal_dissimilarity() local
158 int max_mvy = mvy[0]; in vp8_cal_dissimilarity()
159 int min_mvy = mvy[0]; in vp8_cal_dissimilarity()
168 if (mvy[i] > max_mvy) in vp8_cal_dissimilarity()
169 max_mvy = mvy[i]; in vp8_cal_dissimilarity()
170 else if (mvy[i] < min_mvy) in vp8_cal_dissimilarity()
171 min_mvy = mvy[i]; in vp8_cal_dissimilarity()
Drdopt.c1352 int mvy[8]; in vp8_mv_pred() local
1466 mvy[i] = near_mvs[i].as_mv.col; in vp8_mv_pred()
1470 insertsortmv(mvy, vcnt); in vp8_mv_pred()
1472 mv.as_mv.col = mvy[vcnt / 2]; in vp8_mv_pred()
/external/libhevc/encoder/
Dhme_coarse.c385 S32 mvx, mvy, mv_x_offset, mv_y_offset, mv_x_range, mv_y_range; in hme_combine_4x4_sads_and_compute_cost_high_quality() local
403 for(mvy = ps_mv_range->i2_min_y; mvy < ps_mv_range->i2_max_y; mvy += stepy) in hme_combine_4x4_sads_and_compute_cost_high_quality()
409 ((mvy >> step_shift_y) + mv_y_offset) * mv_x_range; in hme_combine_4x4_sads_and_compute_cost_high_quality()
417 s_search_node.s_mv.i2_mvy = mvy; in hme_combine_4x4_sads_and_compute_cost_high_quality()
428 best_mv_y_4x8 = mvy; in hme_combine_4x4_sads_and_compute_cost_high_quality()
434 best_mv_y_8x4 = mvy; in hme_combine_4x4_sads_and_compute_cost_high_quality()
462 S32 mvx, mvy, mv_x_offset, mv_y_offset, mv_x_range, mv_y_range; in hme_combine_4x4_sads_and_compute_cost_high_speed() local
487 for(mvy = ps_mv_range->i2_min_y; mvy < ps_mv_range->i2_max_y; mvy += stepy) in hme_combine_4x4_sads_and_compute_cost_high_speed()
494 ((mvy >> step_shift_y) + mv_y_offset) * mv_x_range; in hme_combine_4x4_sads_and_compute_cost_high_speed()
503 (2 * hme_get_range(ABS(mvx)) - 1) + (2 * hme_get_range(ABS(mvy)) - 1) + i1_ref_idx; in hme_combine_4x4_sads_and_compute_cost_high_speed()
[all …]
Dihevce_common_utils.c612 WORD32 mvx, mvy; in ihevce_scale_mv() local
623 mvy = ps_mv->i2_mvy; in ihevce_scale_mv()
626 mvy = SIGN(dist_scale_factor * mvy) * ((abs(dist_scale_factor * mvy) + 127) >> 8); in ihevce_scale_mv()
629 ps_mv->i2_mvy = CLIP_S16(mvy); in ihevce_scale_mv()
Dihevce_mv_pred_merge.c141 WORD32 mvx, mvy; in ihevce_scale_collocated_mv() local
152 mvy = ps_mv->i2_mvy; in ihevce_scale_collocated_mv()
155 mvy = SIGN(dist_scale_factor * mvy) * ((abs(dist_scale_factor * mvy) + 127) >> 8); in ihevce_scale_collocated_mv()
158 ps_mv->i2_mvy = CLIP_S16(mvy); in ihevce_scale_collocated_mv()
Dhme_refine.c242 ps_merge_cand[i4_num_cands_added].s_mv.i2_mvy = ps_data->as_mv[j].mvy; in hme_add_clustered_mvs_as_merge_cands()
256 (ps_merge_cand[k].s_mv.i2_mvy == ps_data->as_mv[j].mvy) && in hme_add_clustered_mvs_as_merge_cands()
2893 S32 mvy, in hme_update_cluster_attributes() argument
2916 if((mvdy > 0) && (ps_cluster_data->min_y > mvy)) in hme_update_cluster_attributes()
2918 ps_cluster_data->min_y = mvy; in hme_update_cluster_attributes()
2920 else if((mvdy < 0) && (ps_cluster_data->max_y < mvy)) in hme_update_cluster_attributes()
2922 ps_cluster_data->max_y = mvy; in hme_update_cluster_attributes()
2930 ps_cluster_data->as_mv[num_mvs].mvy = mvy; in hme_update_cluster_attributes()
2941 i8_mvy_sum_q8 = (LWORD64)centroid_posy_q8 * ps_cluster_data->num_mvs + (mvy << 8); in hme_update_cluster_attributes()
3301 S32 mvy = i2_mv_y; in hme_find_and_update_clusters() local
[all …]
Dihevce_enc_loop_structs.h77 #define POPULATE_PU_STRUCT(ps_pu, mvx, mvy, offset_x, offset_y, wd, ht, ref_idx, pred_lx) \ argument
90 (ps_pu)->mv.s_l1_mv.i2_mvy = mvy; \
97 (ps_pu)->mv.s_l0_mv.i2_mvy = mvy; \
Dihevce_me_common_defs.h494 WORD16 mvy; member
Dhme_defs.h258 S32 mvy_q8 = (ps_mv)->mvy << 8; \
334 ps_dedup_enabler, num_cands, mvx, mvy, check_for_duplicate) \ argument
351 mvdy = (mvy)-center_mvy; \
Dhme_err_compute.c1085 S32 rnd, mvx, mvy, i4_search_idx; in compute_mv_cost_coarse_high_speed() local
1089 mvy = ps_node->s_mv.i2_mvy; in compute_mv_cost_coarse_high_speed()
1092 cost = (2 * hme_get_range(ABS(mvx)) - 1) + (2 * hme_get_range(ABS(mvy)) - 1) + i4_search_idx; in compute_mv_cost_coarse_high_speed()
1094 cost += (mvy != 0) ? 1 : 0; in compute_mv_cost_coarse_high_speed()
/external/libhevc/decoder/
Dihevcd_mv_pred.c110 WORD32 mvx, mvy; in ihevcd_scale_mv() local
123 mvy = ps_mv->i2_mvy; in ihevcd_scale_mv()
127 mvy = SIGN(dist_scale_factor * mvy) in ihevcd_scale_mv()
128 * ((abs(dist_scale_factor * mvy) + 127) >> 8); in ihevcd_scale_mv()
131 ps_mv->i2_mvy = CLIP_S16(mvy); in ihevcd_scale_mv()
172 WORD32 mvx, mvy; in ihevcd_scale_collocated_mv() local
183 mvy = ps_mv->i2_mvy; in ihevcd_scale_collocated_mv()
187 mvy = SIGN(dist_scale_factor * mvy) in ihevcd_scale_collocated_mv()
188 * ((abs(dist_scale_factor * mvy) + 127) >> 8); in ihevcd_scale_collocated_mv()
191 ps_mv->i2_mvy = CLIP_S16(mvy); in ihevcd_scale_collocated_mv()
/external/libavc/encoder/
Dih264e_me.c230 WORD32 mvx, mvy; in ih264e_get_search_candidates() local
267 mvy = (ps_left_mv->i2_mvy + 2) >> 2; in ih264e_get_search_candidates()
270 mvy = CLIP3(i4_srch_range_n, i4_srch_range_s, mvy); in ih264e_get_search_candidates()
273 ps_me_ctxt->as_mv_init_search[i4_reflist][u4_num_candidates].i2_mvy = mvy; in ih264e_get_search_candidates()
282 mvy = (ps_top_mv->i2_mvy + 2) >> 2; in ih264e_get_search_candidates()
285 mvy = CLIP3(i4_srch_range_n, i4_srch_range_s, mvy); in ih264e_get_search_candidates()
288 ps_me_ctxt->as_mv_init_search[i4_reflist][u4_num_candidates].i2_mvy = mvy; in ih264e_get_search_candidates()
296 mvy = (ps_top_right_mv->i2_mvy + 2)>> 2; in ih264e_get_search_candidates()
299 mvy = CLIP3(i4_srch_range_n, i4_srch_range_s, mvy); in ih264e_get_search_candidates()
302 ps_me_ctxt->as_mv_init_search[i4_reflist][u4_num_candidates].i2_mvy = mvy; in ih264e_get_search_candidates()
[all …]
/external/libaom/libaom/av1/common/
Dwarped_motion.h90 int find_projection(int np, int *pts1, int *pts2, BLOCK_SIZE bsize, int mvy,
Dwarped_motion.c1021 BLOCK_SIZE bsize, int mvy, int mvx, in find_affine_int() argument
1034 const int duy = suy + mvy; in find_affine_int()
1123 int32_t vy = mvy * (1 << (WARPEDMODEL_PREC_BITS - 3)) - in find_affine_int()
1135 int find_projection(int np, int *pts1, int *pts2, BLOCK_SIZE bsize, int mvy, in find_projection() argument
1140 if (find_affine_int(np, pts1, pts2, bsize, mvy, mvx, wm_params, mi_row, in find_projection()
/external/deqp/framework/common/
DtcuTexLookupVerifier.cpp2212 const float mvy = deFloatAbs(dvdy); in computeLodBoundsFromDerivates() local
2221 const float fyMin = de::max(de::max(muy, mvy), mwy); in computeLodBoundsFromDerivates()
2226 const float fyMax = sqrt2 * (muy + mvy + mwy); in computeLodBoundsFromDerivates()
/external/icu/icu4c/source/data/misc/
DlikelySubtags.txt840 mvy{"mvy_Arab_PK"}
DsupplementalData.txt14651 mvy{
30229 mvy{
/external/cldr/tools/java/org/unicode/cldr/util/data/
Dlanguage_script_raw.txt534 mvy Indus Kohistani primary Arab Arabic
Dcountry_language_population_raw.txt942 Pakistan PK "204,924,861" 55% "1,057,000,000,000" Indus Kohistani mvy "297,000"
Diso-639-3_Name_Index.tab4527 mvy Indus Kohistani Kohistani, Indus
Diso-639-3.tab4343 mvy I L Indus Kohistani
Dlanguage-subtag-registry23718 Subtag: mvy
/external/cldr/tools/java/org/unicode/cldr/util/data/languages/
DentityToCode.tsv1877 http://www.wikidata.org/entity/Q33399 mvy