Home
last modified time | relevance | path

Searched refs:col_max (Results 1 – 20 of 20) sorted by relevance

/external/perfetto/src/trace_processor/storage/
Dtrace_storage.cc38 int64_t col_max = ts_col.Max()->AsLong(); in DbTableMaybeUpdateMinMax() local
44 col_max = in DbTableMaybeUpdateMinMax()
45 std::max(ts_col.Get(i).AsLong() + dur_col->Get(i).AsLong(), col_max); in DbTableMaybeUpdateMinMax()
50 *max_value = std::max(*max_value, col_max); in DbTableMaybeUpdateMinMax()
/external/libaom/libaom/av1/encoder/
Dmcomp.h194 mv_limits->col_max = AOMMIN(max1, max2); in av1_set_mv_col_limits()
232 return (mv.col >= mv_limits->col_min) && (mv.col <= mv_limits->col_max) && in av1_is_fullmv_in_range()
307 AOMMIN(GET_MV_SUBPEL(mv_limits->col_max), ref_mv->col + max_mv); in av1_set_subpel_mv_search_range()
314 subpel_limits->col_max = AOMMIN(MV_UPP - 1, maxc); in av1_set_subpel_mv_search_range()
321 return (mv.col >= mv_limits->col_min) && (mv.col <= mv_limits->col_max) && in av1_is_subpelmv_in_range()
Dmcomp.c129 int col_max = GET_MV_RAWPEL(mv->col) + MAX_FULL_PEL_VAL; in av1_set_mv_search_range() local
134 col_max = AOMMIN(col_max, GET_MV_RAWPEL(MV_UPP) - 1); in av1_set_mv_search_range()
140 if (mv_limits->col_max > col_max) mv_limits->col_max = col_max; in av1_set_mv_search_range()
396 ((col + range) <= mv_limits->col_max); in check_bounds()
1044 all_in &= best_mv->col + ss[4].mv.col <= ms_params->mv_limits.col_max; in diamond_search_sad()
1199 end_col = AOMMIN(range, ms_params->mv_limits.col_max - start_mv.col); in exhaustive_mesh_search()
2848 bestmv->col = mv_limits->col_max; in av1_return_max_sub_pixel_mv()
Drdopt.c2713 fullms_params.mv_limits.col_max = in rd_pick_intrabc_mode_sb()
2723 fullms_params.mv_limits.col_max = in rd_pick_intrabc_mode_sb()
2737 assert(fullms_params.mv_limits.col_max <= fullms_params.mv_limits.col_max); in rd_pick_intrabc_mode_sb()
2743 if (fullms_params.mv_limits.col_max < fullms_params.mv_limits.col_min || in rd_pick_intrabc_mode_sb()
/external/libaom/libaom/av1/common/
Dmv.h62 int col_max; member
70 int col_max; member
341 mv->col = clamp(mv->col, mv_limits->col_min, mv_limits->col_max); in clamp_mv()
346 mv->col = clamp(mv->col, mv_limits->col_min, mv_limits->col_max); in clamp_fullmv()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_mcomp.c35 int col_max = (mv->col >> 3) + MAX_FULL_PEL_VAL; in vp9_set_mv_search_range() local
40 col_max = VPXMIN(col_max, (MV_UPP >> 3) - 1); in vp9_set_mv_search_range()
46 if (mv_limits->col_max > col_max) mv_limits->col_max = col_max; in vp9_set_mv_search_range()
56 subpel_mv_limits->col_max = VPXMIN(umv_window_limits->col_max * 8, in vp9_set_subpel_mv_search_range()
64 subpel_mv_limits->col_max = VPXMIN(MV_UPP - 1, subpel_mv_limits->col_max); in vp9_set_subpel_mv_search_range()
288 maxc = subpel_mv_limits.col_max; \
772 maxc = subpel_mv_limits.col_max; in vp9_find_best_sub_pixel_tree()
940 ((col + range) <= mv_limits->col_max); in check_bounds()
944 return (mv->col >= mv_limits->col_min) && (mv->col <= mv_limits->col_max) && in is_mv_in()
1034 clamp_mv(ref_mv, x->mv_limits.col_min, x->mv_limits.col_max, in vp9_pattern_search()
[all …]
Dvp9_block.h59 int col_max; member
Dvp9_mbgraph.c252 x->mv_limits.col_max = (cm->mb_cols - 1) * 8 + BORDER_MV_PIXELS_B16; in update_mbgraph_frame_stats()
272 x->mv_limits.col_max -= 16; in update_mbgraph_frame_stats()
Dvp9_temporal_filter.c710 td->mb.mv_limits.col_max = in vp9_temporal_filter_iterate_row_c()
Dvp9_pickmode.c189 x->mv_limits.col_max = VPXMIN(x->mv_limits.col_max, 10); in combined_motion_search()
Dvp9_firstpass.c1036 x->mv_limits.col_max = in vp9_first_pass_encode_tile_mb_row()
Dvp9_rdopt.c1772 (mv->col >> 3) > mv_limits->col_max; in mv_check_bounds()
Dvp9_encodeframe.c329 mv_limits->col_max = (cm->mi_cols - mi_col) * MI_SIZE + VP9_INTERP_EXTEND; in set_offsets()
Dvp9_encoder.c6241 x->mv_limits.col_max =
/external/tensorflow/tensorflow/python/kernel_tests/
Dreduction_ops_test_big.py114 col_max = np.max(arr, axis=0)
116 full_max = np.max(col_max)
126 self.assertAllClose(col_max, tf_out_col)
/external/libvpx/libvpx/vp8/encoder/
Dmcomp.c1307 int col_max = ref_col + distance; in vp8_full_search_sad_c() local
1333 if (col_max > x->mv_col_max) col_max = x->mv_col_max; in vp8_full_search_sad_c()
1343 for (c = col_min; c < col_max; ++c) { in vp8_full_search_sad_c()
1394 int col_max = ref_col + distance; in vp8_full_search_sadx3() local
1422 if (col_max > x->mv_col_max) col_max = x->mv_col_max; in vp8_full_search_sadx3()
1433 while ((c + 2) < col_max) { in vp8_full_search_sadx3()
1459 while (c < col_max) { in vp8_full_search_sadx3()
1515 int col_max = ref_col + distance; in vp8_full_search_sadx8() local
1544 if (col_max > x->mv_col_max) col_max = x->mv_col_max; in vp8_full_search_sadx8()
1555 while ((c + 7) < col_max) { in vp8_full_search_sadx8()
[all …]
Drdopt.c1235 int col_max = (best_ref_mv->as_mv.col >> 3) + MAX_FULL_PEL_VAL; in vp8_rd_pick_best_mbsegmentation() local
1246 if (x->mv_col_max > col_max) x->mv_col_max = col_max; in vp8_rd_pick_best_mbsegmentation()
2035 int col_max = (best_ref_mv.as_mv.col >> 3) + MAX_FULL_PEL_VAL; in vp8_rd_pick_inter_mode() local
2059 if (x->mv_col_max > col_max) x->mv_col_max = col_max; in vp8_rd_pick_inter_mode()
Dpickinter.c915 int col_max = (best_ref_mv.as_mv.col >> 3) + MAX_FULL_PEL_VAL; in vp8_pick_inter_mode() local
995 if (x->mv_col_max > col_max) x->mv_col_max = col_max; in vp8_pick_inter_mode()
/external/tensorflow/tensorflow/core/kernels/
Dfractional_avg_pool_op.cc149 const int64 col_max = input_size[2] - 1; in Compute() local
167 col_end = std::min(col_end, col_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()