Searched refs:dest_row (Results 1 – 10 of 10) sorted by relevance
/external/pdfium/core/fxcodec/ |
D | progressivedecoder.cpp | 192 for (int dest_row = 0; dest_row < dest_len; dest_row++) { in Calc() local 193 PixelWeight* pWeight = GetPixelWeight(dest_row); in Calc() 194 pWeight->m_SrcStart = dest_row; in Calc() 195 pWeight->m_SrcEnd = dest_row; in Calc() 210 for (int dest_row = start_step; dest_row < end_step; dest_row++) { in Calc() local 211 PixelWeight* pWeight = GetPixelWeight(dest_row); in Calc() 227 for (int dest_row = start_step + 1; dest_row < end_step; dest_row++) { in Calc() local 228 PixelWeight* pWeight = GetPixelWeight(dest_row); in Calc() 232 FXSYS_roundf((float)(end_step - dest_row) / (float)length * 65536); in Calc() 385 int dest_row = (int)(src_row * scale_y) + dest_top; in PngFillScanlineBufCompleted() local [all …]
|
D | progressivedecoder.h | 198 int dest_row); 241 int dest_row); 244 int dest_row);
|
/external/tensorflow/tensorflow/examples/android/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 | rdrle.c | 211 JSAMPROW src_row, dest_row; in get_pseudocolor_row() local 217 dest_row = source->pub.buffer[0]; in get_pseudocolor_row() 224 *dest_row++ = (JSAMPLE)(colormap[val ] >> 8); in get_pseudocolor_row() 225 *dest_row++ = (JSAMPLE)(colormap[val + 256] >> 8); in get_pseudocolor_row() 226 *dest_row++ = (JSAMPLE)(colormap[val + 512] >> 8); in get_pseudocolor_row()
|
D | jpegint.h | 347 JSAMPARRAY output_array, int dest_row,
|
/external/libgav1/libgav1/src/dsp/x86/ |
D | warp_sse4.cc | 170 int delta, DestType* dest_row, in VerticalFilter() argument 183 WriteVerticalFilter<is_compound>(filter, source, y, dest_row); in VerticalFilter() 184 dest_row += dest_stride; in VerticalFilter() 191 int delta, DestType* dest_row, in VerticalFilter() argument 204 WriteVerticalFilter<is_compound>(filter, &source_cols[y], dest_row); in VerticalFilter() 205 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/pdfium/core/fxge/ |
D | cfx_renderdevice.cpp | 241 int dest_row = row + top; in DrawNormalTextHelper() local 242 if (dest_row < 0 || dest_row >= bitmap->GetHeight()) in DrawNormalTextHelper() 246 uint8_t* dest_scan = dest_buf + dest_row * dest_pitch + start_col * Bpp; in DrawNormalTextHelper()
|