Home
last modified time | relevance | path

Searched refs:src_col (Results 1 – 12 of 12) sorted by relevance

/external/llvm-project/polly/lib/External/isl/
Disl_mat_private.h36 unsigned n_row, unsigned dst_col, unsigned src_col, unsigned n_col);
38 unsigned n_row, unsigned dst_col, unsigned src_col, unsigned n_col);
58 int src_col);
60 int dst_col, isl_int f, int src_col);
62 isl_int f, int src_col);
Disl_mat.c183 unsigned n_row, unsigned dst_col, unsigned src_col, unsigned n_col) in isl_mat_sub_copy() argument
188 isl_seq_cpy(dst[i]+dst_col, src[i]+src_col, n_col); in isl_mat_sub_copy()
192 unsigned n_row, unsigned dst_col, unsigned src_col, unsigned n_col) in isl_mat_sub_neg() argument
197 isl_seq_neg(dst[i]+dst_col, src[i]+src_col, n_col); in isl_mat_sub_neg()
1643 int dst_col, isl_int f, int src_col) in isl_mat_col_submul() argument
1648 isl_int_submul(mat->row[i][dst_col], f, mat->row[i][src_col]); in isl_mat_col_submul()
1651 void isl_mat_col_add(__isl_keep isl_mat *mat, int dst_col, int src_col) in isl_mat_col_add() argument
1660 mat->row[i][dst_col], mat->row[i][src_col]); in isl_mat_col_add()
1664 int src_col) in isl_mat_col_mul() argument
1669 isl_int_mul(mat->row[i][dst_col], f, mat->row[i][src_col]); in isl_mat_col_mul()
[all …]
/external/pdfium/core/fxge/dib/
Dcfx_imagetransformer.cpp212 int& src_col = *col; in AdjustCoords() local
214 if (src_col == clip_rect.Width()) in AdjustCoords()
215 src_col--; in AdjustCoords()
297 d.src_col = 0; in DoDownSampleLoop()
299 matrix_fix.Transform(col, row, &d.src_col, &d.src_row); in DoDownSampleLoop()
300 if (LIKELY(InStretchBounds(clip_rect, d.src_col, d.src_row))) { in DoDownSampleLoop()
301 AdjustCoords(clip_rect, &d.src_col, &d.src_row); in DoDownSampleLoop()
483 *dest = cdata.buf[data.src_row * cdata.pitch + data.src_col]; in CalcMask()
506 cdata.buf + cdata.pitch * data.src_row + data.src_col; in CalcAlpha()
551 argb[cdata.buf[data.src_row * cdata.pitch + data.src_col]]; in CalcMono()
[all …]
Dcfx_imagetransformer.h47 int src_col; member
/external/gemmlowp/internal/
Dunpack.h75 int src_row, int src_col) { in PrefetchResultBlock() argument
76 const std::int32_t* src_data = src.data(src_row, src_col); in PrefetchResultBlock()
99 int depth, int src_row, int src_col, int src_global_row, in UnpackResultBlock() argument
109 auto acc = Load<RegisterBlockType>(src, src_row, src_col); in UnpackResultBlock()
113 LoadForBroadcasting<RegisterBlockType>(rhs_sums_of_each_slice, src_col); in UnpackResultBlock()
117 LoadForBroadcasting<RegisterBlockType>(rhs_offset, src_col); in UnpackResultBlock()
/external/skqp/src/opts/
DSkBlitRow_opts.h195 uint8x8x4_t src_col = vld4_u8(reinterpret_cast<const uint8_t*>(src)); in blit_row_s32a_opaque() local
201 uint8x8_t alphas = src_col.val[3]; in blit_row_s32a_opaque()
211 vst4_u8(reinterpret_cast<uint8_t*>(dst), src_col); in blit_row_s32a_opaque()
217 vst4_u8(reinterpret_cast<uint8_t*>(dst), SkPMSrcOver_neon8(dst_col, src_col)); in blit_row_s32a_opaque()
/external/pdfium/core/fxcodec/
Dprogressivedecoder.cpp140 for (int src_col = 0; src_col < src_len; src_col++) { in Calc() local
141 double dest_col_f = src_col * scale; in Calc()
144 pWeight->m_SrcStart = pWeight->m_SrcEnd = src_col; in Calc()
147 if (src_col == src_len - 1 && dest_col < dest_len - 1) { in Calc()
151 pWeight->m_SrcStart = pWeight->m_SrcEnd = src_col; in Calc()
161 pWeight->m_SrcStart = src_col - 1; in Calc()
162 pWeight->m_SrcEnd = src_col; in Calc()
174 int src_col = FXSYS_roundf((float)src_col_f); in Calc() local
176 pWeight->m_SrcStart = pWeight->m_SrcEnd = src_col; in Calc()
319 for (int32_t src_col = 0; src_col < m_sizeX; src_col++) { in PngAskScanlineBuf() local
[all …]
/external/libaom/libaom/av1/common/x86/
Dav1_convolve_scale_sse4.c37 const uint8_t *const src_col = src + (x_qn >> SCALE_SUBPEL_BITS); in hfilter8() local
49 const uint8_t *const src0 = src_col + y * src_stride; in hfilter8()
88 const uint8_t *const src_row = src_col + y * src_stride; in hfilter8()
275 const uint16_t *const src_col = src + (x_qn >> SCALE_SUBPEL_BITS); in highbd_hfilter8() local
286 const uint16_t *const src0 = src_col + y * src_stride; in highbd_hfilter8()
318 const uint16_t *const src_row = src_col + y * src_stride; in highbd_hfilter8()
/external/llvm-project/polly/lib/External/isl/include/isl/
Dmat.h83 unsigned dst_col, unsigned src_col, unsigned n);
92 void isl_mat_col_add(__isl_keep isl_mat *mat, int dst_col, int src_col);
Dvec.h74 unsigned dst_col, unsigned src_col, unsigned n);
Disl-noexceptions.h1506 inline mat move_cols(unsigned int dst_col, unsigned int src_col, unsigned int n) const;
3801 inline vec move_els(unsigned int dst_col, unsigned int src_col, unsigned int n) const;
9400 mat mat::move_cols(unsigned int dst_col, unsigned int src_col, unsigned int n) const in move_cols() argument
9402 auto res = isl_mat_move_cols(copy(), dst_col, src_col, n); in move_cols()
19716 vec vec::move_els(unsigned int dst_col, unsigned int src_col, unsigned int n) const in move_els() argument
19718 auto res = isl_vec_move_els(copy(), dst_col, src_col, n); in move_els()
/external/mesa3d/src/gallium/frontends/nine/
Dnine_shader.c3705 shader_add_ps_fog_stage(struct shader_translator *tx, struct ureg_src src_col) in shader_add_ps_fog_stage() argument
3714 ureg_MOV(ureg, oCol0, src_col); in shader_add_ps_fog_stage()
3753 tx_src_scalar(fog_factor), src_col, fog_color); in shader_add_ps_fog_stage()
3754 ureg_MOV(ureg, ureg_writemask(oCol0, TGSI_WRITEMASK_W), src_col); in shader_add_ps_fog_stage()