Home
last modified time | relevance | path

Searched refs:row_max (Results 1 – 25 of 25) sorted by relevance

/external/libaom/libaom/av1/encoder/
Dmcomp.h181 mv_limits->row_max = AOMMIN(max1, max2); in av1_set_mv_row_limits()
233 (mv.row >= mv_limits->row_min) && (mv.row <= mv_limits->row_max); in av1_is_fullmv_in_range()
311 AOMMIN(GET_MV_SUBPEL(mv_limits->row_max), ref_mv->row + max_mv); in av1_set_subpel_mv_search_range()
316 subpel_limits->row_max = AOMMIN(MV_UPP - 1, maxr); in av1_set_subpel_mv_search_range()
322 (mv.row >= mv_limits->row_min) && (mv.row <= mv_limits->row_max); in av1_is_subpelmv_in_range()
Dmcomp.c130 int row_max = GET_MV_RAWPEL(mv->row) + MAX_FULL_PEL_VAL; in av1_set_mv_search_range() local
135 row_max = AOMMIN(row_max, GET_MV_RAWPEL(MV_UPP) - 1); in av1_set_mv_search_range()
142 if (mv_limits->row_max > row_max) mv_limits->row_max = row_max; in av1_set_mv_search_range()
394 ((row + range) <= mv_limits->row_max) & in check_bounds()
1042 all_in &= best_mv->row + ss[2].mv.row <= ms_params->mv_limits.row_max; in diamond_search_sad()
1198 end_row = AOMMIN(range, ms_params->mv_limits.row_max - start_mv.row); in exhaustive_mesh_search()
2847 bestmv->row = mv_limits->row_max; in av1_return_max_sub_pixel_mv()
Drdopt.c2717 fullms_params.mv_limits.row_max = in rd_pick_intrabc_mode_sb()
2731 fullms_params.mv_limits.row_max = in rd_pick_intrabc_mode_sb()
2739 assert(fullms_params.mv_limits.row_max <= fullms_params.mv_limits.row_max); in rd_pick_intrabc_mode_sb()
2744 fullms_params.mv_limits.row_max < fullms_params.mv_limits.row_min) { in rd_pick_intrabc_mode_sb()
/external/libaom/libaom/av1/common/
Dmv.h64 int row_max; member
72 int row_max; member
342 mv->row = clamp(mv->row, mv_limits->row_min, mv_limits->row_max); in clamp_mv()
347 mv->row = clamp(mv->row, mv_limits->row_min, mv_limits->row_max); in clamp_fullmv()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_mcomp.c36 int row_max = (mv->row >> 3) + MAX_FULL_PEL_VAL; in vp9_set_mv_search_range() local
41 row_max = VPXMIN(row_max, (MV_UPP >> 3) - 1); in vp9_set_mv_search_range()
48 if (mv_limits->row_max > row_max) mv_limits->row_max = row_max; in vp9_set_mv_search_range()
60 subpel_mv_limits->row_max = VPXMIN(umv_window_limits->row_max * 8, in vp9_set_subpel_mv_search_range()
66 subpel_mv_limits->row_max = VPXMIN(MV_UPP - 1, subpel_mv_limits->row_max); in vp9_set_subpel_mv_search_range()
290 maxr = subpel_mv_limits.row_max; \
774 maxr = subpel_mv_limits.row_max; in vp9_find_best_sub_pixel_tree()
938 ((row + range) <= mv_limits->row_max) & in check_bounds()
945 (mv->row >= mv_limits->row_min) && (mv->row <= mv_limits->row_max); in is_mv_in()
1035 x->mv_limits.row_min, x->mv_limits.row_max); in vp9_pattern_search()
[all …]
Dvp9_block.h61 int row_max; member
Dvp9_mbgraph.c231 x->mv_limits.row_max = (cm->mb_rows - 1) * 8 + BORDER_MV_PIXELS_B16; in update_mbgraph_frame_stats()
282 x->mv_limits.row_max -= 16; in update_mbgraph_frame_stats()
Dvp9_temporal_filter.c698 td->mb.mv_limits.row_max = in vp9_temporal_filter_iterate_row_c()
Dvp9_pickmode.c190 x->mv_limits.row_max = VPXMIN(x->mv_limits.row_max, 10); in combined_motion_search()
Dvp9_firstpass.c875 x->mv_limits.row_max = in vp9_first_pass_encode_tile_mb_row()
Dvp9_rdopt.c1770 (mv->row >> 3) > mv_limits->row_max || in mv_check_bounds()
Dvp9_encodeframe.c328 mv_limits->row_max = (cm->mi_rows - mi_row) * MI_SIZE + VP9_INTERP_EXTEND; in set_offsets()
Dvp9_encoder.c6238 x->mv_limits.row_max =
/external/libvpx/libvpx/vp8/encoder/
Dmcomp.c1305 int row_max = ref_row + distance; in vp8_full_search_sad_c() local
1337 if (row_max > x->mv_row_max) row_max = x->mv_row_max; in vp8_full_search_sad_c()
1339 for (r = row_min; r < row_max; ++r) { in vp8_full_search_sad_c()
1392 int row_max = ref_row + distance; in vp8_full_search_sadx3() local
1426 if (row_max > x->mv_row_max) row_max = x->mv_row_max; in vp8_full_search_sadx3()
1428 for (r = row_min; r < row_max; ++r) { in vp8_full_search_sadx3()
1513 int row_max = ref_row + distance; in vp8_full_search_sadx8() local
1548 if (row_max > x->mv_row_max) row_max = x->mv_row_max; in vp8_full_search_sadx8()
1550 for (r = row_min; r < row_max; ++r) { in vp8_full_search_sadx8()
Drdopt.c1236 int row_max = (best_ref_mv->as_mv.row >> 3) + MAX_FULL_PEL_VAL; in vp8_rd_pick_best_mbsegmentation() local
1248 if (x->mv_row_max > row_max) x->mv_row_max = row_max; in vp8_rd_pick_best_mbsegmentation()
2036 int row_max = (best_ref_mv.as_mv.row >> 3) + MAX_FULL_PEL_VAL; in vp8_rd_pick_inter_mode() local
2061 if (x->mv_row_max > row_max) x->mv_row_max = row_max; in vp8_rd_pick_inter_mode()
Dpickinter.c916 int row_max = (best_ref_mv.as_mv.row >> 3) + MAX_FULL_PEL_VAL; in vp8_pick_inter_mode() local
997 if (x->mv_row_max > row_max) x->mv_row_max = row_max; in vp8_pick_inter_mode()
/external/tensorflow/tensorflow/python/kernel_tests/
Dreduction_ops_test_big.py115 row_max = np.max(arr, axis=1)
127 self.assertAllClose(row_max, tf_out_row)
Dfractional_avg_pool_op_test.py56 row_max = row_seq[-1]
60 row_end = min(row_end, row_max)
Dfractional_max_pool_op_test.py56 row_max = row_seq[-1]
60 row_end = min(row_end, row_max)
/external/tensorflow/tensorflow/core/kernels/sparse/
Dkernels_gpu.cu.cc354 T row_max = Eigen::NumTraits<T>::lowest(); in CalculateRowSoftmax() local
356 row_max = Eigen::numext::maxi(row_max, ldg(logits + r_i)); in CalculateRowSoftmax()
360 const T exp_i = Eigen::numext::exp(ldg(logits + r_i) - row_max); in CalculateRowSoftmax()
/external/tensorflow/tensorflow/core/kernels/
Dfractional_avg_pool_op.cc148 const int64 row_max = input_size[1] - 1; in Compute() local
157 row_end = std::min(row_end, row_max); in Compute()
/external/libvpx/libvpx/vp9/encoder/x86/
Dvp9_diamond_search_sad_avx.c78 const int_mv maxmv = pack_int_mv(x->mv_limits.row_max, x->mv_limits.col_max); in vp9_diamond_search_sad_avx()
/external/libaom/libaom/av1/common/x86/
Dav1_inv_txfm_avx2.c1758 const int row_max = AOMMIN(32, txfm_size_row); in lowbd_inv_txfm2d_add_idtx_avx2() local
1762 iidentity_row_16xn_avx2(buf, input + i, input_stride, shift[0], row_max, in lowbd_inv_txfm2d_add_idtx_avx2()
1764 iidentity_col_16xn_avx2(output + i, stride, buf, shift[1], row_max, in lowbd_inv_txfm2d_add_idtx_avx2()
Dav1_inv_txfm_ssse3.c2426 const int row_max = AOMMIN(32, txfm_size_row); in lowbd_inv_txfm2d_add_idtx_ssse3() local
2431 iidentity_row_8xn_ssse3(buf, input + 8 * i, input_stride, shift[0], row_max, in lowbd_inv_txfm2d_add_idtx_ssse3()
2433 iidentity_col_8xn_ssse3(output + 8 * i, stride, buf, shift[1], row_max, in lowbd_inv_txfm2d_add_idtx_ssse3()
Dhighbd_inv_txfm_sse4.c5272 const int row_max = AOMMIN(32, txfm_size_row); in highbd_inv_txfm2d_add_v_identity_ssse41() local
5283 for (int i = 0; i < (row_max >> 2); ++i) { in highbd_inv_txfm2d_add_v_identity_ssse41()
5349 const int row_max = AOMMIN(32, txfm_size_row); in highbd_inv_txfm2d_add_idtx_ssse41() local
5356 for (int i = 0; i < (row_max >> 2); ++i) { in highbd_inv_txfm2d_add_idtx_ssse41()