Home
last modified time | relevance | path

Searched refs:dest_row (Results 1 – 10 of 10) sorted by relevance

/external/pdfium/core/fxcodec/
Dprogressive_decoder.cpp141 for (int dest_row = 0; dest_row < dest_len; dest_row++) { in CalculateWeights() local
142 PixelWeight* pWeight = GetPixelWeight(dest_row); in CalculateWeights()
143 pWeight->m_SrcStart = dest_row; in CalculateWeights()
144 pWeight->m_SrcEnd = dest_row; in CalculateWeights()
159 for (int dest_row = start_step; dest_row < end_step; dest_row++) { in CalculateWeights() local
160 PixelWeight* pWeight = GetPixelWeight(dest_row); in CalculateWeights()
176 for (int dest_row = start_step + 1; dest_row < end_step; dest_row++) { in CalculateWeights() local
177 PixelWeight* pWeight = GetPixelWeight(dest_row); in CalculateWeights()
181 (float)(end_step - dest_row) / (float)length); in CalculateWeights()
340 int dest_row = (int)(src_row * scale_y) + dest_top; in PngFillScanlineBufCompleted() local
[all …]
Dprogressive_decoder.h176 int dest_row);
218 int dest_row);
221 int dest_row);
/external/tensorflow/tensorflow/tools/android/test/jni/object_tracking/
Dimage-inl.h544 T* const dest_row = (*this)[y]; in DerivativeX() local
547 dest_row[0] = source_row[1] - source_row[0]; in DerivativeX()
551 T* dest_pixel = dest_row + 1; in DerivativeX()
558 dest_row[width_less_one_] = in DerivativeX()
571 T* dest_row = (*this)[0]; in DerivativeY() local
573 dest_row[x] = src_row[x + src_stride] - src_row[x]; in DerivativeY()
579 T* dest_row = (*this)[y]; in DerivativeY() local
584 *dest_row++ = HalfDiff(*source_prev_pixel++, *source_next_pixel++); in DerivativeY()
591 T* dest_row = (*this)[height_less_one_]; in DerivativeY() local
593 dest_row[x] = src_row[x] - src_row[x - src_stride]; in DerivativeY()
/external/mesa3d/src/gallium/auxiliary/util/
Du_framebuffer.c270 unsigned dest_row = grid_height - row - 1; in util_sample_locations_flip_y() local
272 dest_row = (dest_row - shift) % grid_height; in util_sample_locations_flip_y()
273 new_locations[dest_row * row_size + i] = locations[row * row_size + i]; in util_sample_locations_flip_y()
/external/libjpeg-turbo/
Djutils.c95 JSAMPARRAY output_array, int dest_row, int num_rows, in jcopy_sample_rows() argument
108 output_array += dest_row; in jcopy_sample_rows()
Djpegint.h350 JSAMPARRAY output_array, int dest_row,
/external/libgav1/src/dsp/x86/
Dwarp_sse4.cc171 int delta, DestType* LIBGAV1_RESTRICT dest_row, in VerticalFilter() argument
184 WriteVerticalFilter<is_compound>(filter, source, y, dest_row); in VerticalFilter()
185 dest_row += dest_stride; in VerticalFilter()
193 DestType* LIBGAV1_RESTRICT dest_row, in VerticalFilter() argument
206 WriteVerticalFilter<is_compound>(filter, &source_cols[y], dest_row); in VerticalFilter()
207 dest_row += dest_stride; in VerticalFilter()
/external/gemmlowp/eight_bit_int_gemm/
Deight_bit_int_gemm.cc386 float* dest_row = c + i * ldc; in EightBitIntGemm() local
389 dest_row[j] = static_cast<float>(src_row[j]) * c_offset; in EightBitIntGemm()
/external/libgav1/src/dsp/
Dconvolve_test.cc1314 Pixel* dest_row = dest_clipped_; in Test() local
1317 dest_row[x] = static_cast<Pixel>(Clip3( in Test()
1321 dest_row += kMaxBlockWidth; in Test()
/external/pdfium/core/fxge/
Dcfx_renderdevice.cpp229 int dest_row = row + top; in DrawNormalTextHelper() local
230 if (dest_row < 0 || dest_row >= bitmap->GetHeight()) in DrawNormalTextHelper()
236 bitmap->GetWritableScanline(dest_row).subspan(start_col * Bpp).data(); in DrawNormalTextHelper()