Searched refs:dest_row (Results 1 – 10 of 10) sorted by relevance
/external/pdfium/core/fxcodec/ |
D | progressive_decoder.cpp | 141 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 …]
|
D | progressive_decoder.h | 176 int dest_row); 218 int dest_row); 221 int dest_row);
|
/external/tensorflow/tensorflow/tools/android/test/jni/object_tracking/ |
D | image-inl.h | 544 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/ |
D | u_framebuffer.c | 270 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/ |
D | jutils.c | 95 JSAMPARRAY output_array, int dest_row, int num_rows, in jcopy_sample_rows() argument 108 output_array += dest_row; in jcopy_sample_rows()
|
D | jpegint.h | 350 JSAMPARRAY output_array, int dest_row,
|
/external/libgav1/src/dsp/x86/ |
D | warp_sse4.cc | 171 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/ |
D | eight_bit_int_gemm.cc | 386 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/ |
D | convolve_test.cc | 1314 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/ |
D | cfx_renderdevice.cpp | 229 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()
|