Searched refs:src_col (Results 1 - 5 of 5) sorted by relevance

/external/pdfium/core/src/fxge/dib/
H A Dfx_dib_transform.cpp521 int src_col, src_row; local
522 result2stretch_fix.Transform(col, row, src_col, src_row);
523 if (src_col >= 0 && src_col <= stretch_width && src_row >= 0 &&
525 if (src_col == stretch_width) {
526 src_col--;
532 stretch_buf_mask[src_row * stretch_pitch_mask + src_col];
604 int src_col, src_row; local
605 result2stretch_fix.Transform(col, row, src_col, src_row);
606 if (src_col >
724 int src_col, src_row; local
904 int src_col, src_row; local
[all...]
/external/libgdx/gdx/jni/gdx2d/
H A Dgdx2d.c794 uint32_t src_col = to_RGBA8888(src_pixmap->format, pget((void*)src_ptr)); local
798 src_col = to_format(dst_pixmap->format, blend(src_col, dst_col));
800 src_col = to_format(dst_pixmap->format, src_col);
803 pset((void*)dst_ptr, src_col);
875 uint32_t src_col = (r << 24) | (g << 16) | (b << 8) | a; local
879 src_col = to_format(dst_pixmap->format, blend(src_col, dst_col));
881 src_col
924 uint32_t src_col = to_RGBA8888(src_pixmap->format, pget((void*)src_ptr)); local
[all...]
/external/opencv3/modules/video/src/opencl/
H A Doptical_flow_tvl1.cl46 __kernel void centeredGradientKernel(__global const float* src_ptr, int src_col, int src_row, int src_step,
52 if((x < src_col)&&(y < src_row))
54 int src_x1 = (x + 1) < (src_col -1)? (x + 1) : (src_col - 1);
/external/pdfium/core/src/fxcodec/codec/
H A Dfx_codec_progress.cpp128 for (int src_col = 0; src_col < src_len; src_col++) {
129 double des_col_f = src_col * scale;
133 pWeight->m_SrcStart = pWeight->m_SrcEnd = src_col;
136 if (src_col == src_len - 1 && des_col < dest_len - 1) {
141 pWeight->m_SrcStart = pWeight->m_SrcEnd = src_col;
151 pWeight->m_SrcStart = src_col - 1;
152 pWeight->m_SrcEnd = src_col;
166 int src_col local
[all...]
/external/opencv3/modules/cudafilters/src/cuda/
H A Dcolumn_filter.hpp81 const T* src_col = src.ptr() + x; local
97 smem[threadIdx.y + j * BLOCK_DIM_Y][threadIdx.x] = saturate_cast<sum_t>(brd.at_low(yStart - (HALO_SIZE - j) * BLOCK_DIM_Y, src_col, src.step));
117 smem[threadIdx.y + HALO_SIZE * BLOCK_DIM_Y + j * BLOCK_DIM_Y][threadIdx.x] = saturate_cast<sum_t>(brd.at_high(yStart + j * BLOCK_DIM_Y, src_col, src.step));
122 smem[threadIdx.y + (PATCH_PER_BLOCK + HALO_SIZE) * BLOCK_DIM_Y + j * BLOCK_DIM_Y][threadIdx.x] = saturate_cast<sum_t>(brd.at_high(yStart + (PATCH_PER_BLOCK + j) * BLOCK_DIM_Y, src_col, src.step));

Completed in 183 milliseconds