HomeSort by relevance Sort by last modified time
    Searched defs:dst (Results 576 - 600 of 1474) sorted by null

<<21222324252627282930>>

  /external/mesa3d/src/mesa/main/
texgetimage.c 488 GLubyte *dst = local
503 memcpy(dst, src, bytesPerRow * texImage->Height);
508 memcpy(dst, src, bytesPerRow);
509 dst += dstRowStride;
uniform_query.cpp 316 union gl_constant_value *const dst = local
328 dst[i].f = (float) src[i].u;
332 dst[i].f = (float) src[i].i;
335 dst[i].f = src[i].i ? 1.0f : 0.0f;
364 dst[i].i = IROUND(src[i].f);
367 dst[i].i = src[i].i ? 1 : 0;
489 uint8_t *dst = (uint8_t *) store->data; local
498 __func__, dst, array_index, components,
502 dst += array_index * store->element_stride;
512 memcpy(dst, src, src_vector_byte_stride)
751 union gl_constant_value *dst = &uni->storage[components * offset]; local
908 float *dst = &uni->storage[elements * offset].f; local
    [all...]
  /external/mesa3d/src/mesa/swrast/
s_atifragshader.c 205 GLfloat * dst)
213 dst[0] = src[0];
216 dst[1] = src[1];
219 dst[2] = src[2];
223 dst[i] = src[i];
227 dst[3] = src[3];
330 GLfloat dst[2][4], *dstp; local
388 dst[optype][i] =
392 dst[optype][3] = src[optype][0][3] + src[optype][1][3];
397 dst[optype][i]
    [all...]
s_depth.c 259 GLuint *dst = (GLuint *) (map + y[i] * rowStride + x[i] * 4); local
260 *dst = zvalues[i];
270 void *dst = map + y[i] * rowStride + x[i] * bpp; local
271 packZ(zvalues + i, dst);
383 GLubyte *dst = zStart; local
387 packZ(&zBufferTemp[i], dst);
389 dst += bpp;
s_drawpix.c 64 GLubyte *dst; local
68 GL_MAP_WRITE_BIT, &dst, &dstRowStride);
70 if (!dst) {
76 dst = dst + (height - 1) * dstRowStride;
81 GLuint *dst4 = (GLuint *) dst;
85 dst += dstRowStride;
111 GLubyte *dst; local
115 GL_MAP_WRITE_BIT, &dst, &dstRowStride);
117 if (!dst) {
161 GLubyte *dst; local
519 GLubyte *src, *dst; local
619 GLubyte *dst = _swrast_pixel_address(depthRb, x, y + i); local
    [all...]
s_stencil.c 337 GLubyte *dst = _swrast_pixel_address(rb, x[i], y[i]); local
338 pack_stencil(&stencil[i], dst);
s_texcombine.c 200 float4_array dst = ccolor[term]; local
208 dst[i][RCOMP] = 1.0F - src[i][RCOMP];
209 dst[i][GCOMP] = 1.0F - src[i][GCOMP];
210 dst[i][BCOMP] = 1.0F - src[i][BCOMP];
215 dst[i][RCOMP] =
216 dst[i][GCOMP] =
217 dst[i][BCOMP] = src[i][ACOMP];
222 dst[i][RCOMP] =
223 dst[i][GCOMP] =
224 dst[i][BCOMP] = 1.0F - src[i][ACOMP]
290 float4_array dst = ccolor[term]; local
    [all...]
  /external/neven/
FaceDetector_jni.cpp 220 uint8_t* dst = (uint8_t*)bwbuffer; local
235 *dst++ = L;
  /external/opencv/cv/src/
cvcanny.cpp 60 CvMat dststub, *dst = (CvMat*)dstarr; local
71 CV_CALL( dst = cvGetMat( dst, &dststub ));
74 CV_MAT_TYPE( dst->type ) != CV_8UC1 )
77 if( !CV_ARE_SIZES_EQ( src, dst ))
104 dst->data.ptr, dst->step,
343 uchar* _dst = dst->data.ptr + dst->step*i;
cvgeometry.cpp 133 CvPoint2D32f dst = cvSubdiv2DEdgeDst( edge )->pt; local
135 double a = dst.x - org.x;
136 double b = dst.y - org.y;
137 double c = -(a * (dst.x + org.x) + b * (dst.y + org.y));
cvsamplers.cpp 149 dsttype* dst, int dst_step, CvSize win_size, CvPoint2D32f center ) \
172 dst_step /= sizeof(dst[0]); \
182 dst, dst_step*sizeof(dst[0]), \
187 dst += dst_step ) \
200 dst[j] = (dsttype)cast_macro2(s0); \
201 dst[j+1] = (dsttype)cast_macro2(s1); \
211 dst[j] = (dsttype)cast_macro2(s0); \
222 for( i = 0; i < win_size.height; i++, dst += dst_step ) \
234 dst[j] = (dsttype)cast_macro2(s0);
545 CvMat dststub, *dst = (CvMat*)dstarr; local
815 CvMat dststub, *dst = (CvMat*)dstarr; local
    [all...]
