Searched refs:dst (Results 251 - 275 of 3914) sorted by relevance

<<11121314151617181920>>

/external/mesa3d/src/gallium/auxiliary/util/
H A Du_framebuffer.h37 util_framebuffer_state_equal(const struct pipe_framebuffer_state *dst,
41 util_copy_framebuffer_state(struct pipe_framebuffer_state *dst,
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_tile_image.h33 lp_tiled_to_linear(const void *src, void *dst,
42 lp_linear_to_tiled(const void *src, void *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/skia/src/opts/
H A DSkBlitMask_opts_arm_neon.h9 extern void SkBlitLCD16OpaqueRow_neon(SkPMColor dst[], const uint16_t src[],
13 extern void SkBlitLCD16Row_neon(SkPMColor dst[], const uint16_t src[],
/external/chromium_org/v8/src/x87/
H A Dassembler-x87.h596 void pop(Register dst);
597 void pop(const Operand& dst);
603 void mov_b(Register dst, Register src) { mov_b(dst, Operand(src)); }
604 void mov_b(Register dst, const Operand& src);
605 void mov_b(Register dst, int8_t imm8) { mov_b(Operand(dst), imm8); }
606 void mov_b(const Operand& dst, int8_t imm8);
607 void mov_b(const Operand& dst, Register src);
609 void mov_w(Register dst, cons
[all...]
/external/chromium_org/media/formats/webm/
H A Dwebm_video_client.cc104 int64* dst = NULL; local
108 dst = &pixel_width_;
111 dst = &pixel_height_;
114 dst = &crop_top_;
117 dst = &crop_bottom_;
120 dst = &crop_left_;
123 dst = &crop_right_;
126 dst = &display_width_;
129 dst = &display_height_;
132 dst
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/x86/
H A Didct_blk_mmx.c28 unsigned char *dst, int stride, char *eobs)
35 vp8_dequant_idct_add_mmx (q, dq, dst, stride);
38 vp8_dc_only_idct_add_mmx (q[0]*dq[0], dst, stride, dst, stride);
43 vp8_dequant_idct_add_mmx (q+16, dq, dst+4, stride);
46 vp8_dc_only_idct_add_mmx (q[16]*dq[0], dst+4, stride,
47 dst+4, stride);
52 vp8_dequant_idct_add_mmx (q+32, dq, dst+8, stride);
55 vp8_dc_only_idct_add_mmx (q[32]*dq[0], dst+8, stride,
56 dst
26 vp8_dequant_idct_add_y_block_mmx(short *q, short *dq, unsigned char *dst, int stride, char *eobs) argument
[all...]
/external/chromium_org/third_party/libwebp/dsp/
H A Dyuv_mips32.c27 uint8_t* dst, int len) { \
44 dst[R] = r; \
45 dst[G] = g; \
46 dst[B] = b; \
47 if (A) dst[A] = 0xff; \
51 dst[R + XSTEP] = r; \
52 dst[G + XSTEP] = g; \
53 dst[B + XSTEP] = b; \
54 if (A) dst[A + XSTEP] = 0xff; \
58 dst
[all...]
/external/libvpx/libvpx/vp8/common/x86/
H A Didct_blk_mmx.c28 unsigned char *dst, int stride, char *eobs)
35 vp8_dequant_idct_add_mmx (q, dq, dst, stride);
38 vp8_dc_only_idct_add_mmx (q[0]*dq[0], dst, stride, dst, stride);
43 vp8_dequant_idct_add_mmx (q+16, dq, dst+4, stride);
46 vp8_dc_only_idct_add_mmx (q[16]*dq[0], dst+4, stride,
47 dst+4, stride);
52 vp8_dequant_idct_add_mmx (q+32, dq, dst+8, stride);
55 vp8_dc_only_idct_add_mmx (q[32]*dq[0], dst+8, stride,
56 dst
26 vp8_dequant_idct_add_y_block_mmx(short *q, short *dq, unsigned char *dst, int stride, char *eobs) argument
[all...]
/external/webp/src/dsp/
H A Dyuv_mips32.c27 uint8_t* dst, int len) { \
44 dst[R] = r; \
45 dst[G] = g; \
46 dst[B] = b; \
47 if (A) dst[A] = 0xff; \
51 dst[R + XSTEP] = r; \
52 dst[G + XSTEP] = g; \
53 dst[B + XSTEP] = b; \
54 if (A) dst[A + XSTEP] = 0xff; \
58 dst
[all...]
/external/chromium_org/native_client_sdk/src/build_tools/
H A Dbuildbot_common.py137 def CopyDir(src, dst, excludes=('.svn', '*/.svn')):
139 args = ['-r', src, dst]
142 Trace('cp -r %s %s' % (src, dst))
143 if os.path.abspath(src) == os.path.abspath(dst):
148 def CopyFile(src, dst):
149 Trace('cp %s %s' % (src, dst))
150 if os.path.abspath(src) == os.path.abspath(dst):
152 args = [src, dst]
156 def RemoveDir(dst):
158 Trace('rm -fr ' + dst)
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dtexcompress_etc.c58 GLubyte dst[3]; local
65 etc1_fetch_texel(&block, i % 4, j % 4, dst);
67 texel[RCOMP] = UBYTE_TO_FLOAT(dst[0]);
68 texel[GCOMP] = UBYTE_TO_FLOAT(dst[1]);
69 texel[BCOMP] = UBYTE_TO_FLOAT(dst[2]);
/external/mesa3d/src/mesa/main/
H A Dtexcompress_etc.c58 GLubyte dst[3]; local
65 etc1_fetch_texel(&block, i % 4, j % 4, dst);
67 texel[RCOMP] = UBYTE_TO_FLOAT(dst[0]);
68 texel[GCOMP] = UBYTE_TO_FLOAT(dst[1]);
69 texel[BCOMP] = UBYTE_TO_FLOAT(dst[2]);
/external/libvpx/libvpx/vp9/common/
H A Dvp9_reconintra.c35 void vp9_##type##_predictor_##size##x##size##_c(uint8_t *dst, \
39 type##_predictor(dst, stride, size, above, left); \
48 static INLINE void d207_predictor(uint8_t *dst, ptrdiff_t stride, int bs, argument
54 dst[r * stride] = ROUND_POWER_OF_TWO(left[r] + left[r + 1], 1);
55 dst[(bs - 1) * stride] = left[bs - 1];
56 dst++;
60 dst[r * stride] = ROUND_POWER_OF_TWO(left[r] + left[r + 1] * 2 +
62 dst[(bs - 2) * stride] = ROUND_POWER_OF_TWO(left[bs - 2] +
64 dst[(bs - 1) * stride] = left[bs - 1];
65 dst
77 d63_predictor(uint8_t *dst, ptrdiff_t stride, int bs, const uint8_t *above, const uint8_t *left) argument
92 d45_predictor(uint8_t *dst, ptrdiff_t stride, int bs, const uint8_t *above, const uint8_t *left) argument
106 d117_predictor(uint8_t *dst, ptrdiff_t stride, int bs, const uint8_t *above, const uint8_t *left) argument
136 d135_predictor(uint8_t *dst, ptrdiff_t stride, int bs, const uint8_t *above, const uint8_t *left) argument
157 d153_predictor(uint8_t *dst, ptrdiff_t stride, int bs, const uint8_t *above, const uint8_t *left) argument
184 v_predictor(uint8_t *dst, ptrdiff_t stride, int bs, const uint8_t *above, const uint8_t *left) argument
195 h_predictor(uint8_t *dst, ptrdiff_t stride, int bs, const uint8_t *above, const uint8_t *left) argument
206 tm_predictor(uint8_t *dst, ptrdiff_t stride, int bs, const uint8_t *above, const uint8_t *left) argument
219 dc_128_predictor(uint8_t *dst, ptrdiff_t stride, int bs, const uint8_t *above, const uint8_t *left) argument
230 dc_left_predictor(uint8_t *dst, ptrdiff_t stride, int bs, const uint8_t *above, const uint8_t *left) argument
246 dc_top_predictor(uint8_t *dst, ptrdiff_t stride, int bs, const uint8_t *above, const uint8_t *left) argument
261 dc_predictor(uint8_t *dst, ptrdiff_t stride, int bs, const uint8_t *above, const uint8_t *left) argument
312 build_intra_predictors(const MACROBLOCKD *xd, const uint8_t *ref, int ref_stride, uint8_t *dst, int dst_stride, MB_PREDICTION_MODE mode, TX_SIZE tx_size, int up_available, int left_available, int right_available, int x, int y, int plane) argument
436 vp9_predict_intra_block(const MACROBLOCKD *xd, int block_idx, int bwl_in, TX_SIZE tx_size, MB_PREDICTION_MODE mode, const uint8_t *ref, int ref_stride, uint8_t *dst, int dst_stride, int aoff, int loff, int plane) argument
[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/chromium_org/third_party/boringssl/src/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/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/
H A Dnouveau_surface.c77 struct nouveau_surface *dst)
80 dst->offset = src->offset;
81 dst->layout = src->layout;
82 dst->format = src->format;
83 dst->width = src->width;
84 dst->height = src->height;
85 dst->cpp = src->cpp;
86 dst->pitch = src->pitch;
87 nouveau_bo_ref(src->bo, &dst->bo);
90 nouveau_bo_ref(NULL, &dst
76 nouveau_surface_ref(struct nouveau_surface *src, struct nouveau_surface *dst) argument
[all...]
/external/mesa3d/src/mesa/drivers/dri/nouveau/
H A Dnouveau_surface.c77 struct nouveau_surface *dst)
80 dst->offset = src->offset;
81 dst->layout = src->layout;
82 dst->format = src->format;
83 dst->width = src->width;
84 dst->height = src->height;
85 dst->cpp = src->cpp;
86 dst->pitch = src->pitch;
87 nouveau_bo_ref(src->bo, &dst->bo);
90 nouveau_bo_ref(NULL, &dst
76 nouveau_surface_ref(struct nouveau_surface *src, struct nouveau_surface *dst) 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_org/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/chromium_org/third_party/libxml/src/
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/chromium_org/third_party/skia/src/core/
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/chromium_org/third_party/tcmalloc/vendor/
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...]

Completed in 792 milliseconds

<<11121314151617181920>>