Searched refs:src_col (Results 1 – 5 of 5) sorted by relevance
/external/pdfium/core/src/fxge/dib/ |
D | fx_dib_transform.cpp | 521 int src_col, src_row; in Continue() local 522 result2stretch_fix.Transform(col, row, src_col, src_row); in Continue() 523 if (src_col >= 0 && src_col <= stretch_width && src_row >= 0 && in Continue() 525 if (src_col == stretch_width) { in Continue() 526 src_col--; in Continue() 532 stretch_buf_mask[src_row * stretch_pitch_mask + src_col]; in Continue() 604 int src_col, src_row; in Continue() local 605 result2stretch_fix.Transform(col, row, src_col, src_row); in Continue() 606 if (src_col >= 0 && src_col <= stretch_width && src_row >= 0 && in Continue() 608 if (src_col == stretch_width) { in Continue() [all …]
|
/external/libgdx/gdx/jni/gdx2d/ |
D | gdx2d.c | 794 uint32_t src_col = to_RGBA8888(src_pixmap->format, pget((void*)src_ptr)); in blit_same_size() local 798 src_col = to_format(dst_pixmap->format, blend(src_col, dst_col)); in blit_same_size() 800 src_col = to_format(dst_pixmap->format, src_col); in blit_same_size() 803 pset((void*)dst_ptr, src_col); in blit_same_size() 875 uint32_t src_col = (r << 24) | (g << 16) | (b << 8) | a; in blit_bilinear() local 879 src_col = to_format(dst_pixmap->format, blend(src_col, dst_col)); in blit_bilinear() 881 src_col = to_format(dst_pixmap->format, src_col); in blit_bilinear() 884 pset((void*)dst_ptr, src_col); in blit_bilinear() 924 uint32_t src_col = to_RGBA8888(src_pixmap->format, pget((void*)src_ptr)); in blit_linear() local 928 src_col = to_format(dst_pixmap->format, blend(src_col, dst_col)); in blit_linear() [all …]
|
/external/pdfium/core/src/fxcodec/codec/ |
D | fx_codec_progress.cpp | 128 for (int src_col = 0; src_col < src_len; src_col++) { in Calc() local 129 double des_col_f = src_col * scale; in Calc() 133 pWeight->m_SrcStart = pWeight->m_SrcEnd = src_col; in Calc() 136 if (src_col == src_len - 1 && des_col < dest_len - 1) { in Calc() 141 pWeight->m_SrcStart = pWeight->m_SrcEnd = src_col; in Calc() 151 pWeight->m_SrcStart = src_col - 1; in Calc() 152 pWeight->m_SrcEnd = src_col; in Calc() 166 int src_col = FXSYS_round((FX_FLOAT)src_col_f); in Calc() local 169 pWeight->m_SrcStart = pWeight->m_SrcEnd = src_col; in Calc() 408 for (int32_t src_col = 0; src_col < pCodec->m_sizeX; src_col++) { in PngAskScanlineBufFunc() local [all …]
|
/external/opencv3/modules/cudafilters/src/cuda/ |
D | column_filter.hpp | 81 const T* src_col = src.ptr() + x; in linearColumnFilter() local 97 …x.x] = saturate_cast<sum_t>(brd.at_low(yStart - (HALO_SIZE - j) * BLOCK_DIM_Y, src_col, src.step)); in linearColumnFilter() 117 …M_Y][threadIdx.x] = saturate_cast<sum_t>(brd.at_high(yStart + j * BLOCK_DIM_Y, src_col, src.step)); in linearColumnFilter() 122 …saturate_cast<sum_t>(brd.at_high(yStart + (PATCH_PER_BLOCK + j) * BLOCK_DIM_Y, src_col, src.step)); in linearColumnFilter()
|
/external/opencv3/modules/video/src/opencl/ |
D | optical_flow_tvl1.cl | 46 __kernel void centeredGradientKernel(__global const float* src_ptr, int src_col, int src_row, int s… 52 if((x < src_col)&&(y < src_row)) 54 int src_x1 = (x + 1) < (src_col -1)? (x + 1) : (src_col - 1);
|