HomeSort by relevance Sort by last modified time
    Searched refs:dst (Results 301 - 325 of 1855) sorted by null

<<11121314151617181920>>

  /external/kernel-headers/original/linux/
nodemask.h 27 * void nodes_and(dst, src1, src2) dst = src1 & src2 [intersection]
28 * void nodes_or(dst, src1, src2) dst = src1 | src2 [union]
29 * void nodes_xor(dst, src1, src2) dst = src1 ^ src2
30 * void nodes_andnot(dst, src1, src2) dst = src1 & ~src2
31 * void nodes_complement(dst, src) dst = ~sr
    [all...]
  /external/opencv/cv/src/
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/bison/lib/
lbitset.c 416 /* Is DST == SRC? */
418 lbitset_equal_p (bitset dst, bitset src)
424 if (src == dst)
428 lbitset_weed (dst);
429 for (selt = LBITSET_HEAD (src), delt = LBITSET_HEAD (dst);
443 /* Copy bits from bitset SRC to bitset DST. */
445 lbitset_copy (bitset dst, bitset src)
452 if (src == dst)
455 lbitset_zero (dst);
471 LBITSET_HEAD (dst) = tmp
    [all...]
  /external/ipsec-tools/src/racoon/
rsalist.c 69 struct netaddr *dst, RSA *rsa)
81 if (dst)
82 rsa_key->dst = dst;
84 rsa_key->dst = calloc(sizeof(*rsa_key->dst), 1);
112 if (key->dst) {
113 new->dst = malloc(sizeof(*new->dst));
114 if (new->dst == NULL
    [all...]
  /libcore/luni/src/main/java/java/nio/
DirectByteBuffer.java 40 public final ByteBuffer get(byte[] dst, int dstOffset, int byteCount) {
41 checkGetBounds(1, dst.length, dstOffset, byteCount);
42 this.block.peekByteArray(offset + position, dst, dstOffset, byteCount);
47 final void get(char[] dst, int dstOffset, int charCount) {
48 int byteCount = checkGetBounds(SizeOf.CHAR, dst.length, dstOffset, charCount);
49 this.block.peekCharArray(offset + position, dst, dstOffset, charCount, order.needsSwap);
53 final void get(double[] dst, int dstOffset, int doubleCount) {
54 int byteCount = checkGetBounds(SizeOf.DOUBLE, dst.length, dstOffset, doubleCount);
55 this.block.peekDoubleArray(offset + position, dst, dstOffset, doubleCount, order.needsSwap);
59 final void get(float[] dst, int dstOffset, int floatCount)
    [all...]
HeapByteBuffer.java 62 public final ByteBuffer get(byte[] dst, int dstOffset, int byteCount) {
63 checkGetBounds(1, dst.length, dstOffset, byteCount);
64 System.arraycopy(backingArray, offset + position, dst, dstOffset, byteCount);
69 final void get(char[] dst, int dstOffset, int charCount) {
70 int byteCount = checkGetBounds(SizeOf.CHAR, dst.length, dstOffset, charCount);
71 Memory.unsafeBulkGet(dst, dstOffset, byteCount, backingArray, offset + position, SizeOf.CHAR, order.needsSwap);
75 final void get(double[] dst, int dstOffset, int doubleCount) {
76 int byteCount = checkGetBounds(SizeOf.DOUBLE, dst.length, dstOffset, doubleCount);
77 Memory.unsafeBulkGet(dst, dstOffset, byteCount, backingArray, offset + position, SizeOf.DOUBLE, order.needsSwap);
81 final void get(float[] dst, int dstOffset, int floatCount)
    [all...]
  /external/valgrind/main/memcheck/
mc_replace_strmem.c 56 /* Figure out if [dst .. dst+dstlen-1] overlaps with
64 Bool is_overlap ( void* dst, const void* src, SizeT dstlen, SizeT srclen )
72 loD = (Addr)dst;
92 #define RECORD_OVERLAP_ERROR(s, src, dst, len) \
97 s, src, dst, len, 0); \
156 char* VG_REPLACE_FUNCTION_ZU(soname,fnname) ( char* dst, const char* src ); \
157 char* VG_REPLACE_FUNCTION_ZU(soname,fnname) ( char* dst, const char* src ) \
160 Char* dst_orig = dst; \
161 while (*dst) dst++;
    [all...]
  /external/qemu/android/skin/
rect.c 18 skin_pos_rotate( SkinPos* dst, SkinPos* src, SkinRotation rotation )
25 dst->x = x;
26 dst->y = y;
30 dst->x = -y;
31 dst->y = x;
35 dst->x = -x;
36 dst->y = -y;
40 dst->x = y;
41 dst->y = -x;
56 skin_size_rotate( SkinSize* dst, SkinSize* src, SkinRotation rot
    [all...]
  /frameworks/base/cmds/installd/
utils.c 39 char *dst = path; local
42 if (append_and_increment(&dst, dir->path, &dst_size) < 0
43 || append_and_increment(&dst, pkgname, &dst_size) < 0
44 || append_and_increment(&dst, postfix, &dst_size) < 0) {
74 char *dst = prefix; local
77 if (append_and_increment(&dst, android_data_dir.path, &dst_size) < 0
78 || append_and_increment(&dst, persona_prefix, &dst_size) < 0) {
84 int ret = snprintf(dst, dst_size, "%d/", persona);
115 char *dst = path; local
118 if (append_and_increment(&dst, android_data_dir.path, &dst_size) <
352 char *dst; local
    [all...]
  /frameworks/base/core/jni/android/graphics/
Region.cpp 46 static void Region_setRegion(JNIEnv* env, jobject, SkRegion* dst, const SkRegion* src) {
47 SkASSERT(dst && src);
48 *dst = *src;
51 static jboolean Region_setRect(JNIEnv* env, jobject, SkRegion* dst, int left, int top, int right, int bottom) {
52 return dst->setRect(left, top, right, bottom);
55 static jboolean Region_setPath(JNIEnv* env, jobject, SkRegion* dst,
57 SkASSERT(dst && path && clip);
58 return dst->setPath(*path, *clip);
70 static jboolean Region_op0(JNIEnv* env, jobject, SkRegion* dst, int left, int top, int right, int bottom, int op) {
74 return dst->op(ir, (SkRegion::Op)op)
    [all...]
  /bionic/libc/inet/
inet_pton.c 61 static int inet_pton4(const char *src, u_char *dst, int pton);
62 static int inet_pton6(const char *src, u_char *dst);
65 * inet_pton(af, src, dst)
70 * 0 if the address wasn't valid (`dst' is untouched in this case)
71 * -1 if some other error occurred (`dst' is untouched in this case, too)
76 inet_pton(int af, const char *src, void *dst)
80 _DIAGASSERT(dst != NULL);
84 return (inet_pton4(src, dst, 1));
86 return (inet_pton6(src, dst));
95 * inet_pton4(src, dst, pton
    [all...]
  /external/libvpx/vp8/common/
mbpitch.c 34 b->dst = offset;
55 y = &x->dst.y_buffer;
56 u = &x->dst.u_buffer;
57 v = &x->dst.v_buffer;
68 setup_block(&x->block[block], x->dst.y_stride, y, x->dst.y_stride,
69 (block >> 2) * 4 * x->dst.y_stride + (block & 3) * 4, bs);
74 setup_block(&x->block[block], x->dst.uv_stride, u, x->dst.uv_stride,
75 ((block - 16) >> 1) * 4 * x->dst.uv_stride + (block & 1) * 4, bs)
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/fbcon/
SDL_fbriva.c 73 static int FillHWRect(_THIS, SDL_Surface *dst, SDL_Rect *rect, Uint32 color)
83 if ( dst == this->screen ) {
90 FB_dst_to_xy(this, dst, &dstX, &dstY);
103 FB_AddBusySurface(dst);
105 if ( dst == this->screen ) {
112 SDL_Surface *dst, SDL_Rect *dstrect)
121 if ( dst->pitch != SDL_VideoSurface->pitch ) {
122 return(src->map->sw_blit(src, srcrect, dst, dstrect));
129 if ( dst == this->screen ) {
137 FB_dst_to_xy(this, dst, &dstX, &dstY)
    [all...]
  /external/webkit/Source/WebKit/android/plugins/
ANPMatrixInterface.cpp 31 static void fromFloat(SkScalar dst[], const float src[], int n) {
33 dst[i] = SkFloatToScalar(src[i]);
37 static void toFloat(float dst[], const SkScalar src[], int n) {
39 dst[i] = SkScalarToFloat(src[i]);
56 static void anp_copy(ANPMatrix* dst, const ANPMatrix* src) {
57 *dst = *src;
60 static void anp_get3x3(const ANPMatrix* matrix, float dst[9]) {
62 dst[i] = SkScalarToFloat(matrix->get(i));
116 static bool anp_invert(ANPMatrix* dst, const ANPMatrix* src) {
117 return src->invert(dst);
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/
SDL_RLEaccel.c 148 movd_m2r((*dstp), mm2); /* dst -> mm2 */ \
393 Uint32 *dst = (Uint32 *)(to); \
396 Uint32 d = *dst; \
403 *dst++ = d1 | d; \
417 Uint16 *dst = (Uint16 *)(to); \
421 Uint32 d = *dst; \
426 *dst++ = (Uint16)(d | d >> 16); \
434 Uint16 *dst = (Uint16 *)(to); \
438 Uint32 d = *dst; \
443 *dst++ = (Uint16)(d | d >> 16);
1407 Uint8 *rlebuf, *dst; local
1644 Uint8 *rlebuf, *dst; local
1828 Uint32 *dst; local
    [all...]
  /external/skia/src/core/
SkBlitBWMaskTemplate.h 29 SK_BLITBWMASK_BLIT8 name of function(U8CPU byteMask, SK_BLITBWMASK_DEVTYPE* dst, int x, int y)
55 SK_BLITBWMASK_DEVTYPE* dst = device; local
59 SK_BLITBWMASK_BLIT8(mask, dst);
60 dst += 8;
107 SK_BLITBWMASK_DEVTYPE* dst = device; local
112 SK_BLITBWMASK_BLIT8(mask, dst);
113 dst += 8;
118 SK_BLITBWMASK_BLIT8(mask, dst);
119 dst += 8;
123 SK_BLITBWMASK_BLIT8(mask, dst);
    [all...]
  /external/elfutils/libelf/
gelf_getphdr.c 29 gelf_getphdr (elf, ndx, dst)
32 GElf_Phdr *dst;
45 if (dst == NULL)
74 result = dst;
110 result = memcpy (dst, phdr + ndx, sizeof (GElf_Phdr));
gelf_getsym.c 30 gelf_getsym (data, ndx, dst)
33 GElf_Sym *dst;
71 dst->name = src->name
95 *dst = ((GElf_Sym *) data->d_buf)[ndx];
98 result = dst;
  /external/skia/include/core/
SkBlitRow.h 28 typedef void (*Proc)(uint16_t* SK_RESTRICT dst,
35 typedef void (*ColorProc)(SkPMColor* dst, const SkPMColor* src, int count,
49 @param dst array of dst 32bit colors
54 typedef void (*Proc32)(uint32_t* SK_RESTRICT dst,
61 into a row of D32 pixels. src and dst may be the same memory, but
64 static void Color32(SkPMColor dst[], const SkPMColor src[],
93 * Function pointer that blits the mask into a device (dst) colorized
97 typedef void (*Proc)(void* dst, size_t dstRB, SkBitmap::Config dstConfig,
  /frameworks/base/include/media/stagefright/
ColorConverter.h 68 const BitmapParams &src, const BitmapParams &dst);
71 const BitmapParams &src, const BitmapParams &dst);
74 const BitmapParams &src, const BitmapParams &dst);
77 const BitmapParams &src, const BitmapParams &dst);
80 const BitmapParams &src, const BitmapParams &dst);
  /frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/
idct.h 48 void idctrow0(int16 *blk, uint8 *pred, uint8 *dst, int width);
49 void idctrow1(int16 *blk, uint8 *pred, uint8 *dst, int width);
50 void idctrow2(int16 *blk, uint8 *pred, uint8 *dst, int width);
51 void idctrow3(int16 *blk, uint8 *pred, uint8 *dst, int width);
52 void idctrow4(int16 *blk, uint8 *pred, uint8 *dst, int width);
  /libcore/luni/src/main/native/
libcore_icu_NativeNormalizer.cpp 29 UnicodeString dst; local
30 Normalizer::normalize(src.unicodeString(), mode, 0, dst, status);
32 return dst.isBogus() ? NULL : env->NewString(dst.getBuffer(), dst.length());
  /ndk/sources/host-tools/sed-4.2.1/lib/
rename.c 35 /* Rename the file SRC to DST. This replacement is necessary on
37 an existing DST. */
39 rpl_rename (char const *src, char const *dst)
46 if (MoveFileEx (src, dst, 0))
54 if (MoveFileEx (src, dst, MOVEFILE_REPLACE_EXISTING))
140 /* Rename the file SRC to DST, removing any trailing
144 rpl_rename (char const *src, char const *dst)
158 ret_val = rename (src_temp, dst);
  /packages/apps/Gallery2/src/com/android/gallery3d/photoeditor/filters/
CropFilter.java 41 public void process(Photo src, Photo dst) {
42 dst.changeDimension(Math.round(bounds.width() * src.width()),
48 effect.setParameter("width", dst.width());
49 effect.setParameter("height", dst.height());
50 effect.apply(src.texture(), src.width(), src.height(), dst.texture());

Completed in 940 milliseconds

<<11121314151617181920>>