Searched refs:dst (Results 226 - 250 of 1527) sorted by relevance

1234567891011>>

/external/opencv/cxcore/src/
H A Dcxarithm.cpp63 (dst)[i] = cast_macro( t0 ); \
64 (dst)[i+1] = cast_macro( t1 ); \
69 (dst)[i+2] = cast_macro( t0 ); \
70 (dst)[i+3] = cast_macro( t1 ); \
76 (dst)[i] = cast_macro( t0 ); \
83 type* dst, int step, CvSize size ), \
84 (src1, step1, src2, step2, dst, step, size) ) \
86 step1/=sizeof(src1[0]); step2/=sizeof(src2[0]); step/=sizeof(dst[0]); \
90 for( ; size.height--; src1 += step1, src2 += step2, dst += step ) \
93 (dst)[
287 CvMat dststub, *dst = (CvMat*)dstarr; local
538 CvMat dststub, *dst = (CvMat*)dstarr; local
763 CvMat dststub, *dst = (CvMat*)dstarr; local
1010 CvMat dststub, *dst = (CvMat*)dstarr; local
1323 CvMat dststub, *dst = (CvMat*)dstarr; local
1671 CvMat dststub, *dst = (CvMat*)dstarr; local
1869 icvAddWeighted_8u_fast_C1R( const uchar* src1, int step1, double alpha, const uchar* src2, int step2, double beta, double gamma, uchar* dst, int step, CvSize size ) argument
1987 CvMat dst_stub, *dst = (CvMat*)dstarr; local
[all...]
/external/webkit/Source/JavaScriptCore/jit/
H A DJITArithmetic32_64.cpp52 unsigned dst = currentInstruction[1].u.operand; local
60 emitStoreInt32(dst, regT0, (dst == src));
68 store32(regT1, tagFor(dst));
69 if (dst != src)
70 store32(regT0, payloadFor(dst));
77 unsigned dst = currentInstruction[1].u.operand; local
84 stubCall.call(dst);
365 unsigned dst = currentInstruction[1].u.operand; local
373 emitStoreInt32(dst, regT
387 unsigned dst = currentInstruction[1].u.operand; local
405 unsigned dst = currentInstruction[1].u.operand; local
444 unsigned dst = currentInstruction[1].u.operand; local
530 unsigned dst = currentInstruction[1].u.operand; local
553 unsigned dst = currentInstruction[1].u.operand; local
571 unsigned dst = currentInstruction[1].u.operand; local
594 unsigned dst = currentInstruction[1].u.operand; local
612 unsigned dst = currentInstruction[1].u.operand; local
635 unsigned dst = currentInstruction[1].u.operand; local
653 unsigned dst = currentInstruction[1].u.operand; local
665 unsigned dst = currentInstruction[1].u.operand; local
678 unsigned dst = currentInstruction[1].u.operand; local
695 unsigned dst = currentInstruction[1].u.operand; local
712 unsigned dst = currentInstruction[1].u.operand; local
729 unsigned dst = currentInstruction[1].u.operand; local
796 unsigned dst = currentInstruction[1].u.operand; local
839 emitAdd32Constant(unsigned dst, unsigned op, int32_t constant, ResultType opType) argument
868 unsigned dst = currentInstruction[1].u.operand; local
915 unsigned dst = currentInstruction[1].u.operand; local
948 emitSub32Constant(unsigned dst, unsigned op, int32_t constant, ResultType opType) argument
977 unsigned dst = currentInstruction[1].u.operand; local
1010 emitBinaryDoubleOp(OpcodeID opcodeID, unsigned dst, unsigned op1, unsigned op2, OperandTypes types, JumpList& notInt32Op1, JumpList& notInt32Op2, bool op1IsInRegisters, bool op2IsInRegisters) argument
1064 addJump(branchDouble(DoubleLessThanOrEqualOrUnordered, fpRegT0, fpRegT2), dst); local
1068 addJump(branchDouble(DoubleLessThan, fpRegT2, fpRegT0), dst); local
1072 addJump(branchDouble(DoubleLessThanOrEqual, fpRegT2, fpRegT0), dst); local
1076 addJump(branchDouble(DoubleLessThanOrUnordered, fpRegT0, fpRegT2), dst); local
1125 addJump(branchDouble(DoubleLessThanOrEqualOrUnordered, fpRegT1, fpRegT0), dst); local
1129 addJump(branchDouble(DoubleLessThan, fpRegT0, fpRegT1), dst); local
1133 addJump(branchDouble(DoubleLessThanOrUnordered, fpRegT1, fpRegT0), dst); local
1137 addJump(branchDouble(DoubleLessThanOrEqual, fpRegT0, fpRegT1), dst); local
1151 unsigned dst = currentInstruction[1].u.operand; local
1183 unsigned dst = currentInstruction[1].u.operand; local
1225 unsigned dst = currentInstruction[1].u.operand; local
1269 unsigned dst = currentInstruction[1].u.operand; local
1300 unsigned dst = currentInstruction[1].u.operand; local
1350 unsigned dst = currentInstruction[1].u.operand; local
1375 unsigned dst = currentInstruction[1].u.operand; local
[all...]
H A DSpecializedThunkJIT.h49 void loadDoubleArgument(int argument, FPRegisterID dst, RegisterID scratch) argument
52 m_failures.append(emitLoadDouble(src, dst, scratch));
55 void loadCellArgument(int argument, RegisterID dst) argument
58 m_failures.append(emitLoadJSCell(src, dst));
61 void loadJSStringArgument(int argument, RegisterID dst) argument
63 loadCellArgument(argument, dst);
64 m_failures.append(branchPtr(NotEqual, Address(dst, 0), TrustedImmPtr(m_globalData->jsStringVPtr)));
65 m_failures.append(branchTest32(NonZero, Address(dst, OBJECT_OFFSETOF(JSString, m_fiberCount))));
68 void loadInt32Argument(int argument, RegisterID dst, Jump& failTarget) argument
71 failTarget = emitLoadInt32(src, dst);
74 loadInt32Argument(int argument, RegisterID dst) argument
[all...]
/external/wpa_supplicant_6/wpa_supplicant/
H A Dctrl_iface_unix.c65 struct wpa_ctrl_dst *dst; local
67 dst = os_zalloc(sizeof(*dst));
68 if (dst == NULL)
70 os_memcpy(&dst->addr, from, sizeof(struct sockaddr_un));
71 dst->addrlen = fromlen;
72 dst->debug_level = MSG_INFO;
73 dst->next = priv->ctrl_dst;
74 priv->ctrl_dst = dst;
86 struct wpa_ctrl_dst *dst, *pre local
117 struct wpa_ctrl_dst *dst; local
441 struct wpa_ctrl_dst *dst, *prev; local
514 struct wpa_ctrl_dst *dst, *next; local
[all...]
/external/linux-tools-perf/util/
H A Dcolor.c42 void color_parse(const char *value, const char *var, char *dst) argument
44 color_parse_mem(value, strlen(value), var, dst);
48 char *dst)
57 strcpy(dst, PERF_COLOR_RESET);
98 *dst++ = '\033';
99 *dst++ = '[';
101 *dst++ = '0' + attr;
106 *dst++ = ';';
108 *dst++ = '3';
109 *dst
47 color_parse_mem(const char *value, int value_len, const char *var, char *dst) argument
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/
H A DSDL_stretch.c155 void name(type *src, int src_w, type *dst, int dst_w) \
168 *dst++ = pixel; \
177 void copy_row3(Uint8 *src, int src_w, Uint8 *dst, int dst_w)
192 *dst++ = pixel[0];
193 *dst++ = pixel[1];
194 *dst++ = pixel[2];
203 SDL_Surface *dst, SDL_Rect *dstrect)
220 const int bpp = dst->format->BytesPerPixel;
222 if ( src->format->BitsPerPixel != dst->format->BitsPerPixel ) {
244 ((dstrect->x+dstrect->w) > dst
202 SDL_SoftStretch(SDL_Surface *src, SDL_Rect *srcrect, SDL_Surface *dst, SDL_Rect *dstrect) argument
[all...]
/external/opencv/cv/src/
H A Dcvmorph.cpp91 static void icvErodeRectRow_8u( const uchar* src, uchar* dst, void* params );
92 static void icvErodeRectRow_16u( const ushort* src, ushort* dst, void* params );
93 static void icvErodeRectRow_32f( const int* src, int* dst, void* params );
94 static void icvDilateRectRow_8u( const uchar* src, uchar* dst, void* params );
95 static void icvDilateRectRow_16u( const ushort* src, ushort* dst, void* params );
96 static void icvDilateRectRow_32f( const int* src, int* dst, void* params );
98 static void icvErodeRectCol_8u( const uchar** src, uchar* dst, int dst_step,
100 static void icvErodeRectCol_16u( const ushort** src, ushort* dst, int dst_step,
102 static void icvErodeRectCol_32f( const int** src, int* dst, int dst_step,
104 static void icvDilateRectCol_8u( const uchar** src, uchar* dst, in
826 CvMat dststub, *dst = (CvMat*)dstarr; local
1109 cvErode( const void* src, void* dst, IplConvKernel* element, int iterations ) argument
1116 cvDilate( const void* src, void* dst, IplConvKernel* element, int iterations ) argument
1123 cvMorphologyEx( const void* src, void* dst, void* temp, IplConvKernel* element, int op, int iterations ) argument
[all...]
/external/elfutils/libelf/
H A Dgelf_getverdaux.c63 gelf_getverdaux (data, offset, dst)
66 GElf_Verdaux *dst;
96 result = (GElf_Verdaux *) memcpy (dst, (char *) data->d_buf + offset,
H A Dgelf_getverdef.c63 gelf_getverdef (data, offset, dst)
66 GElf_Verdef *dst;
96 result = (GElf_Verdef *) memcpy (dst, (char *) data->d_buf + offset,
H A Dgelf_getvernaux.c63 gelf_getvernaux (data, offset, dst)
66 GElf_Vernaux *dst;
99 result = (GElf_Vernaux *) memcpy (dst, (char *) data->d_buf + offset,
H A Dgelf_getverneed.c63 gelf_getverneed (data, offset, dst)
66 GElf_Verneed *dst;
99 result = (GElf_Verneed *) memcpy (dst, (char *) data->d_buf + offset,
/external/libvpx/vpx_scale/generic/
H A Dvpxscale.c584 * YV12_BUFFER_CONFIG *dst : Pointer to buffer to hold scaled frame.
606 YV12_BUFFER_CONFIG *dst,
622 (unsigned char *) dst->y_buffer, dst->y_stride, dw, dh,
625 if (dw < (int)dst->y_width)
627 duck_memset(dst->y_buffer + i * dst->y_stride + dw - 1, dst->y_buffer[i*dst->y_stride+dw-2], dst
603 vp8_scale_frame( YV12_BUFFER_CONFIG *src, YV12_BUFFER_CONFIG *dst, unsigned char *temp_area, unsigned char temp_height, unsigned int hscale, unsigned int hratio, unsigned int vscale, unsigned int vratio, unsigned int interlaced ) argument
[all...]
/external/skia/include/core/
H A DSkXfermode.h28 virtual void xfer32(SkPMColor dst[], const SkPMColor src[], int count,
30 virtual void xfer16(uint16_t dst[], const SkPMColor src[], int count,
32 virtual void xfer4444(uint16_t dst[], const SkPMColor src[], int count,
34 virtual void xferA8(SkAlpha dst[], const SkPMColor src[], int count,
44 kDC_Coeff, /** dst color */
45 kIDC_Coeff, /** inverse dst color (i.e. 1 - dc) */
48 kDA_Coeff, /** dst alpha */
49 kIDA_Coeff, /** inverse dst alpha (i.e. 1 - da) */
56 dst accordingly.
65 dst zer
[all...]
/external/skia/src/core/
H A DSkBlitMask.h25 * Function pointer that blits the mask into a device (dst) colorized
29 typedef void (*ColorProc)(void* dst, size_t dstRB,
34 * Function pointer that blits a row of mask(lcd16) into a row of dst
38 typedef void (*BlitLCD16RowProc)(SkPMColor dst[], const uint16_t src[],
44 * onto a row of dst colors. The RowFactory that returns this function ptr
45 * will have been told the formats for the mask and the dst.
47 typedef void (*RowProc)(void* dst, const void* mask,
H A DSkBlitter_4444.cpp18 static inline SkPMColor SkBlendARGB4444(SkPMColor16 src, SkPMColor16 dst, argument
26 uint32_t dst32 = SkExpand_4444(dst) * dst_scale;
92 static void src_over_4444(SkPMColor16 dst[], SkPMColor16 color, argument
96 *dst = color + SkAlphaMulQ4(*dst, invScale);
97 dst++;
98 *dst = other + SkAlphaMulQ4(*dst, invScale);
99 dst++;
102 *dst
111 src_over_4444x(SkPMColor16 dst[], uint32_t color, uint32_t other, unsigned invScale, int count) argument
[all...]
/external/skia/src/effects/
H A DSkCornerPathEffect.cpp38 bool SkCornerPathEffect::filterPath(SkPath* dst, const SkPath& src, argument
63 dst->lineTo(lastCorner);
70 dst->moveTo(pts[0]);
78 dst->moveTo(moveTo + step);
81 dst->quadTo(pts[0].fX, pts[0].fY, pts[0].fX + step.fX,
85 dst->lineTo(pts[1].fX - step.fX, pts[1].fY - step.fY);
94 dst->moveTo(pts[0]);
97 dst->quadTo(pts[1], pts[2]);
103 dst->moveTo(pts[0]);
107 dst
[all...]
H A DSkTableMaskFilter.cpp28 bool SkTableMaskFilter::filterMask(SkMask* dst, const SkMask& src, argument
34 dst->fBounds = src.fBounds;
35 dst->fRowBytes = SkAlign4(dst->fBounds.width());
36 dst->fFormat = SkMask::kA8_Format;
37 dst->fImage = NULL;
40 dst->fImage = SkMask::AllocImage(dst->computeImageSize());
43 uint8_t* dstP = dst->fImage;
45 int dstWidth = dst
[all...]
/external/tcpdump/missing/
H A Dinet_ntop.c64 inet_ntop_v4 (const void *src, char *dst, size_t size) argument
70 const char *orig_dst = dst;
81 *dst++ = digits[n / 100];
86 *dst++ = digits[n / 10];
90 *dst++ = digits[n];
92 *dst++ = '.';
94 *dst++ = '\0';
103 inet_ntop_v6 (const u_char *src, char *dst, size_t size) argument
199 return strcpy (dst, tmp);
206 inet_ntop(int af, const void *src, char *dst, size_ argument
[all...]
/external/valgrind/main/memcheck/tests/
H A Dsh-mem-random.c128 U4 ty, src, dst; local
132 dst = (randomU4() >> 3) % N_BYTES;
135 *(U1*)(arr+dst) = *(U1*)(arr+src);
140 if (src+2 >= N_BYTES || dst+2 >= N_BYTES)
142 *(U2*)(arr+dst) = *(U2*)(arr+src);
147 if (src+4 >= N_BYTES || dst+4 >= N_BYTES)
149 *(U4*)(arr+dst) = *(U4*)(arr+src);
154 if (src+8 >= N_BYTES || dst+8 >= N_BYTES)
156 *(U8*)(arr+dst) = *(U8*)(arr+src);
164 if (src+4 >= N_BYTES || dst
[all...]
/external/wpa_supplicant_8/wpa_supplicant/
H A Dgas_query.h32 int gas_query_req(struct gas_query *gas, const u8 *dst, int freq,
34 void (*cb)(void *ctx, const u8 *dst, u8 dialog_token,
39 void gas_query_cancel(struct gas_query *gas, const u8 *dst, u8 dialog_token);
H A Doffchannel.h14 const u8 *dst, const u8 *src, const u8 *bssid,
17 unsigned int freq, const u8 *dst,
30 struct wpa_supplicant *wpa_s, const u8 *dst, const u8 *data,
/external/aac/libSBRenc/src/
H A Dsbr_misc.h101 void FDKsbrEnc_AddVecLeft (INT *dst, INT *length_dst, INT *src, INT length_src);
102 void FDKsbrEnc_AddVecRight (INT *dst, INT *length_vector_dst, INT *src, INT length_src);
/external/chromium/chrome/browser/ui/gtk/
H A Dnine_box.h35 // Render the NineBox to |dst|.
37 void RenderToWidget(GtkWidget* dst) const;
40 void RenderToWidgetWithOpacity(GtkWidget* dst, double opacity) const;
42 // Render the top row of images to |dst| between |x1| and |x1| + |width|.
/external/dnsmasq/contrib/port-forward/
H A Ddnsmasq-portforward53 dst=${port/*:/}
55 ${IPTABLES} -t nat -D PREROUTING -p $protocol --destination-port $src -j DNAT --to-destination ${3}:$dst
57 ${IPTABLES} -t nat -A PREROUTING -p $protocol --destination-port $src -j DNAT --to-destination ${3}:$dst
61 echo " DNAT $protocol $src to ${3}:$dst ${verb}." >>${LOGFILE}
/external/dropbear/libtomcrypt/
H A Dfilter.pl5 $dst = shift;
8 open(SRC,"<$dst");

Completed in 1117 milliseconds

1234567891011>>