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

<<11121314151617181920>>

  /external/elfutils/libelf/
gelf_getshdr.c 29 gelf_getshdr (scn, dst)
31 GElf_Shdr *dst;
38 if (dst == NULL)
58 dst->name = shdr->name
70 result = dst;
83 result = memcpy (dst, shdr, sizeof (GElf_Shdr));
  /external/icu4c/tools/genrb/
ustr.h 54 void ustr_cpy(struct UString *dst, const struct UString *src,
57 void ustr_cat(struct UString *dst, const struct UString *src,
60 void ustr_ncat(struct UString *dst, const struct UString *src,
63 void ustr_ucat(struct UString *dst, UChar c, UErrorCode *status);
64 void ustr_u32cat(struct UString *dst, UChar32 c, UErrorCode *status);
65 void ustr_uscat(struct UString *dst, const UChar* src,int len,UErrorCode *status);
  /external/opencv/cv/src/
cvaccum.cpp 46 name,( const srctype *src, int srcstep, dsttype *dst, \
47 int dststep, CvSize size ), (src, srcstep, dst, dststep, size )) \
51 dststep /= sizeof(dst[0]); \
53 for( ; size.height--; src += srcstep, dst += dststep ) \
58 dsttype t0 = dst[x] + cvtmacro(src[x]); \
59 dsttype t1 = dst[x + 1] + cvtmacro(src[x + 1]); \
60 dst[x] = t0; dst[x + 1] = t1; \
62 t0 = dst[x + 2] + cvtmacro(src[x + 2]); \
63 t1 = dst[x + 3] + cvtmacro(src[x + 3]);
    [all...]
_cvimgproc.h 45 #define CV_COPY( dst, src, len, idx ) \
46 for( (idx) = 0; (idx) < (len); (idx)++) (dst)[idx] = (src)[idx]
48 #define CV_SET( dst, val, len, idx ) \
49 for( (idx) = 0; (idx) < (len); (idx)++) (dst)[idx] = (val)
52 void icvSepConvSmall3_32f( float* src, int src_step, float* dst, int dst_step,
56 ( const void* src, int srcstep, void* dst, int dststep, CvSize roi, int aperture );
59 ( const void* src, int srcstep, void* dst, int dststep, CvSize roi );
80 uchar* dst, int dststep, CvSize dstroi,
88 int icvIPPSepFilter( const CvMat* src, CvMat* dst, const CvMat* kernelX,
105 uchar* dst, int dst_step, CvSize win_size, CvPoint2D32f center )
    [all...]
  /external/skia/src/opts/
SkBlitRow_opts_SSE2.h 20 void S32_Blend_BlitRow32_SSE2(SkPMColor* SK_RESTRICT dst,
24 void S32A_Opaque_BlitRow32_SSE2(SkPMColor* SK_RESTRICT dst,
28 void S32A_Blend_BlitRow32_SSE2(SkPMColor* SK_RESTRICT dst,
  /external/valgrind/tsan/
ts_replace.h 95 static NOINLINE char *Replace_memcpy(EXTRA_REPLACE_PARAMS char *dst,
99 dst[i] = src[i];
102 REPORT_WRITE_RANGE(dst, i);
103 return dst;
106 static NOINLINE char *Replace_memmove(EXTRA_REPLACE_PARAMS char *dst,
110 if (dst < src) {
112 dst[i] = src[i];
116 dst[len - i - 1] = src[len - i - 1];
120 REPORT_WRITE_RANGE(dst, i);
121 return dst;
    [all...]
  /frameworks/base/media/libeffects/lvm/lib/Common/lib/
Mixer.h 77 LVM_INT32 *dst,
83 LVM_INT32 *dst,
88 LVM_INT32 *dst,
97 LVM_INT32 *dst,
103 LVM_INT32 *dst,
108 LVM_INT32 *dst,
  /frameworks/base/media/libeffects/lvm/lib/Common/src/
MixSoft_1St_D32C31_WRA.c 40 LVM_INT32 *dst,
60 Core_MixSoft_1St_D32C31_WRA( pInstance, src, dst, n);
70 LoadConst_32(0, dst, n);
72 if (src != dst)
73 Copy_16((LVM_INT16*)src, (LVM_INT16*)dst, (LVM_INT16)(n * 2));
76 Mult3s_32x16( src, (LVM_INT16)(pInstance->Current>>16), dst, n );
  /external/qemu/android/skin/
surface.c 289 SkinSurface* dst,
303 delta = (x + w) - dst->surface->w;
311 delta = (y + h) - dst->surface->h;
323 if ( !SDL_LockSurface(dst->surface) )
326 blit->dst_lock = dst->surface;
327 blit->dst_pitch = dst->surface->pitch;
328 blit->dst_line = dst->surface->pixels + y*blit->dst_pitch;
338 SkinSurface* dst,
362 delta = (x + w) - dst->surface->w;
380 delta = (y + h) - dst->surface->h
    [all...]
  /external/skia/src/core/
SkSpriteBlitter_ARGB32.cpp 47 SK_RESTRICT uint32_t* dst = fDevice->getAddr32(x, y); local
56 proc(dst, src, width, alpha);
57 dst = (SK_RESTRICT uint32_t*)((char*)dst + dstRB);
135 SK_RESTRICT uint32_t* dst = fDevice->getAddr32(x, y); local
152 xfermode->xfer32(dst, tmp, width, NULL);
154 fProc32(dst, tmp, width, fAlpha);
157 dst = (SK_RESTRICT uint32_t*)((char*)dst + dstRB);
166 static void fillbuffer(SK_RESTRICT SkPMColor dst[],
182 SK_RESTRICT SkPMColor* dst = fDevice->getAddr32(x, y); local
229 SK_RESTRICT SkPMColor* dst = fDevice->getAddr32(x, y); local
258 SK_RESTRICT SkPMColor* dst = fDevice->getAddr32(x, y); local
    [all...]
  /frameworks/base/media/libstagefright/codecs/m4v_h263/enc/src/
me_utils.cpp 220 UChar *src, *dst; local
239 dst = src - (pitch << 4);
241 *((ULong*)(dst - 16)) = temp1;
242 *((ULong*)(dst - 12)) = temp1;
243 *((ULong*)(dst - 8)) = temp1;
244 *((ULong*)(dst - 4)) = temp1;
246 M4VENC_MEMCPY(dst, src, width);
248 *((ULong*)(dst += width)) = temp2;
249 *((ULong*)(dst + 4)) = temp2;
250 *((ULong*)(dst + 8)) = temp2
    [all...]
  /external/bison/lib/
ebitset.c 415 ebitset_equal_p (bitset dst, bitset src)
421 if (src == dst)
424 ebitset_weed (dst);
427 if (EBITSET_SIZE (src) != EBITSET_SIZE (dst))
431 delts = EBITSET_ELTS (dst);
452 /* Copy bits from bitset SRC to bitset DST. */
454 ebitset_copy_ (bitset dst, bitset src)
460 if (src == dst)
463 ebitset_zero (dst);
465 if (BITSET_NBITS_ (dst) != BITSET_NBITS_ (src)
    [all...]
  /external/qemu/android/utils/
system.h 48 #define AMEM_ZERO(dst,size) memset((char*)(dst), 0, (size_t)(size))
49 #define AMEM_COPY(dst,src,size) memcpy((char*)(dst),(const char*)(src),(size_t)(size))
50 #define AMEM_MOVE(dst,src,size) memmove((char*)(dst),(const char*)(src),(size_t)(size))
56 #define AARRAY_COPY(dst,src,count) AMEM_COPY(dst,src,(count)*sizeof((dst)[0]))
57 #define AARRAY_MOVE(dst,src,count) AMEM_MOVE(dst,src,(count)*sizeof((dst)[0])
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/fbcon/
SDL_fb3dfx.c 52 static int FillHWRect(_THIS, SDL_Surface *dst, SDL_Rect *rect, Uint32 color)
63 if ( dst == this->screen ) {
68 dst_base = ((char *)dst->pixels - mapped_mem);
69 bpp = dst->format->BitsPerPixel;
70 format = dst->pitch | ((bpp+((bpp==8) ? 0 : 8)) << 13);
85 FB_AddBusySurface(dst);
87 if ( dst == this->screen ) {
94 SDL_Surface *dst, SDL_Rect *dstrect)
111 if ( dst == this->screen ) {
119 dst_base = ((char *)dst->pixels - mapped_mem)
    [all...]
  /external/skia/src/effects/
Sk1DPathEffect.cpp 21 bool Sk1DPathEffect::filterPath(SkPath* dst, const SkPath& src, SkScalar* width)
29 SkScalar delta = this->next(dst, distance, meas);
79 bool SkPath1DPathEffect::filterPath(SkPath* dst, const SkPath& src, SkScalar* width)
84 return this->INHERITED::filterPath(dst, src, width);
89 static void morphpoints(SkPoint dst[], const SkPoint src[], int count,
109 matrix.mapPoints(&dst[i], &pt, 1);
119 static void morphpath(SkPath* dst, const SkPath& src, SkPathMeasure& meas, SkScalar dist)
130 dst->moveTo(dstP[0]);
139 dst->quadTo(dstP[0], dstP[1]);
143 dst->cubicTo(dstP[0], dstP[1], dstP[2])
    [all...]
SkAvoidXfermode.cpp 109 static SkPMColor SkFourByteInterp(SkPMColor src, SkPMColor dst, unsigned scale)
111 unsigned a = SkAlphaBlend(SkGetPackedA32(src), SkGetPackedA32(dst), scale);
112 unsigned r = SkAlphaBlend(SkGetPackedR32(src), SkGetPackedR32(dst), scale);
113 unsigned g = SkAlphaBlend(SkGetPackedG32(src), SkGetPackedG32(dst), scale);
114 unsigned b = SkAlphaBlend(SkGetPackedB32(src), SkGetPackedB32(dst), scale);
123 void SkAvoidXfermode::xfer32(SkPMColor dst[], const SkPMColor src[], int count,
143 int d = color_dist32(dst[i], opR, opG, opB);
159 dst[i] = SkFourByteInterp(src[i], dst[i], d);
164 static inline U16CPU SkBlend3216(SkPMColor src, U16CPU dst, unsigned scale
    [all...]
  /external/webkit/Source/JavaScriptCore/assembler/
SH4Assembler.h 444 void movt(RegisterID dst)
446 uint16_t opc = getOpcodeGroup2(MOVT_OPCODE, dst);
452 void addlRegReg(RegisterID src, RegisterID dst)
454 uint16_t opc = getOpcodeGroup1(ADD_OPCODE, dst, src);
458 void addclRegReg(RegisterID src, RegisterID dst)
460 uint16_t opc = getOpcodeGroup1(ADDC_OPCODE, dst, src);
464 void addvlRegReg(RegisterID src, RegisterID dst)
466 uint16_t opc = getOpcodeGroup1(ADDV_OPCODE, dst, src);
470 void addlImm8r(int imm8, RegisterID dst)
474 uint16_t opc = getOpcodeGroup3(ADDIMM_OPCODE, dst, imm8)
    [all...]
X86Assembler.h 317 void addl_rr(RegisterID src, RegisterID dst)
319 m_formatter.oneByteOp(OP_ADD_EvGv, src, dst);
322 void addl_mr(int offset, RegisterID base, RegisterID dst)
324 m_formatter.oneByteOp(OP_ADD_GvEv, dst, base, offset);
332 void addl_ir(int imm, RegisterID dst)
335 m_formatter.oneByteOp(OP_GROUP1_EvIb, GROUP1_OP_ADD, dst);
338 m_formatter.oneByteOp(OP_GROUP1_EvIz, GROUP1_OP_ADD, dst);
355 void addq_rr(RegisterID src, RegisterID dst)
357 m_formatter.oneByteOp64(OP_ADD_EvGv, src, dst);
360 void addq_ir(int imm, RegisterID dst)
988 m_formatter.twoByteOp8(setccOpcode(cond), (GroupOpcodeID)0, dst); local
993 m_formatter.twoByteOp8(setccOpcode(ConditionE), (GroupOpcodeID)0, dst); local
1003 m_formatter.twoByteOp8(setccOpcode(ConditionNE), (GroupOpcodeID)0, dst); local
    [all...]
  /bionic/libc/netbsd/nameser/
ns_ttl.c 55 ns_format_ttl(u_long src, char *dst, size_t dstlen) {
56 char *odst = dst;
68 T(fmt1(weeks, 'W', &dst, &dstlen));
72 T(fmt1(days, 'D', &dst, &dstlen));
76 T(fmt1(hours, 'H', &dst, &dstlen));
80 T(fmt1(mins, 'M', &dst, &dstlen));
84 T(fmt1(secs, 'S', &dst, &dstlen));
96 return (dst - odst);
101 ns_parse_ttl(const char *src, u_long *dst) {
141 *dst = ttl
    [all...]
  /external/blktrace/
blkiomon.h 85 static inline void blkiomon_stat_merge(struct blkiomon_stat *dst,
88 histlog2_merge(&size_hist, dst->size_hist, src->size_hist);
89 histlog2_merge(&d2c_hist, dst->d2c_hist, src->d2c_hist);
90 minmax_merge(&dst->size_r, &src->size_r);
91 minmax_merge(&dst->size_w, &src->size_w);
92 minmax_merge(&dst->d2c_r, &src->d2c_r);
93 minmax_merge(&dst->d2c_w, &src->d2c_w);
94 minmax_merge(&dst->thrput_r, &src->thrput_r);
95 minmax_merge(&dst->thrput_w, &src->thrput_w);
96 dst->bidir += src->bidir
    [all...]
  /external/opencv/cxcore/src/
cxcmp.cpp 59 dst[x] = (uchar)-(_toggle_macro_(a2) <= a1 && \
74 dst[x] = (uchar)-f; \
92 dst[x] = (uchar)-f; \
114 dst[x] = (uchar)-f; \
124 uchar* dst, int step, CvSize size ) \
127 step3 /= sizeof(src3[0]); step /= sizeof(dst[0]); \
130 src3 += step3, dst += step ) \
144 dst[x] = (uchar)-(scalar[0] <= a1 && a1 < scalar[1]); \
155 dst[x] = (uchar)-f; \
168 dst[x] = (uchar)-f;
259 CvMat dststub, *dst = (CvMat*)dstarr; local
356 CvMat dststub, *dst = (CvMat*)dstarr; local
569 CvMat dststub, *dst = (CvMat*)dstarr; local
706 CvMat dststub, *dst = (CvMat*)dstarr; local
977 CvMat dststub, *dst = (CvMat*)dstarr; local
1077 CvMat dststub, *dst = (CvMat*)dstarr; local
1427 CvMat dststub, *dst = (CvMat*)dstarr; local
1501 CvMat dststub, *dst = (CvMat*)dstarr; local
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/
Xpoll.h 169 #define XFD_COPYSET(src,dst) { \
172 __XFDS_BITS((dst), __i__) = __XFDS_BITS((src), __i__); \
174 #define XFD_ANDSET(dst,b1,b2) { \
177 __XFDS_BITS((dst), __i__) = ((__XFDS_BITS((b1), __i__)) & (__XFDS_BITS((b2), __i__))); \
179 #define XFD_ORSET(dst,b1,b2) { \
182 __XFDS_BITS((dst), __i__) = ((__XFDS_BITS((b1), __i__)) | (__XFDS_BITS((b2), __i__))); \
184 #define XFD_UNSET(dst,b1) { \
187 __XFDS_BITS((dst), __i__) &= ~(__XFDS_BITS((b1), __i__)); \
208 #define XFD_COPYSET(src,dst) { \
210 FD_ZERO(dst); \
    [all...]
  /external/oprofile/libpopt/
poptconfig.c 100 /*@dependent@*/ char * dst; local
127 dst = buf = alloca(fileLength + 1);
135 *dst = '\0';
136 dst = buf;
137 while (*dst && isspace(*dst)) dst++;
138 if (*dst && *dst != '#')
139 configLine(con, dst);
    [all...]
  /dalvik/dx/src/com/android/dx/util/
Mutf8.java 86 * dst}, starting at {@code offset}.
88 public static void encode(byte[] dst, int offset, String s) {
93 dst[offset++] = (byte) ch;
95 dst[offset++] = (byte) (0xc0 | (0x1f & (ch >> 6)));
96 dst[offset++] = (byte) (0x80 | (0x3f & ch));
98 dst[offset++] = (byte) (0xe0 | (0x0f & (ch >> 12)));
99 dst[offset++] = (byte) (0x80 | (0x3f & (ch >> 6)));
100 dst[offset++] = (byte) (0x80 | (0x3f & ch));
  /external/kernel-headers/original/linux/
cpumask.h 27 * void cpus_and(dst, src1, src2) dst = src1 & src2 [intersection]
28 * void cpus_or(dst, src1, src2) dst = src1 | src2 [union]
29 * void cpus_xor(dst, src1, src2) dst = src1 ^ src2
30 * void cpus_andnot(dst, src1, src2) dst = src1 & ~src2
31 * void cpus_complement(dst, src) dst = ~sr
    [all...]

Completed in 401 milliseconds

<<11121314151617181920>>