cvthresh.cpp 45 icvThresh_8u_C1R( const uchar* src, int src_step, uchar* dst, int dst_step,
87 for( i = 0; i < roi.height; i++, src += src_step, dst += dst_step )
94 dst[j] = t0;
95 dst[j+1] = t1;
100 dst[j+2] = t0;
101 dst[j+3] = t1;
105 dst[j] = tab[src[j]];
113 icvThresh_32f_C1R( const float *src, int src_step, float *dst, int dst_step,
118 int* idst = (int*)dst;
126 dst_step /= sizeof(dst[0])
308 CvMat dst_stub, *dst = (CvMat*)dstarr; local
    [all...]
cvutils.cpp 112 uchar* dst, int dststep, CvSize dstroi,
118 if( srcstep == dststep && dst + dststep*top + left*cn == src &&
147 return func( src, srcstep, srcroi, dst, dststep, dstroi, top, left );
150 if( (cn | srcstep | dststep | (size_t)src | (size_t)dst) % isz == 0 )
153 int* idst = (int*)dst;
182 for( i = 0; i < dstroi.height; i++, dst += dststep )
184 if( dst + left != src )
186 dst[j + left] = src[j];
188 dst[j] = dst[j + cn]
483 CvMat dststub, *dst = (CvMat*)dstarr; local
    [all...]
  /external/opencv/cvaux/src/
cvcalibfilter.cpp 505 void CvCalibFilter::DrawPoints( IplImage** dst )
507 DrawPoints( (CvMat**)dst );
527 CvMat dst_stub, *dst; local
534 dst = cvGetMat( dstarr[i], &dst_stub );
566 cvLine( dst, prev_pt, pt, color, 1, CV_AA );
569 cvLine( dst, cvPoint( pt.x - r, pt.y - r ),
572 cvLine( dst, cvPoint( pt.x - r, pt.y + r),
575 cvCircle( dst, pt, r+1, color, 1, CV_AA );
783 IplImage dst_stub, *dst; local
786 dst = cvGetImage( dstarr[i], &dst_stub )
853 CvMat dst_stub, *dst; local
    [all...]
  /external/opencv/cxcore/src/
cxlogic.cpp 64 uchar* dst, int step, CvSize size ), (src1, step1, src2, step2, dst, step, size) )\
66 for( ; size.height--; src1 += step1, src2 += step2, dst += step ) \
70 if( (((size_t)src1 | (size_t)src2 | (size_t)dst) & 3) == 0 ) \
77 ((int*)(dst+i))[0] = t0; \
78 ((int*)(dst+i))[1] = t1; \
83 ((int*)(dst+i))[2] = t0; \
84 ((int*)(dst+i))[3] = t1; \
90 *(int*)(dst+i) = t; \
97 dst[i] = (uchar)t;
190 CvMat dststub, *dst = (CvMat*)dstarr; local
354 CvMat dststub, *dst = (CvMat*)dstarr; local
624 CvMat dststub, *dst = (CvMat*)dstarr; local
    [all...]
  /external/opencv/otherlibs/highgui/
grfmt_jpeg2000.cpp 280 uchar* dst = data + (y - yoffset) * step - xoffset; local
288 dst[x*ncmpts] = CV_CAST_8U(pix);
294 dst[x*ncmpts] = CV_CAST_8U(pix);
301 dst[x*ncmpts] = dst[(x+1)*ncmpts] = CV_CAST_8U(pix);
309 dst[x*ncmpts] = (uchar)pix;
312 for( ++y; y < y1; y++, dst += step )
314 dst[x*ncmpts + step] = dst[x*ncmpts];
342 ushort* dst = data + (y - yoffset) * step - xoffset local
    [all...]
utils.cpp 580 CvMat dststub, *dst; local
584 CV_CALL( dst = cvGetMat( dstarr, &dststub ));
587 dst_cn = CV_MAT_CN( dst->type );
592 if( CV_MAT_DEPTH( dst->type ) != CV_8U )
595 if( CV_MAT_CN(dst->type) != 1 && CV_MAT_CN(dst->type) != 3 )
598 if( !CV_ARE_DEPTHS_EQ( src, dst ))
604 if( !CV_ARE_CNS_EQ( src, dst ))
607 (src->type & CV_MAT_CN_MASK)|(dst->type & CV_MAT_DEPTH_MASK));
613 cvConvertScale( src, dst, scale, shift )
    [all...]
  /external/openssl/ssl/
s3_pkt.c 963 unsigned char *dst = buf; local
970 *dst++ = *src++;
    [all...]
  /external/pixman/test/
alphamap.c 151 pixman_image_t *src, *dst, *orig_dst, *alpha, *orig_alpha; local
176 dst = make_image (df);
177 pixman_image_composite (PIXMAN_OP_SRC, orig_dst, NULL, dst,
189 pixman_image_set_alpha_map (dst, alpha, doff, doff);
203 pixman_image_set_transform (dst, &t1);
204 pixman_image_set_filter (dst, PIXMAN_FILTER_BILINEAR, NULL, 0);
205 pixman_image_set_repeat (dst, PIXMAN_REPEAT_REFLECT);
207 pixman_image_composite (PIXMAN_OP_ADD, src, NULL, dst,
218 da = get_alpha (dst, k, j, doff, doff);
248 dr = get_red (dst, k, j, doff, doff)
    [all...]
composite.c 227 composite_test (image_t *dst,
241 pixman_image_composite (op, src->image, mask->image, dst->image,
242 0, 0, 0, 0, 0, 0, dst->size, dst->size);
246 pixman_image_composite (op, src->image, NULL, dst->image,
250 dst->size, dst->size);
253 tdst = *dst->color;
313 if (PIXMAN_FORMAT_TYPE (dst->format) == PIXMAN_TYPE_ARGB_SRGB)
318 round_color (dst->format, &tdst)
450 image_t src, mask, dst; local
    [all...]
  /external/qemu/audio/
wavaudio.c 62 uint8_t *dst; local
85 dst = advance (wav->pcm_buf, rpos << hw->info.shift);
87 hw->clip (dst, src, convert_samples);
88 qemu_put_buffer (wav->f, dst, convert_samples << hw->info.shift);
350 struct st_sample* dst; local
377 dst = hw->conv_buf + wpos;
381 memcpy (dst, src, convert_samples << hw->info.shift);
  /external/qemu/distrib/sdl-1.2.15/src/audio/
SDL_audiocvt.c 41 Uint8 *src, *dst; local
44 dst = cvt->buf;
47 *dst = (Uint8)(sample / 2);
49 dst += 1;
55 Sint8 *src, *dst; local
58 dst = (Sint8 *)cvt->buf;
61 *dst = (Sint8)(sample / 2);
63 dst += 1;
69 Uint8 *src, *dst; local
72 dst = cvt->buf
100 Uint8 *src, *dst; local
148 Uint8 *src, *dst; local
162 Sint8 *src, *dst; local
176 Uint8 *src, *dst; local
211 Uint8 *src, *dst; local
264 Uint8 *src, *dst; local
278 Sint8 *src, *dst; local
292 Uint8 *src, *dst; local
327 Uint8 *src, *dst; local
376 Uint16 *src, *dst; local
387 Uint8 *src, *dst; local
416 Uint8 *src, *dst, lf, rf, ce; local
437 Sint8 *src, *dst, lf, rf, ce; local
458 Uint8 *src, *dst; local
517 Uint8 *src, *dst; local
593 Uint8 *src, *dst, lf, rf, ce; local
612 Sint8 *src, *dst, lf, rf, ce; local
631 Uint8 *src, *dst; local
680 Uint8 *src, *dst; local
739 Uint8 *src, *dst; local
762 Uint8 *src, *dst; local
786 Uint8 *src, *dst; local
863 Uint8 *src, *dst; local
901 Uint8 *src, *dst; local
944 Uint8 *src, *dst; local
1000 Uint8 *src, *dst; local
1067 Uint8 *src, *dst; local
1102 Uint8 *src, *dst; local
1140 Uint8 *src, *dst; local
1183 Uint8 *src, *dst; local
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/stdlib/
SDL_iconv.c 213 char *dst; local
227 dst = *outbuf;
285 *(Uint16 *)dst = UNICODE_BOM;
286 dst += 2;
295 *(Uint32 *)dst = UNICODE_BOM;
296 dst += 4;
575 Uint8 *p = (Uint8 *)dst;
584 ++dst;
590 Uint8 *p = (Uint8 *)dst;
599 ++dst;
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/
SDL_blit.h 42 SDL_PixelFormat *dst; member in struct:__anon25014
56 SDL_Surface *dst; member in struct:SDL_BlitMap
SDL_cursor.c 383 Uint8 *dst; local
391 dst = (Uint8 *)screen->pixels +
402 *dst = pixels8[datab>>7];
406 dst++;
409 dst += dstskip;
415 Uint16 *dst; local
418 dst = (Uint16 *)screen->pixels +
429 *dst = (Uint16)pixels[datab>>7];
433 dst++;
436 dst += dstskip
442 Uint8 *dst; local
469 Uint32 *dst; local
504 Uint8 *dst; local
607 Uint8 *src, *dst; local
685 Uint8 *src, *dst; local
    [all...]

Completed in 840 milliseconds

<<21222324252627282930>>