/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_mcomp.c | 41 int row_max = (mv->row >> 3) + MAX_FULL_PEL_VAL; in vp9_set_mv_search_range() local 46 row_max = VPXMIN(row_max, (MV_UPP >> 3) - 1); in vp9_set_mv_search_range() 53 if (mv_limits->row_max > row_max) mv_limits->row_max = row_max; in vp9_set_mv_search_range() 65 subpel_mv_limits->row_max = VPXMIN(umv_window_limits->row_max * 8, in vp9_set_subpel_mv_search_range() 71 subpel_mv_limits->row_max = VPXMIN(MV_UPP - 1, subpel_mv_limits->row_max); in vp9_set_subpel_mv_search_range() 295 maxr = subpel_mv_limits.row_max; \ 779 maxr = subpel_mv_limits.row_max; in vp9_find_best_sub_pixel_tree() 943 ((row + range) <= mv_limits->row_max) & in check_bounds() 950 (mv->row >= mv_limits->row_min) && (mv->row <= mv_limits->row_max); in is_mv_in() 1040 x->mv_limits.row_min, x->mv_limits.row_max); in vp9_pattern_search() [all …]
|
D | vp9_block.h | 61 int row_max; member
|
D | vp9_mbgraph.c | 231 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()
|
D | vp9_temporal_filter.c | 641 td->mb.mv_limits.row_max = in vp9_temporal_filter_iterate_row_c()
|
D | vp9_pickmode.c | 190 x->mv_limits.row_max = VPXMIN(x->mv_limits.row_max, 10); in combined_motion_search()
|
D | vp9_firstpass.c | 873 x->mv_limits.row_max = in vp9_first_pass_encode_tile_mb_row()
|
/external/libaom/libaom/av1/encoder/ |
D | mcomp.c | 47 int row_max = (mv->row >> 3) + MAX_FULL_PEL_VAL; in av1_set_mv_search_range() local 52 row_max = AOMMIN(row_max, (MV_UPP >> 3) - 1); in av1_set_mv_search_range() 59 if (mv_limits->row_max > row_max) mv_limits->row_max = row_max; in av1_set_mv_search_range() 63 int *col_max, int *row_min, int *row_max, in set_subpel_mv_search_range() argument 69 const int maxr = AOMMIN(mv_limits->row_max * 8, ref_mv->row + max_mv); in set_subpel_mv_search_range() 74 *row_max = AOMMIN(MV_UPP - 1, maxr); in set_subpel_mv_search_range() 996 ((row + range) <= mv_limits->row_max) & in check_bounds() 1003 (mv->row >= mv_limits->row_min) && (mv->row <= mv_limits->row_max); in is_mv_in() 1139 x->mv_limits.row_min, x->mv_limits.row_max); in pattern_search() 1580 x->mv_limits.row_min, x->mv_limits.row_max); in exhuastive_mesh_search() [all …]
|
D | partition_strategy.h | 99 x->mv_limits.row_max = (cm->mi_rows - mi_row) * MI_SIZE + AOM_INTERP_EXTEND; in set_offsets_for_motion_search()
|
D | mbgraph.c | 238 x->mv_limits.row_max = (cm->mb_rows - 1) * 8 + BORDER_MV_PIXELS_B16; in update_mbgraph_frame_stats() 281 x->mv_limits.row_max -= 16; in update_mbgraph_frame_stats()
|
D | block.h | 90 int row_max; member
|
D | tpl_model.c | 444 x->mv_limits.row_max = in mc_flow_dispenser()
|
D | firstpass.c | 442 x->mv_limits.row_max = in av1_first_pass()
|
D | temporal_filter.c | 835 cpi->td.mb.mv_limits.row_max = in temporal_filter_iterate_c()
|
D | rdopt.c | 6627 (mv->row >> 3) > mv_limits->row_max || in mv_check_bounds() 7206 AOMMIN(x->mv_limits.row_max * 8, ref_mv.row + MV_MAX); in single_motion_search() 10693 x->mv_limits.row_max = in rd_pick_intrabc_mode_sb() 10705 x->mv_limits.row_max = (bottom_coded_mi_edge - mi_row) * MI_SIZE - h; in rd_pick_intrabc_mode_sb() 10712 assert(x->mv_limits.row_max <= tmp_mv_limits.row_max); in rd_pick_intrabc_mode_sb() 10716 x->mv_limits.row_max < x->mv_limits.row_min) { in rd_pick_intrabc_mode_sb()
|
/external/libvpx/libvpx/vp8/encoder/ |
D | mcomp.c | 1307 int row_max = ref_row + distance; in vp8_full_search_sad_c() local 1339 if (row_max > x->mv_row_max) row_max = x->mv_row_max; in vp8_full_search_sad_c() 1341 for (r = row_min; r < row_max; ++r) { in vp8_full_search_sad_c() 1394 int row_max = ref_row + distance; in vp8_full_search_sadx3() local 1428 if (row_max > x->mv_row_max) row_max = x->mv_row_max; in vp8_full_search_sadx3() 1430 for (r = row_min; r < row_max; ++r) { in vp8_full_search_sadx3() 1515 int row_max = ref_row + distance; in vp8_full_search_sadx8() local 1550 if (row_max > x->mv_row_max) row_max = x->mv_row_max; in vp8_full_search_sadx8() 1552 for (r = row_min; r < row_max; ++r) { in vp8_full_search_sadx8()
|
D | rdopt.c | 1236 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() 2031 int row_max = (best_ref_mv.as_mv.row >> 3) + MAX_FULL_PEL_VAL; in vp8_rd_pick_inter_mode() local 2056 if (x->mv_row_max > row_max) x->mv_row_max = row_max; in vp8_rd_pick_inter_mode()
|
D | pickinter.c | 913 int row_max = (best_ref_mv.as_mv.row >> 3) + MAX_FULL_PEL_VAL; in vp8_pick_inter_mode() local 994 if (x->mv_row_max > row_max) x->mv_row_max = row_max; in vp8_pick_inter_mode()
|
/external/tensorflow/tensorflow/python/kernel_tests/ |
D | reduction_ops_test_big.py | 115 row_max = np.max(arr, axis=1) 127 self.assertAllClose(row_max, tf_out_row)
|
D | fractional_avg_pool_op_test.py | 56 row_max = row_seq[-1] 60 row_end = min(row_end, row_max)
|
D | fractional_max_pool_op_test.py | 56 row_max = row_seq[-1] 60 row_end = min(row_end, row_max)
|
/external/tensorflow/tensorflow/core/kernels/ |
D | fractional_avg_pool_op.cc | 148 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/ |
D | vp9_diamond_search_sad_avx.c | 78 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/ |
D | av1_inv_txfm_avx2.c | 1757 const int row_max = AOMMIN(32, txfm_size_row); in lowbd_inv_txfm2d_add_idtx_avx2() local 1761 iidentity_row_16xn_avx2(buf, input + i, input_stride, shift[0], row_max, in lowbd_inv_txfm2d_add_idtx_avx2() 1763 iidentity_col_16xn_avx2(output + i, stride, buf, shift[1], row_max, in lowbd_inv_txfm2d_add_idtx_avx2()
|
D | av1_inv_txfm_ssse3.c | 2428 const int row_max = AOMMIN(32, txfm_size_row); in lowbd_inv_txfm2d_add_idtx_ssse3() local 2433 iidentity_row_8xn_ssse3(buf, input + 8 * i, input_stride, shift[0], row_max, in lowbd_inv_txfm2d_add_idtx_ssse3() 2435 iidentity_col_8xn_ssse3(output + 8 * i, stride, buf, shift[1], row_max, in lowbd_inv_txfm2d_add_idtx_ssse3()
|
D | highbd_inv_txfm_sse4.c | 5405 const int row_max = AOMMIN(32, txfm_size_row); in highbd_inv_txfm2d_add_v_identity_ssse41() local 5416 for (int i = 0; i < (row_max >> 2); ++i) { in highbd_inv_txfm2d_add_v_identity_ssse41() 5481 const int row_max = AOMMIN(32, txfm_size_row); in highbd_inv_txfm2d_add_idtx_ssse41() local 5488 for (int i = 0; i < (row_max >> 2); ++i) { in highbd_inv_txfm2d_add_idtx_ssse41()
|