Searched refs:dst (Results 101 - 125 of 1527) sorted by relevance

1234567891011>>

/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/cipher/
H A DNullCipher.java35 public void transformBlock(byte[] src, int srcoff, byte[] dst, int dstoff) argument
37 System.arraycopy(src, srcoff, dst, dstoff, blockSize);
/external/llvm/lib/Support/
H A Dregstrlcpy.c24 * Copy src to string dst of size siz. At most siz-1 characters
29 llvm_strlcpy(char *dst, const char *src, size_t siz) argument
31 char *d = dst;
43 /* Not enough room in dst, add NUL and traverse rest of src */
46 *d = '\0'; /* NUL-terminate dst */
/external/openssh/openbsd-compat/
H A Dstrlcpy.c28 * Copy src to string dst of size siz. At most siz-1 characters
33 strlcpy(char *dst, const char *src, size_t siz) argument
35 char *d = dst;
47 /* Not enough room in dst, add NUL and traverse rest of src */
50 *d = '\0'; /* NUL-terminate dst */
/external/regex-re2/util/
H A Dstringprintf.cc9 static void StringAppendV(string* dst, const char* format, va_list ap) { argument
23 dst->append(space, result);
46 dst->append(buf, result);
63 void SStringPrintf(string* dst, const char* format, ...) { argument
66 dst->clear();
67 StringAppendV(dst, format, ap);
71 void StringAppendF(string* dst, const char* format, ...) { argument
74 StringAppendV(dst, format, ap);
/external/v8/src/ia32/
H A Dassembler-ia32.h684 void pop(Register dst);
685 void pop(const Operand& dst);
691 void mov_b(Register dst, Register src) { mov_b(dst, Operand(src)); }
692 void mov_b(Register dst, const Operand& src);
693 void mov_b(Register dst, int8_t imm8) { mov_b(Operand(dst), imm8); }
694 void mov_b(const Operand& dst, int8_t imm8);
695 void mov_b(const Operand& dst, Register src);
697 void mov_w(Register dst, cons
[all...]
/external/skia/src/core/
H A DSkXfermode.cpp69 static SkPMColor clear_modeproc(SkPMColor src, SkPMColor dst) { argument
74 static SkPMColor src_modeproc(SkPMColor src, SkPMColor dst) { argument
79 static SkPMColor dst_modeproc(SkPMColor src, SkPMColor dst) { argument
80 return dst;
84 static SkPMColor srcover_modeproc(SkPMColor src, SkPMColor dst) { argument
86 // this is the old, more-correct way, but it doesn't guarantee that dst==255
88 return src + SkAlphaMulQ(dst, SkAlpha255To256(255 - SkGetPackedA32(src)));
90 // this is slightly faster, but more importantly guarantees that dst==255
92 return src + SkAlphaMulQ(dst, 256 - SkGetPackedA32(src));
97 static SkPMColor dstover_modeproc(SkPMColor src, SkPMColor dst) { argument
104 srcin_modeproc(SkPMColor src, SkPMColor dst) argument
109 dstin_modeproc(SkPMColor src, SkPMColor dst) argument
114 srcout_modeproc(SkPMColor src, SkPMColor dst) argument
119 dstout_modeproc(SkPMColor src, SkPMColor dst) argument
124 srcatop_modeproc(SkPMColor src, SkPMColor dst) argument
139 dstatop_modeproc(SkPMColor src, SkPMColor dst) argument
154 xor_modeproc(SkPMColor src, SkPMColor dst) argument
172 plus_modeproc(SkPMColor src, SkPMColor dst) argument
181 multiply_modeproc(SkPMColor src, SkPMColor dst) argument
193 screen_modeproc(SkPMColor src, SkPMColor dst) argument
212 overlay_modeproc(SkPMColor src, SkPMColor dst) argument
234 darken_modeproc(SkPMColor src, SkPMColor dst) argument
256 lighten_modeproc(SkPMColor src, SkPMColor dst) argument
280 colordodge_modeproc(SkPMColor src, SkPMColor dst) argument
315 colorburn_modeproc(SkPMColor src, SkPMColor dst) argument
340 hardlight_modeproc(SkPMColor src, SkPMColor dst) argument
370 softlight_modeproc(SkPMColor src, SkPMColor dst) argument
385 difference_modeproc(SkPMColor src, SkPMColor dst) argument
401 exclusion_modeproc(SkPMColor src, SkPMColor dst) argument
449 asCoeff(Coeff* src, Coeff* dst) argument
457 xferColor(SkPMColor src, SkPMColor dst) argument
462 xfer32(SkPMColor* SK_RESTRICT dst, const SkPMColor* SK_RESTRICT src, int count, const SkAlpha* SK_RESTRICT aa) argument
486 xfer16(uint16_t* dst, const SkPMColor* SK_RESTRICT src, int count, const SkAlpha* SK_RESTRICT aa) argument
511 xfer4444(SkPMColor16* SK_RESTRICT dst, const SkPMColor* SK_RESTRICT src, int count, const SkAlpha* SK_RESTRICT aa) argument
537 xferA8(SkAlpha* SK_RESTRICT dst, const SkPMColor src[], int count, const SkAlpha* SK_RESTRICT aa) argument
566 xfer32(SkPMColor* SK_RESTRICT dst, const SkPMColor* SK_RESTRICT src, int count, const SkAlpha* SK_RESTRICT aa) argument
594 xfer16(uint16_t* SK_RESTRICT dst, const SkPMColor* SK_RESTRICT src, int count, const SkAlpha* SK_RESTRICT aa) argument
623 xfer4444(SkPMColor16* SK_RESTRICT dst, const SkPMColor* SK_RESTRICT src, int count, const SkAlpha* SK_RESTRICT aa) argument
652 xferA8(SkAlpha* SK_RESTRICT dst, const SkPMColor* SK_RESTRICT src, int count, const SkAlpha* SK_RESTRICT aa) argument
789 xfer32(SkPMColor* SK_RESTRICT dst, const SkPMColor* SK_RESTRICT, int count, const SkAlpha* SK_RESTRICT aa) argument
807 xferA8(SkAlpha* SK_RESTRICT dst, const SkPMColor* SK_RESTRICT, int count, const SkAlpha* SK_RESTRICT aa) argument
846 xfer32(SkPMColor* SK_RESTRICT dst, const SkPMColor* SK_RESTRICT src, int count, const SkAlpha* SK_RESTRICT aa) argument
865 xferA8(SkAlpha* SK_RESTRICT dst, const SkPMColor* SK_RESTRICT src, int count, const SkAlpha* SK_RESTRICT aa) argument
908 xfer32(SkPMColor* SK_RESTRICT dst, const SkPMColor* SK_RESTRICT src, int count, const SkAlpha* SK_RESTRICT aa) argument
948 xfer32(SkPMColor* SK_RESTRICT dst, const SkPMColor* SK_RESTRICT src, int count, const SkAlpha* SK_RESTRICT aa) argument
1000 ModeAsCoeff(Mode mode, Coeff* src, Coeff* dst) argument
1034 AsCoeff(SkXfermode* xfer, Coeff* src, Coeff* dst) argument
1058 src_modeproc16_255(SkPMColor src, uint16_t dst) argument
1063 dst_modeproc16(SkPMColor src, uint16_t dst) argument
1067 srcover_modeproc16_0(SkPMColor src, uint16_t dst) argument
1072 srcover_modeproc16_255(SkPMColor src, uint16_t dst) argument
1077 dstover_modeproc16_0(SkPMColor src, uint16_t dst) argument
1082 dstover_modeproc16_255(SkPMColor src, uint16_t dst) argument
1087 srcin_modeproc16_255(SkPMColor src, uint16_t dst) argument
1092 dstin_modeproc16_255(SkPMColor src, uint16_t dst) argument
1097 dstout_modeproc16_0(SkPMColor src, uint16_t dst) argument
1102 srcatop_modeproc16(SkPMColor src, uint16_t dst) argument
1111 srcatop_modeproc16_0(SkPMColor src, uint16_t dst) argument
1116 srcatop_modeproc16_255(SkPMColor src, uint16_t dst) argument
1121 dstatop_modeproc16_255(SkPMColor src, uint16_t dst) argument
1141 darken_modeproc16_0(SkPMColor src, uint16_t dst) argument
1146 darken_modeproc16_255(SkPMColor src, uint16_t dst) argument
1154 lighten_modeproc16_0(SkPMColor src, uint16_t dst) argument
1159 lighten_modeproc16_255(SkPMColor src, uint16_t dst) argument
[all...]
H A DSkSpriteBlitter_RGB16.cpp16 #define D16_S32A_Opaque_Pixel(dst, sc) \
19 *dst = SkSrcOver32To16(sc, *dst); \
23 static inline void D16_S32A_Blend_Pixel_helper(uint16_t* dst, SkPMColor sc, argument
25 uint16_t dc = *dst;
42 *dst = SkPackRGB16(dr, dg, db);
45 #define D16_S32A_Blend_Pixel(dst, sc, src_scale) \
46 do { if (sc) D16_S32A_Blend_Pixel_helper(dst, sc, src_scale); } while (0)
58 uint16_t* SK_RESTRICT dst = fDevice->getAddr16(x, y); local
65 memcpy(dst, sr
171 blitrow_d16_si8(uint16_t* SK_RESTRICT dst, const uint8_t* SK_RESTRICT src, int count, const uint16_t* SK_RESTRICT ctable) argument
285 uint16_t* SK_RESTRICT dst = fDevice->getAddr16(x, y); local
[all...]
/external/opencv/cv/src/
H A Dcvcolor.cpp93 const void* src, int srcstep, void* dst, int dststep, CvSize size );
96 const void* src, int srcstep, void* dst, int dststep,
100 const void* src, int srcstep, void* dst, int dststep,
104 const void* src, int srcstep, void* dst, int dststep,
114 arrtype* dst, int dststep, \
120 dststep /= sizeof(dst[0]); \
124 for( ; size.height--; src += srcstep, dst += dststep ) \
129 dst[i] = t0; \
130 dst[i+1] = t1; \
131 dst[
211 icvBGR5x52BGRx_8u_C2CnR( const uchar* src, int srcstep, uchar* dst, int dststep, CvSize size, int dst_cn, int blue_idx, int green_bits ) argument
249 icvBGRx2BGR5x5_8u_CnC2R( const uchar* src, int srcstep, uchar* dst, int dststep, CvSize size, int src_cn, int blue_idx, int green_bits ) argument
357 icvBGRx2ABC_IPP_8u_CnC3R( const uchar* src, int srcstep, uchar* dst, int dststep, CvSize size, int src_cn, int blue_idx, CvColorCvtFunc0 ipp_func ) argument
518 icvBGR5x52Gray_8u_C2C1R( const uchar* src, int srcstep, uchar* dst, int dststep, CvSize size, int green_bits ) argument
550 icvGray2BGR5x5_8u_C1C2R( const uchar* src, int srcstep, uchar* dst, int dststep, CvSize size, int green_bits ) argument
578 icvBGRx2Gray_8u_CnC1R( const uchar* src, int srcstep, uchar* dst, int dststep, CvSize size, int src_cn, int blue_idx ) argument
627 icvBGRx2Gray_16u_CnC1R( const ushort* src, int srcstep, ushort* dst, int dststep, CvSize size, int src_cn, int blue_idx ) argument
650 icvBGRx2Gray_32f_CnC1R( const float* src, int srcstep, float* dst, int dststep, CvSize size, int src_cn, int blue_idx ) argument
968 icvABC2BGRx_8u_C3CnR( const uchar* src, int srcstep, uchar* dst, int dststep, CvSize size, int dst_cn, int blue_idx, CvColorCvtFunc2 cvtfunc_32f, const float* pre_coeffs, int postscale ) argument
1040 icvBGRx2ABC_8u_CnC3R( const uchar* src, int srcstep, uchar* dst, int dststep, CvSize size, int src_cn, int blue_idx, CvColorCvtFunc2 cvtfunc_32f, int prescale, const float* post_coeffs ) argument
1152 icvBGRx2HSV_8u_CnC3R( const uchar* src, int srcstep, uchar* dst, int dststep, CvSize size, int src_cn, int blue_idx ) argument
1254 icvBGRx2HSV_32f_CnC3R( const float* src, int srcstep, float* dst, int dststep, CvSize size, int src_cn, int blue_idx ) argument
1302 icvHSV2BGRx_32f_C3CnR( const float* src, int srcstep, float* dst, int dststep, CvSize size, int dst_cn, int blue_idx ) argument
1357 icvHSV2BGRx_8u_C3CnR( const uchar* src, int srcstep, uchar* dst, int dststep, CvSize size, int dst_cn, int blue_idx ) argument
1420 icvBGRx2HLS_32f_CnC3R( const float* src, int srcstep, float* dst, int dststep, CvSize size, int src_cn, int blue_idx ) argument
2241 CvMat dststub, *dst = (CvMat*)dstarr; local
[all...]
/external/libvpx/vp8/decoder/
H A Didct_blk.c25 unsigned char *dst, int stride, char *eobs, short *dc)
34 vp8_dequant_dc_idct_add_c (q, dq, pre, dst, 16, stride, dc[0]);
36 vp8_dc_only_idct_add_c (dc[0], pre, dst, 16, stride);
40 dst += 4;
45 dst += 4*stride - 16;
51 unsigned char *dst, int stride, char *eobs)
60 vp8_dequant_idct_add_c (q, dq, pre, dst, 16, stride);
63 vp8_dc_only_idct_add_c (q[0]*dq[0], pre, dst, 16, stride);
69 dst += 4;
73 dst
23 vp8_dequant_dc_idct_add_y_block_c(short *q, short *dq, unsigned char *pre, unsigned char *dst, int stride, char *eobs, short *dc) argument
49 vp8_dequant_idct_add_y_block_c(short *q, short *dq, unsigned char *pre, unsigned char *dst, int stride, char *eobs) argument
[all...]
/external/openssl/crypto/md5/asm/
H A Dmd5-x86_64.pl15 # dst = x + ((dst + F(x,y,z) + X[k] + T_i) <<< s)
21 my ($pos, $dst, $x, $y, $z, $k_next, $T_i, $s) = @_;
26 lea $T_i($dst,%r10d),$dst /* Const + dst + ... */
30 add %r11d, $dst /* dst += ... */
31 rol \$$s, $dst /* dst <<<
[all...]
/external/opencv/cxcore/src/
H A Dcxcopy.cpp58 uchar* dst, int dststep, CvSize size ),
59 (src, srcstep, dst, dststep, size) )
61 for( ; size.height--; src += srcstep, dst += dststep )
62 memcpy( dst, src, size.width );
69 icvSet_8u_C1R( uchar* dst, int dst_step, CvSize size, argument
73 uchar* dst_limit = dst + size.width;
77 while( dst + copy_len <= dst_limit )
79 memcpy( dst, scalar, copy_len );
80 dst += copy_len;
83 memcpy( dst, scala
57 IPCVAPI_IMPL( CvStatus, icvCopy_8u_C1R, ( const uchar* src, int srcstep, uchar* dst, int dststep, CvSize size ), (src, srcstep, dst, dststep, size) ) argument
297 CvMat dststub, *dst = (CvMat*)dstarr; local
660 icvSetZero_8u_C1R( uchar* dst, int dststep, CvSize size ) argument
837 icvFlipVert_8u_C1R( const uchar* src, int srcstep, uchar* dst, int dststep, CvSize size ) argument
912 CvMat dstub, *dst = (CvMat*)dstarr; local
996 CvMat dstub, *dst = (CvMat*)dstarr; local
[all...]
/external/bison/lib/
H A Dabitset.c106 abitset_set (bitset dst ATTRIBUTE_UNUSED, bitset_bindex bitno ATTRIBUTE_UNUSED)
117 abitset_reset (bitset dst ATTRIBUTE_UNUSED,
303 abitset_unused_clear (bitset dst) argument
307 last_bit = BITSET_SIZE_ (dst) % BITSET_WORD_BITS;
309 ABITSET_WORDS (dst)[dst->b.csize - 1] &=
315 abitset_ones (bitset dst) argument
317 bitset_word *dstp = ABITSET_WORDS (dst);
320 bytes = sizeof (bitset_word) * dst->b.csize;
323 abitset_unused_clear (dst);
328 abitset_zero(bitset dst) argument
340 abitset_empty_p(bitset dst) argument
354 abitset_copy1(bitset dst, bitset src) argument
367 abitset_not(bitset dst, bitset src) argument
381 abitset_equal_p(bitset dst, bitset src) argument
396 abitset_subset_p(bitset dst, bitset src) argument
411 abitset_disjoint_p(bitset dst, bitset src) argument
427 abitset_and(bitset dst, bitset src1, bitset src2) argument
441 abitset_and_cmp(bitset dst, bitset src1, bitset src2) argument
465 abitset_andn(bitset dst, bitset src1, bitset src2) argument
479 abitset_andn_cmp(bitset dst, bitset src1, bitset src2) argument
503 abitset_or(bitset dst, bitset src1, bitset src2) argument
517 abitset_or_cmp(bitset dst, bitset src1, bitset src2) argument
541 abitset_xor(bitset dst, bitset src1, bitset src2) argument
555 abitset_xor_cmp(bitset dst, bitset src1, bitset src2) argument
579 abitset_and_or(bitset dst, bitset src1, bitset src2, bitset src3) argument
594 abitset_and_or_cmp(bitset dst, bitset src1, bitset src2, bitset src3) argument
619 abitset_andn_or(bitset dst, bitset src1, bitset src2, bitset src3) argument
634 abitset_andn_or_cmp(bitset dst, bitset src1, bitset src2, bitset src3) argument
659 abitset_or_and(bitset dst, bitset src1, bitset src2, bitset src3) argument
674 abitset_or_and_cmp(bitset dst, bitset src1, bitset src2, bitset src3) argument
699 abitset_copy(bitset dst, bitset src) argument
[all...]
/external/chromium/sdch/open-vcdiff/
H A Dinstall-sh95 dst=
237 dst=$src
238 dstdir=$dst
256 dst=$dst_arg
258 case $dst in
259 -*) dst=./$dst;;
264 if test -d "$dst"; then
269 dstdir=$dst
270 dst
[all...]
/external/elfutils/config/
H A Dinstall-sh95 dst=
237 dst=$src
238 dstdir=$dst
256 dst=$dst_arg
258 case $dst in
259 -*) dst=./$dst;;
264 if test -d "$dst"; then
269 dstdir=$dst
270 dst
[all...]
/external/expat/conftools/
H A Dinstall-sh95 dst=
237 dst=$src
238 dstdir=$dst
256 dst=$dst_arg
258 case $dst in
259 -*) dst=./$dst;;
264 if test -d "$dst"; then
269 dstdir=$dst
270 dst
[all...]
/external/libmtp/
H A Dinstall-sh95 dst=
237 dst=$src
238 dstdir=$dst
256 dst=$dst_arg
258 case $dst in
259 -*) dst=./$dst;;
264 if test -d "$dst"; then
269 dstdir=$dst
270 dst
[all...]
/external/libpng/
H A Dinstall-sh95 dst=
237 dst=$src
238 dstdir=$dst
256 dst=$dst_arg
258 case $dst in
259 -*) dst=./$dst;;
264 if test -d "$dst"; then
269 dstdir=$dst
270 dst
[all...]
/external/libusb-compat/
H A Dinstall-sh95 dst=
237 dst=$src
238 dstdir=$dst
256 dst=$dst_arg
258 case $dst in
259 -*) dst=./$dst;;
264 if test -d "$dst"; then
269 dstdir=$dst
270 dst
[all...]
/external/openfst/
H A Dinstall-sh95 dst=
237 dst=$src
238 dstdir=$dst
256 dst=$dst_arg
258 case $dst in
259 -*) dst=./$dst;;
264 if test -d "$dst"; then
269 dstdir=$dst
270 dst
[all...]
/external/protobuf/gtest/build-aux/
H A Dinstall-sh95 dst=
237 dst=$src
238 dstdir=$dst
256 dst=$dst_arg
258 case $dst in
259 -*) dst=./$dst;;
264 if test -d "$dst"; then
269 dstdir=$dst
270 dst
[all...]
/external/protobuf/
H A Dinstall-sh95 dst=
237 dst=$src
238 dstdir=$dst
256 dst=$dst_arg
258 case $dst in
259 -*) dst=./$dst;;
264 if test -d "$dst"; then
269 dstdir=$dst
270 dst
[all...]
/external/stressapptest/
H A Dinstall-sh95 dst=
237 dst=$src
238 dstdir=$dst
256 dst=$dst_arg
258 case $dst in
259 -*) dst=./$dst;;
264 if test -d "$dst"; then
269 dstdir=$dst
270 dst
[all...]
/external/qemu/telephony/
H A Dsim_card.c193 assumes 'dst' is NULL or properly sized.
196 sim_file_to_hex( SimFile file, bytes_t dst )
207 if (dst) {
210 memcpy(dst, "0000", 4); /* bytes 1-2 are RFU */
211 dst += 4;
219 gsm_hex_from_short( dst, file_size );
220 dst += 4;
223 gsm_hex_from_short( dst, file->any.id );
224 dst += 4;
227 dst[
[all...]
/external/opencv/cvaux/src/
H A Dcvlines.cpp46 uchar * dst, int *dst_num, CvSize src_size, CvPoint start, CvPoint end )
52 if( !src || !dst || (src_size.width | src_size.height) < 0 ||
85 for( i = dx; i >= 0; i -= 2, dst += 3 )
89 dst[0] = src[0];
90 dst[1] = src[1];
91 dst[2] = src[2];
108 for( i = dy; i >= 0; i -= 2, dst += 3 )
112 dst[0] = src[0];
113 dst[1] = src[1];
114 dst[
196 icvPreWarpImage8uC3R( int numLines, uchar * src, int src_step, uchar * dst, int *dst_nums, CvSize src_size, int *scanlines ) argument
242 icvPostWarpImage8uC3R( int numLines, uchar * src, int *src_nums, uchar * dst, int dst_step, CvSize dst_size, int *scanlines ) argument
323 uchar *src = img, *dst = img + img_step; local
405 cvPreWarpImage( int numLines, IplImage * img, uchar * dst, int *dst_nums, int *scanlines ) argument
[all...]
/external/chromium/base/
H A Dstringprintf.cc39 static void StringAppendVT(StringType* dst, argument
58 dst->append(stack_buf, result);
102 dst->append(&mem_buf[0], result);
134 const std::string& SStringPrintf(std::string* dst, const char* format, ...) { argument
137 dst->clear();
138 StringAppendV(dst, format, ap);
140 return *dst;
143 const std::wstring& SStringPrintf(std::wstring* dst, argument
147 dst->clear();
148 StringAppendV(dst, forma
153 StringAppendF(std::string* dst, const char* format, ...) argument
160 StringAppendF(std::wstring* dst, const wchar_t* format, ...) argument
167 StringAppendV(std::string* dst, const char* format, va_list ap) argument
171 StringAppendV(std::wstring* dst, const wchar_t* format, va_list ap) argument
[all...]

Completed in 854 milliseconds

1234567891011>>