Home
last modified time | relevance | path

Searched refs:y_end (Results 1 – 14 of 14) sorted by relevance

/external/libaom/libaom/av1/encoder/
Dhash_motion.c190 const int y_end = picture->y_crop_height - height + 1; in av1_generate_block_2x2_hash_value() local
198 for (int y_pos = 0; y_pos < y_end; y_pos++) { in av1_generate_block_2x2_hash_value()
218 for (int y_pos = 0; y_pos < y_end; y_pos++) { in av1_generate_block_2x2_hash_value()
249 const int y_end = picture->y_crop_height - block_size + 1; in av1_generate_block_hash_value() local
258 for (int y_pos = 0; y_pos < y_end; y_pos++) { in av1_generate_block_hash_value()
297 for (int y_pos = 0; y_pos < y_end; y_pos++) { in av1_generate_block_hash_value()
316 const int y_end = pic_height - block_size + 1; in av1_add_to_hash_map_by_row_with_precal_data() local
327 for (int y_pos = 0; y_pos < y_end; y_pos++) { in av1_add_to_hash_map_by_row_with_precal_data()
/external/webp/src/dsp/
Dlossless.c202 int y_start, int y_end, in GENERATE_PREDICTOR_ADD()
221 while (y < y_end) { in GENERATE_PREDICTOR_ADD()
293 int y_start, int y_end, in ColorSpaceInverseTransform_C() argument
305 while (y < y_end) { in ColorSpaceInverseTransform_C()
332 TYPE* dst, int y_start, int y_end, int width) { \
334 for (y = y_start; y < y_end; ++y) { \
342 int y_start, int y_end, const TYPE* src, \
352 for (y = y_start; y < y_end; ++y) { \
366 VP8LMapColor##BIT_SUFFIX(src, color_map, dst, y_start, y_end, width); \
Dlossless.h83 int y_end, int width);
87 int y_end, int width);
96 const struct VP8LTransform* const transform, int y_start, int y_end,
Dlossless_mips_dsp_r2.c25 TYPE* dst, int y_start, int y_end, \
28 for (y = y_start; y < y_end; ++y) { \
/external/webp/src/dec/
Dframe_dec.c434 int y_end = MACROBLOCK_VPOS(mb_y + 1); in FinishRow() local
447 y_end -= extra_y_rows; in FinishRow()
449 if (y_end > io->crop_bottom) { in FinishRow()
450 y_end = io->crop_bottom; // make sure we don't overflow on last row. in FinishRow()
454 if (dec->alpha_data_ != NULL && y_start < y_end) { in FinishRow()
455 io->a = VP8DecompressAlphaRows(dec, io, y_start, y_end - y_start); in FinishRow()
472 if (y_start < y_end) { in FinishRow()
481 io->mb_h = y_end - y_start; in FinishRow()
Dio_dec.c73 const int y_end = io->mb_y + io->mb_h; in EmitFancyRGB() local
87 for (; y + 2 < y_end; y += 2) { in EmitFancyRGB()
100 if (io->crop_top + y_end < io->crop_bottom) { in EmitFancyRGB()
110 if (!(y_end & 1)) { in EmitFancyRGB()
471 const int y_end = p->last_y + lines_left; in EmitRescaledAlphaRGB() local
476 lines_left -= p->emit_alpha_row(p, y_end - lines_left, lines_left); in EmitRescaledAlphaRGB()
Dvp8l_dec.c714 static int SetCropWindow(VP8Io* const io, int y_start, int y_end, in SetCropWindow() argument
716 assert(y_start < y_end); in SetCropWindow()
718 if (y_end > io->crop_bottom) { in SetCropWindow()
719 y_end = io->crop_bottom; // make sure we don't overflow on last row. in SetCropWindow()
726 if (y_start >= y_end) return 0; // Crop window is empty. in SetCropWindow()
732 io->mb_h = y_end - y_start; in SetCropWindow()
/external/tensorflow/tensorflow/core/kernels/
Dresize_area_op_test.cc110 int64 y_end = std::ceil(in_y1); in ResizeAreaBaseline() local
121 for (int64 i = y_start; i < y_end; ++i) { in ResizeAreaBaseline()
Dresize_area_op.cc230 const int64 y_end = std::ceil(in_y1); in ComputeLoop() local
233 for (int64 i = y_start; i < y_end; ++i) { in ComputeLoop()
/external/tensorflow/tensorflow/compiler/xla/service/
Dheap_simulator.cc506 int64 y_end = y.end; in GetTemporalBufferIntervalCompare() local
508 y_end = std::max(y_end, buffer_intervals_.at(colocation).end); in GetTemporalBufferIntervalCompare()
511 if (x_end - x.start != y_end - y.start) { in GetTemporalBufferIntervalCompare()
512 return x_end - x.start > y_end - y.start; in GetTemporalBufferIntervalCompare()
/external/webp/src/mux/
Danim_encode.c720 const int y_end = (rect->y_offset_ + rect->height_) & ~(block_size - 1); in FlattenSimilarBlocks() local
727 for (j = y_start; j < y_end; j += block_size) { in FlattenSimilarBlocks()
/external/libhevc/encoder/
Dhme_utils.c455 S32 x_start, y_start, x_end, y_end, i4_x, i4_y; in hme_map_mvs_to_grid() local
509 y_end = y_start + ps_part_attr->u1_y_count; in hme_map_mvs_to_grid()
515 y_end = (y_end << shift) >> mv_shift; in hme_map_mvs_to_grid()
521 for(i4_y = y_start; i4_y < y_end; i4_y++) in hme_map_mvs_to_grid()
/external/libaom/libaom/aom_dsp/
Dnoise_model.c822 int y_end = AOMMIN((h >> sub_log2[1]) - by * (block_size >> sub_log2[1]), in add_block_observations() local
829 for (int y = y_start; y < y_end; ++y) { in add_block_observations()
/external/mesa3d/src/imgui/
Dimgui_draw.cpp2782 float y_end = y; in RenderText() local
2783 while (y_end < clip_rect.w && s_end < text_end) in RenderText()
2787 y_end += line_height; in RenderText()