Lines Matching defs:dst

32  *      mlib_status mlib_ImageConvMxN_Fp(mlib_image       *dst,
43 * dst Pointer to destination image.
59 * The unselected channels are not overwritten. If both src and dst have
69 * The src and the dst must be the same type and have same number
81 static void mlib_ImageConvMxNMulAdd_F32(mlib_f32 *dst,
89 static void mlib_ImageConvMxNF322F32_ext(mlib_f32 *dst,
96 static void mlib_ImageConvMxNMulAdd_D64(mlib_d64 *dst,
104 static void mlib_ImageConvMxND642D64_ext(mlib_d64 *dst,
135 mlib_status mlib_ImageConvMxN_Fp(mlib_image *dst,
147 MLIB_IMAGE_CHECK(dst);
148 type = mlib_ImageGetType(dst);
153 return mlib_ImageConvMxN_f(dst, src, kernel, m, n, dm, dn, 0, cmask, edge);
157 void mlib_ImageConvMxNMulAdd_F32(mlib_f32 *dst,
165 mlib_f32 *hdst1 = dst + dnch;
175 mlib_f32 hdvl = dst[0];
190 dst[i * dnch] = hdvl0;
200 mlib_f32 hdvl = dst[0];
213 dst[i * dnch] = hdvl0;
222 mlib_f32 hdvl = dst[0];
235 dst[i * dnch] = hdvl0;
241 void mlib_ImageConvMxNF322F32_ext(mlib_f32 *dst,
252 dst[i] = val;
257 dst[i] = src[nch * (i - dx_l)];
258 val = dst[n - dx_r - 1];
260 dst[i] = val;
264 mlib_status mlib_convMxNext_f32(mlib_image *dst,
278 mlib_f32 *da = mlib_ImageGetData(dst);
280 mlib_s32 dlb = mlib_ImageGetStride(dst) >> 2;
282 mlib_s32 dw = mlib_ImageGetWidth(dst);
283 mlib_s32 dh = mlib_ImageGetHeight(dst);
284 mlib_s32 nch = mlib_ImageGetChannels(dst);
544 void mlib_ImageConvMxNMulAdd_D64(mlib_d64 *dst,
552 mlib_d64 *hdst1 = dst + dnch;
562 mlib_d64 hdvl = dst[0];
577 dst[i * dnch] = hdvl0;
587 mlib_d64 hdvl = dst[0];
601 dst[i * dnch] = hdvl0;
610 mlib_d64 hdvl = dst[0];
623 dst[i * dnch] = hdvl0;
629 void mlib_ImageConvMxND642D64_ext(mlib_d64 *dst,
640 dst[i] = val;
645 dst[i] = src[nch * (i - dx_l)];
646 val = dst[n - dx_r - 1];
648 dst[i] = val;
652 mlib_status mlib_convMxNext_d64(mlib_image *dst,
665 mlib_d64 *da = mlib_ImageGetData(dst);
667 mlib_s32 dlb = mlib_ImageGetStride(dst) >> 3;
669 mlib_s32 dw = mlib_ImageGetWidth(dst);
670 mlib_s32 dh = mlib_ImageGetHeight(dst);
671 mlib_s32 nch = mlib_ImageGetChannels(dst);