Home
last modified time | relevance | path

Searched refs:max_rows (Results 1 – 7 of 7) sorted by relevance

/external/libjpeg-turbo/
Djdpostct.c138 JDIMENSION num_rows, max_rows; in post_process_1pass() local
142 max_rows = out_rows_avail - *out_row_ctr; in post_process_1pass()
143 if (max_rows > post->strip_height) in post_process_1pass()
144 max_rows = post->strip_height; in post_process_1pass()
148 max_rows); in post_process_1pass()
213 JDIMENSION num_rows, max_rows; in post_process_2pass() local
224 max_rows = out_rows_avail - *out_row_ctr; /* available in output area */ in post_process_2pass()
225 if (num_rows > max_rows) in post_process_2pass()
226 num_rows = max_rows; in post_process_2pass()
228 max_rows = cinfo->output_height - post->starting_row; in post_process_2pass()
[all …]
/external/mesa3d/src/freedreno/perfcntrs/
Dfdperf.c521 static int max_rows, current_cntr = 1; variable
832 current_cntr = MIN2(max_rows - 1, current_cntr + amount); in scroll_cntr()
834 current_cntr = MIN2(max_rows - 1, current_cntr + 1); in scroll_cntr()
931 max_rows += group->group->num_counters + 1; in setup_counter_groups()
935 max_rows--; in setup_counter_groups()
937 max_rows--; in setup_counter_groups()
/external/libvpx/libvpx/vp9/common/
Dvp9_thread_common.c394 const int max_rows = cm->mi_rows; in get_next_row() local
400 if (cm->lf_row < max_rows) { in get_next_row()
404 if (cm->lf_row < max_rows) { in get_next_row()
432 if (cm->lf_row < max_rows) { in get_next_row()
436 if (cm->lf_row < max_rows) { in get_next_row()
Dvp9_loopfilter.c909 const int max_rows = in vp9_setup_mask() local
924 if (4 >= max_rows) break; in vp9_setup_mask()
939 if (mi_32_col_offset >= max_cols || mi_32_row_offset >= max_rows) in vp9_setup_mask()
947 if (mi_32_row_offset + 2 >= max_rows) continue; in vp9_setup_mask()
966 if (mi_16_col_offset >= max_cols || mi_16_row_offset >= max_rows) in vp9_setup_mask()
975 if (mi_16_row_offset + 1 >= max_rows) continue; in vp9_setup_mask()
999 mi_8_row_offset >= max_rows) in vp9_setup_mask()
/external/tensorflow/tensorflow/core/util/sparse/
Dsparse_tensor.cc164 const int32 max_rows = static_cast<int32>(shape_ptr[0]); in IndicesValidMatrix32BitFastPath() local
208 row_in_range_valid & (row_32 >= 0) & (row_32 < max_rows); in IndicesValidMatrix32BitFastPath()
/external/autotest/tko/
Ddb.py301 max_rows=None): argument
343 if max_rows is not None and numRec > max_rows:
Dfrontend.py89 where=where, group_by=group_by, max_rows = MAX_RECORDS)