Home
last modified time | relevance | path

Searched refs:dstptr (Results 1 – 25 of 51) sorted by relevance

123

/external/opencv3/3rdparty/libjasper/
Djpc_qmfb.c316 register jpc_fix_t *dstptr; in jpc_qmfb_split_row() local
336 dstptr = buf; in jpc_qmfb_split_row()
339 *dstptr = *srcptr; in jpc_qmfb_split_row()
340 ++dstptr; in jpc_qmfb_split_row()
344 dstptr = &a[1 - parity]; in jpc_qmfb_split_row()
348 *dstptr = *srcptr; in jpc_qmfb_split_row()
349 ++dstptr; in jpc_qmfb_split_row()
353 dstptr = &a[hstartcol]; in jpc_qmfb_split_row()
357 *dstptr = *srcptr; in jpc_qmfb_split_row()
358 ++dstptr; in jpc_qmfb_split_row()
[all …]
/external/opencv3/modules/core/src/opencl/
Dlut.cl41 dst = (__global dstT *)(dstptr + dst_index); \
49 dst = (__global dstT *)(dstptr + dst_index); \
56 dst = (__global dstT *)(dstptr + dst_index); \
62 dst = (__global dstT *)(dstptr + dst_index); \
67 dst = (__global dstT *)(dstptr + dst_index); \
76 dst = (__global dstT *)(dstptr + dst_index); \
85 dst = (__global dstT *)(dstptr + dst_index); \
93 dst = (__global dstT *)(dstptr + dst_index); \
99 dst = (__global dstT *)(dstptr + dst_index); \
104 dst = (__global dstT *)(dstptr + dst_index); \
[all …]
Dflip.cl53 __global uchar * dstptr, int dst_step, int dst_offset,
72 storepix(src1, dstptr + dst_index0);
73 storepix(src0, dstptr + dst_index1);
84 __global uchar * dstptr, int dst_step, int dst_offset,
118 storepix(src1, dstptr + dst_index0);
119 storepix(src0, dstptr + dst_index1);
130 __global uchar * dstptr, int dst_step, int dst_offset,
164 storepix(src1, dstptr + dst_index0);
165 storepix(src0, dstptr + dst_index1);
Dcopyset.cl51 __global T1 * dst = (__global T1 *)(dstptr + dst_index)
55 __global uchar * dstptr, int dst_step, int dst_offset,
109 #define storedst(val) *(__global dstT *)(dstptr + dst_index) = val
112 #define storedst(val) vstore3(val, 0, (__global dstT1 *)(dstptr + dst_index))
116 __global uchar* dstptr, int dststep, int dstoffset,
138 __kernel void set(__global uchar* dstptr, int dststep, int dstoffset,
Dmeanstddev.cl35 int total, int groups, __global uchar * dstptr
123 storepix(localMemSum[0], dstptr + dstTSIZE * gid);
124 storesqpix(localMemSqSum[0], dstptr + mad24(dstTSIZE, groups, sqdstTSIZE * gid));
126 …*(__global int *)(dstptr + mad24(dstTSIZE + sqdstTSIZE, groups, (int)sizeof(int) * gid)) = localMe…
Dcopymakeborder.cl99 … __global uchar * dstptr, int dst_step, int dst_offset, int dst_rows, int dst_cols,
118 storepix(scalar, dstptr + dst_index);
132 storepix(scalar, dstptr + dst_index);
137 storepix(loadpix(srcptr + src_index), dstptr + dst_index);
Dminmaxloc.cl112 int total, int groupnum, __global uchar * dstptr
367 *(__global dstT1 *)(dstptr + mad24(gid, (int)sizeof(dstT1), pos)) = localmem_min[0];
371 *(__global dstT1 *)(dstptr + mad24(gid, (int)sizeof(dstT1), pos)) = localmem_max[0];
375 *(__global uint *)(dstptr + mad24(gid, (int)sizeof(uint), pos)) = localmem_minloc[0];
379 *(__global uint *)(dstptr + mad24(gid, (int)sizeof(uint), pos)) = localmem_maxloc[0];
385 *(__global dstT1 *)(dstptr + mad24(gid, (int)sizeof(dstT1), pos)) = localmem_max2[0];
Dreduce2.cl95 __global uchar * dstptr, int dst_step, int dst_offset
145 __global dstT * dst = (__global dstT *)(dstptr + dst_index);
174 __global uchar * dstptr, int dst_step, int dst_offset
187 __global dstT0 * dst = (__global dstT0 *)(dstptr + dst_index);
220 __global dstT * dst = (__global dstT *)(dstptr + dst_index);
Drepeat.cl19 __global uchar * dstptr, int dst_step, int dst_offset)
41 storepix(srcelem, dstptr + dst_index);
Dnormalize.cl32 … __global uchar * dstptr, int dst_step, int dst_offset, int dst_rows, int dst_cols
68 storepix(convertToDT(value), dstptr + dst_index);
Dinrange.cl53 … __global uchar * dstptr, int dst_step, int dst_offset, int dst_rows, int dst_cols,
80 __global dstT * dst = (__global dstT *)(dstptr + dst_index);
94 __global uchar * dst = dstptr + dst_index;
/external/libvncserver/libvncserver/
Dscale.c145 unsigned char *srcptr, *dstptr; in rfbScaledScreenUpdateRect() local
166 dstptr = (unsigned char *)(ptr->frameBuffer + in rfbScaledScreenUpdateRect()
239 case 4: *((unsigned int *)dstptr) = (unsigned int) pixel_value; break; in rfbScaledScreenUpdateRect()
240 case 2: *((unsigned short *)dstptr) = (unsigned short) pixel_value; break; in rfbScaledScreenUpdateRect()
241 case 1: *((unsigned char *)dstptr) = (unsigned char) pixel_value; break; in rfbScaledScreenUpdateRect()
245 dstptr[z]=(pixel_value >> (8 * z)) & 0xff; in rfbScaledScreenUpdateRect()
248 dstptr += bytesPerPixel; in rfbScaledScreenUpdateRect()
251 dstptr += (ptr->paddedWidthInBytes - bytesPerLine); in rfbScaledScreenUpdateRect()
/external/opencv3/modules/imgproc/src/opencl/
Dwarp_perspective.cl90 … __global uchar * dstptr, int dst_step, int dst_offset, int dst_rows, int dst_cols,
110 storepix(loadpix(srcptr + src_index), dstptr + dst_index);
113 storepix(scalar, dstptr + dst_index);
120 … __global uchar * dstptr, int dst_step, int dst_offset, int dst_rows, int dst_cols,
160 …convertToT((val + (1 << (INTER_REMAP_COEF_BITS-1))) >> INTER_REMAP_COEF_BITS), dstptr + dst_index);
164 storepix(convertToT(val), dstptr + dst_index);
182 … __global uchar * dstptr, int dst_step, int dst_offset, int dst_rows, int dst_cols,
229 …nvertToT( (sum + (1 << (INTER_REMAP_COEF_BITS-1))) >> INTER_REMAP_COEF_BITS ), dstptr + dst_index);
234 storepix(convertToT( sum ), dstptr + dst_index);
Dcvtcolor.cl134 __global uchar * dstptr, int dst_step, int dst_offset,
151 __global DATA_TYPE* dst = (__global DATA_TYPE*)(dstptr + dst_index);
167 __global uchar * dstptr, int dst_step, int dst_offset,
184 __global DATA_TYPE* dst = (__global DATA_TYPE*)(dstptr + dst_index);
208 __global uchar* dstptr, int dst_step, int dt_offset,
225 __global DATA_TYPE* dst = (__global DATA_TYPE*)(dstptr + dst_index);
258 __global uchar* dstptr, int dst_step, int dt_offset,
275 __global DATA_TYPE* dst = (__global DATA_TYPE*)(dstptr + dst_index);
308 __global uchar* dstptr, int dst_step, int dt_offset,
323 … __global uchar* dst1 = dstptr + mad24(y << 1, dst_step, mad24(x, dcn<<1, dt_offset));
[all …]
Dwarp_affine.cl91 … __global uchar * dstptr, int dst_step, int dst_offset, int dst_rows, int dst_cols,
116 storepix(loadpix(srcptr + src_index), dstptr + dst_index);
119 storepix(scalar, dstptr + dst_index);
135 … __global uchar * dstptr, int dst_step, int dst_offset, int dst_rows, int dst_cols,
186 …convertToT((val + (1 << (INTER_REMAP_COEF_BITS-1))) >> INTER_REMAP_COEF_BITS), dstptr + dst_index);
190 storepix(convertToT(val), dstptr + dst_index);
230 storepix(convertToT(sum), dstptr + dst_index);
268 … __global uchar * dstptr, int dst_step, int dst_offset, int dst_rows, int dst_cols,
326 …nvertToT( (sum + (1 << (INTER_REMAP_COEF_BITS-1))) >> INTER_REMAP_COEF_BITS ), dstptr + dst_index);
331 storepix(convertToT( sum ), dstptr + dst_index);
[all …]
Dremap.cl144 … __global uchar * dstptr, int dst_step, int dst_offset, int dst_rows, int dst_cols,
167 __global T * dst = (__global T *)(dstptr + dst_index);
191 … __global uchar * dstptr, int dst_step, int dst_offset, int dst_rows, int dst_cols,
210 __global T * dst = (__global T *)(dstptr + dst_index);
231 … __global uchar * dstptr, int dst_step, int dst_offset, int dst_rows, int dst_cols,
250 __global T * dst = (__global T *)(dstptr + dst_index);
271 … __global uchar * dstptr, int dst_step, int dst_offset, int dst_rows, int dst_cols,
293 __global T * dst = (__global T *)(dstptr + dst_index);
327 … __global uchar * dstptr, int dst_step, int dst_offset, int dst_rows, int dst_cols,
349 __global T * dst = (__global T *)(dstptr + dst_index);
[all …]
Dresize.cl104 __global uchar* dstptr, int dststep, int dstoffset,
127 storepix(uval, dstptr + mad24(dy, dststep, dstoffset + dx*TSIZE));
134 … __global uchar * dstptr, int dst_step, int dst_offset, int dst_rows, int dst_cols,
163 dstptr + mad24(dy, dst_step, mad24(dx, TSIZE, dst_offset)));
170 … __global uchar * dstptr, int dst_step, int dst_offset, int dst_rows, int dst_cols,
219 storepix(uval, dstptr + mad24(dy, dst_step, mad24(dx, TSIZE, dst_offset)));
226 … __global uchar * dstptr, int dst_step, int dst_offset, int dst_rows, int dst_cols,
240 dstptr + mad24(dy, dst_step, mad24(dx, TSIZE, dst_offset)));
Dmorph.cl114 __global uchar * dstptr, int dst_step, int dst_offset,
166 storepix(convertToT(convertToWT(res) - convertToWT(value)), dstptr + dst_index);
168 storepix(convertToT(convertToWT(value) - convertToWT(res)), dstptr + dst_index);
170 storepix(convertToT(convertToWT(res) - convertToWT(value)), dstptr + dst_index);
173 storepix(res, dstptr + dst_index);
Daccumulate.cl25 … __global uchar * dstptr, int dst_step, int dst_offset, int dst_rows, int dst_cols
57 __global dstT1 * dst = (__global dstT1 *)(dstptr + dst_index);
DmedianFilter.cl55 #define STORE4(val, offs) vstore4((val), 0, (__global T1 *)(dstptr + (offs)))
69 #define STORE4(val, offs) vstore8((val), 0, (__global T1 *)(dstptr + (offs)))
83 #define STORE4(val, offs) vstore16((val), 0, (__global T1 *)(dstptr + (offs)))
97 __global uchar* dstptr, int dstStep, int dstOffset,
158 __global uchar* dstptr, int dstStep, int dstOffset,
282 … __global uchar * dstptr, int dst_step, int dst_offset, int dst_rows, int dst_cols)
325 storepix(p4, dstptr + dst_index);
329 … __global uchar * dstptr, int dst_step, int dst_offset, int dst_rows, int dst_cols)
392 storepix(p12, dstptr + dst_index);
/external/opencv3/modules/superres/src/opencl/
Dsuperres_btvl1.cl83 __global uchar * dstptr, int dst_step, int dst_offset, int scale)
94 __global float * dst = (__global float *)(dstptr + dst_index);
171 …__global float * dstptr = (__global float *)(dst + mad24(y, dst_step, 3 * sz * x + dst_offset + 0)…
172 dstptr[0] = dstVal.x;
173 dstptr[1] = dstVal.y;
174 dstptr[2] = dstVal.z;
/external/mesa3d/src/mesa/vbo/
Dvbo_split_copy.c88 GLubyte *dstptr; /**< dstptr == dstbuf + dstelt_max * vertsize */ member
214 copy->dstptr = copy->dstbuf; in flush()
253 GLubyte *csr = copy->dstptr; in elt()
289 copy->dstptr += copy->vertex_size; in elt()
291 assert(csr == copy->dstptr); in elt()
292 assert(copy->dstptr == (copy->dstbuf + in elt()
513 copy->dstptr = copy->dstbuf; in replay_init()
/external/llvm/test/Analysis/ScalarEvolution/
D2008-07-12-UnneededSelect1.ll9 define void @foo(i32 %count, i32* %srcptr, i32* %dstptr) nounwind {
26 store i32 %7, i32* %dstptr, align 4
/external/opencv3/modules/cudaarithm/src/cuda/
Dabsdiff_mat.cu161 const intptr_t dstptr = reinterpret_cast<intptr_t>(dst_.data); in absDiffMat() local
163 const bool isAllAligned = (src1ptr & 31) == 0 && (src2ptr & 31) == 0 && (dstptr & 31) == 0; in absDiffMat()
/external/libvncserver/test/
Dbmp.c91 unsigned char *srcptr, *srcptr0, *dstptr, *dstptr0; in pixelconvert() local
95 for(j=0, dstptr=dstbuf; j<h; j++, in pixelconvert()
96 srcptr+=flip? -srcpitch:srcpitch, dstptr+=dstpitch) in pixelconvert()
98 for(i=0, srcptr0=srcptr, dstptr0=dstptr; i<w; i++, in pixelconvert()

123