Home
last modified time | relevance | path

Searched refs:dst (Results 1 – 25 of 3990) sorted by relevance

12345678910>>...160

/external/deqp/framework/opengl/
DgluES3PlusWrapperFuncs.inl4 dst->activeTexture = src.activeTexture;
5 dst->attachShader = src.attachShader;
6 dst->bindAttribLocation = src.bindAttribLocation;
7 dst->bindBuffer = src.bindBuffer;
8 dst->bindFramebuffer = src.bindFramebuffer;
9 dst->bindRenderbuffer = src.bindRenderbuffer;
10 dst->bindTexture = src.bindTexture;
11 dst->blendColor = src.blendColor;
12 dst->blendEquation = src.blendEquation;
13 dst->blendEquationSeparate = src.blendEquationSeparate;
[all …]
/external/valgrind/main/none/tests/amd64/
Dsse4-64.c117 ULong src64, V128* dst, V128* res ) in showIGVV() argument
122 showV128(dst); in showIGVV()
420 V128 src, dst; in test_BLENDPD() local
424 randV128(&dst); in test_BLENDPD()
425 DO_imm_mandr_r("blendpd", 0, src, dst); in test_BLENDPD()
426 DO_imm_mandr_r("blendpd", 1, src, dst); in test_BLENDPD()
427 DO_imm_mandr_r("blendpd", 2, src, dst); in test_BLENDPD()
428 DO_imm_mandr_r("blendpd", 3, src, dst); in test_BLENDPD()
434 V128 src, dst; in test_BLENDPS() local
438 randV128(&dst); in test_BLENDPS()
[all …]
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/
Dimageformats.h26 static void readColor(gl::ColorF *dst, const L8 *src) in readColor()
29 dst->red = lum; in readColor()
30 dst->green = lum; in readColor()
31 dst->blue = lum; in readColor()
32 dst->alpha = 1.0f; in readColor()
35 static void writeColor(L8 *dst, const gl::ColorF *src) in writeColor()
37 dst->L = gl::floatToNormalized<unsigned char>((src->red + src->green + src->blue) / 3.0f); in writeColor()
40 static void average(L8 *dst, const L8 *src1, const L8 *src2) in average()
42 dst->L = gl::average(src1->L, src2->L); in average()
50 static void readColor(gl::ColorF *dst, const R8 *src) in readColor()
[all …]
/external/qemu/distrib/sdl-1.2.15/src/audio/
DSDL_audiocvt.c41 Uint8 *src, *dst; in SDL_ConvertMono() local
44 dst = cvt->buf; in SDL_ConvertMono()
47 *dst = (Uint8)(sample / 2); in SDL_ConvertMono()
49 dst += 1; in SDL_ConvertMono()
55 Sint8 *src, *dst; in SDL_ConvertMono() local
58 dst = (Sint8 *)cvt->buf; in SDL_ConvertMono()
61 *dst = (Sint8)(sample / 2); in SDL_ConvertMono()
63 dst += 1; in SDL_ConvertMono()
69 Uint8 *src, *dst; in SDL_ConvertMono() local
72 dst = cvt->buf; in SDL_ConvertMono()
[all …]
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/
Dreconintra4x4.c19 unsigned char *dst, int dst_stride, in vp8_intra4x4_predict_c() argument
48 dst[c] = expected_dc; in vp8_intra4x4_predict_c()
51 dst += dst_stride; in vp8_intra4x4_predict_c()
70 dst[c] = pred; in vp8_intra4x4_predict_c()
73 dst += dst_stride; in vp8_intra4x4_predict_c()
92 dst[c] = ap[c]; in vp8_intra4x4_predict_c()
95 dst += dst_stride; in vp8_intra4x4_predict_c()
115 dst[c] = lp[r]; in vp8_intra4x4_predict_c()
118 dst += dst_stride; in vp8_intra4x4_predict_c()
125 dst[0 * dst_stride + 0] = (ptr[0] + ptr[1] * 2 + ptr[2] + 2) >> 2; in vp8_intra4x4_predict_c()
[all …]
/external/libvpx/libvpx/vp8/common/
Dreconintra4x4.c19 unsigned char *dst, int dst_stride, in vp8_intra4x4_predict_c() argument
48 dst[c] = expected_dc; in vp8_intra4x4_predict_c()
51 dst += dst_stride; in vp8_intra4x4_predict_c()
70 dst[c] = pred; in vp8_intra4x4_predict_c()
73 dst += dst_stride; in vp8_intra4x4_predict_c()
92 dst[c] = ap[c]; in vp8_intra4x4_predict_c()
95 dst += dst_stride; in vp8_intra4x4_predict_c()
115 dst[c] = lp[r]; in vp8_intra4x4_predict_c()
118 dst += dst_stride; in vp8_intra4x4_predict_c()
125 dst[0 * dst_stride + 0] = (ptr[0] + ptr[1] * 2 + ptr[2] + 2) >> 2; in vp8_intra4x4_predict_c()
[all …]
/external/chromium_org/third_party/mesa/src/src/mesa/main/
Dformat_unpack.c87 typedef void (*unpack_rgba_func)(const void *src, GLfloat dst[][4], GLuint n);
91 unpack_RGBA8888(const void *src, GLfloat dst[][4], GLuint n) in unpack_RGBA8888()
96 dst[i][RCOMP] = UBYTE_TO_FLOAT( (s[i] >> 24) ); in unpack_RGBA8888()
97 dst[i][GCOMP] = UBYTE_TO_FLOAT( (s[i] >> 16) & 0xff ); in unpack_RGBA8888()
98 dst[i][BCOMP] = UBYTE_TO_FLOAT( (s[i] >> 8) & 0xff ); in unpack_RGBA8888()
99 dst[i][ACOMP] = UBYTE_TO_FLOAT( (s[i] ) & 0xff ); in unpack_RGBA8888()
104 unpack_RGBA8888_REV(const void *src, GLfloat dst[][4], GLuint n) in unpack_RGBA8888_REV()
109 dst[i][RCOMP] = UBYTE_TO_FLOAT( (s[i] ) & 0xff ); in unpack_RGBA8888_REV()
110 dst[i][GCOMP] = UBYTE_TO_FLOAT( (s[i] >> 8) & 0xff ); in unpack_RGBA8888_REV()
111 dst[i][BCOMP] = UBYTE_TO_FLOAT( (s[i] >> 16) & 0xff ); in unpack_RGBA8888_REV()
[all …]
/external/mesa3d/src/mesa/main/
Dformat_unpack.c87 typedef void (*unpack_rgba_func)(const void *src, GLfloat dst[][4], GLuint n);
91 unpack_RGBA8888(const void *src, GLfloat dst[][4], GLuint n) in unpack_RGBA8888()
96 dst[i][RCOMP] = UBYTE_TO_FLOAT( (s[i] >> 24) ); in unpack_RGBA8888()
97 dst[i][GCOMP] = UBYTE_TO_FLOAT( (s[i] >> 16) & 0xff ); in unpack_RGBA8888()
98 dst[i][BCOMP] = UBYTE_TO_FLOAT( (s[i] >> 8) & 0xff ); in unpack_RGBA8888()
99 dst[i][ACOMP] = UBYTE_TO_FLOAT( (s[i] ) & 0xff ); in unpack_RGBA8888()
104 unpack_RGBA8888_REV(const void *src, GLfloat dst[][4], GLuint n) in unpack_RGBA8888_REV()
109 dst[i][RCOMP] = UBYTE_TO_FLOAT( (s[i] ) & 0xff ); in unpack_RGBA8888_REV()
110 dst[i][GCOMP] = UBYTE_TO_FLOAT( (s[i] >> 8) & 0xff ); in unpack_RGBA8888_REV()
111 dst[i][BCOMP] = UBYTE_TO_FLOAT( (s[i] >> 16) & 0xff ); in unpack_RGBA8888_REV()
[all …]
/external/wpa_supplicant_8/wpa_supplicant/
Dctrl_iface_named_pipe.c87 static void ctrl_close_pipe(struct wpa_ctrl_dst *dst);
93 static void global_close_pipe(struct wpa_global_dst *dst);
116 struct wpa_ctrl_dst *dst, *next; in ctrl_flush_broken_pipes() local
118 dst = priv->ctrl_dst; in ctrl_flush_broken_pipes()
120 while (dst) { in ctrl_flush_broken_pipes()
121 next = dst->next; in ctrl_flush_broken_pipes()
122 if (ctrl_broken_pipe(dst->pipe, dst->used)) { in ctrl_flush_broken_pipes()
124 dst); in ctrl_flush_broken_pipes()
125 ctrl_close_pipe(dst); in ctrl_flush_broken_pipes()
127 dst = next; in ctrl_flush_broken_pipes()
[all …]
/external/llvm/lib/Target/X86/
DX86InstrShiftRotate.td18 let Constraints = "$src1 = $dst", SchedRW = [WriteShift] in {
20 def SHL8rCL : I<0xD2, MRM4r, (outs GR8 :$dst), (ins GR8 :$src1),
21 "shl{b}\t{%cl, $dst|$dst, cl}",
22 [(set GR8:$dst, (shl GR8:$src1, CL))], IIC_SR>;
23 def SHL16rCL : I<0xD3, MRM4r, (outs GR16:$dst), (ins GR16:$src1),
24 "shl{w}\t{%cl, $dst|$dst, cl}",
25 [(set GR16:$dst, (shl GR16:$src1, CL))], IIC_SR>, OpSize16;
26 def SHL32rCL : I<0xD3, MRM4r, (outs GR32:$dst), (ins GR32:$src1),
27 "shl{l}\t{%cl, $dst|$dst, cl}",
28 [(set GR32:$dst, (shl GR32:$src1, CL))], IIC_SR>, OpSize32;
[all …]
/external/skia/src/core/
DSkBlitRow_D32.cpp17 static void S32_Opaque_BlitRow32(SkPMColor* SK_RESTRICT dst, in S32_Opaque_BlitRow32() argument
21 sk_memcpy32(dst, src, count); in S32_Opaque_BlitRow32()
24 static void S32_Blend_BlitRow32(SkPMColor* SK_RESTRICT dst, in S32_Blend_BlitRow32() argument
34 *dst = SkAlphaMulQ(*(src++), src_scale) + SkAlphaMulQ(*dst, dst_scale); in S32_Blend_BlitRow32()
35 dst += 1; in S32_Blend_BlitRow32()
41 *dst = SkAlphaMulQ(*(src++), src_scale) + SkAlphaMulQ(*dst, dst_scale); in S32_Blend_BlitRow32()
42 dst += 1; in S32_Blend_BlitRow32()
43 *dst = SkAlphaMulQ(*(src++), src_scale) + SkAlphaMulQ(*dst, dst_scale); in S32_Blend_BlitRow32()
44 dst += 1; in S32_Blend_BlitRow32()
48 *dst = SkAlphaMulQ(*src, src_scale) + SkAlphaMulQ(*dst, dst_scale); in S32_Blend_BlitRow32()
[all …]
/external/chromium_org/third_party/skia/src/core/
DSkBlitRow_D32.cpp17 static void S32_Opaque_BlitRow32(SkPMColor* SK_RESTRICT dst, in S32_Opaque_BlitRow32() argument
21 sk_memcpy32(dst, src, count); in S32_Opaque_BlitRow32()
24 static void S32_Blend_BlitRow32(SkPMColor* SK_RESTRICT dst, in S32_Blend_BlitRow32() argument
34 *dst = SkAlphaMulQ(*(src++), src_scale) + SkAlphaMulQ(*dst, dst_scale); in S32_Blend_BlitRow32()
35 dst += 1; in S32_Blend_BlitRow32()
41 *dst = SkAlphaMulQ(*(src++), src_scale) + SkAlphaMulQ(*dst, dst_scale); in S32_Blend_BlitRow32()
42 dst += 1; in S32_Blend_BlitRow32()
43 *dst = SkAlphaMulQ(*(src++), src_scale) + SkAlphaMulQ(*dst, dst_scale); in S32_Blend_BlitRow32()
44 dst += 1; in S32_Blend_BlitRow32()
48 *dst = SkAlphaMulQ(*src, src_scale) + SkAlphaMulQ(*dst, dst_scale); in S32_Blend_BlitRow32()
[all …]
/external/valgrind/main/none/tests/s390x/
Dcu14_1.stdout.exp7 dst address difference: 24 dst len: 1976
14 dst address difference: 0 dst len: 2000
19 dst address difference: 0 dst len: 2000
24 dst address difference: 0 dst len: 2000
29 dst address difference: 0 dst len: 2000
34 dst address difference: 0 dst len: 2000
39 dst address difference: 0 dst len: 2000
44 dst address difference: 0 dst len: 2000
49 dst address difference: 0 dst len: 2000
56 dst address difference: 0 dst len: 2000
[all …]
Dcu12.stdout.exp7 dst address difference: 12 dst len: 1988
14 dst address difference: 0 dst len: 2000
19 dst address difference: 0 dst len: 2000
24 dst address difference: 0 dst len: 2000
29 dst address difference: 0 dst len: 2000
34 dst address difference: 0 dst len: 2000
39 dst address difference: 0 dst len: 2000
44 dst address difference: 0 dst len: 2000
49 dst address difference: 0 dst len: 2000
56 dst address difference: 0 dst len: 2000
[all …]
Dcu12_1.stdout.exp7 dst address difference: 12 dst len: 1988
14 dst address difference: 0 dst len: 2000
19 dst address difference: 0 dst len: 2000
24 dst address difference: 0 dst len: 2000
29 dst address difference: 0 dst len: 2000
34 dst address difference: 0 dst len: 2000
39 dst address difference: 0 dst len: 2000
44 dst address difference: 0 dst len: 2000
49 dst address difference: 0 dst len: 2000
56 dst address difference: 0 dst len: 2000
[all …]
Dcu14.stdout.exp7 dst address difference: 24 dst len: 1976
14 dst address difference: 0 dst len: 2000
19 dst address difference: 0 dst len: 2000
24 dst address difference: 0 dst len: 2000
29 dst address difference: 0 dst len: 2000
34 dst address difference: 0 dst len: 2000
39 dst address difference: 0 dst len: 2000
44 dst address difference: 0 dst len: 2000
49 dst address difference: 0 dst len: 2000
56 dst address difference: 0 dst len: 2000
[all …]
Dcu42.stdout.exp5 dst len: 0
11 dst address difference: 0 dst len: 2000
15 dst address difference: 0 dst len: 2000
19 dst address difference: 0 dst len: 2000
23 dst address difference: 0 dst len: 2000
27 dst address difference: 0 dst len: 2000
31 dst address difference: 0 dst len: 2000
35 dst address difference: 0 dst len: 2000
39 dst address difference: 0 dst len: 2000
45 dst address difference: 2 dst len: 1998
[all …]
Dcu41.stdout.exp5 dst len: 0
11 dst address difference: 0 dst len: 1000
15 dst address difference: 0 dst len: 1000
19 dst address difference: 0 dst len: 1000
23 dst address difference: 0 dst len: 1000
27 dst address difference: 0 dst len: 1000
31 dst address difference: 0 dst len: 1000
35 dst address difference: 0 dst len: 1000
39 dst address difference: 0 dst len: 1000
45 dst address difference: 1 dst len: 999
[all …]
Dcu21.stdout.exp5 dst len: 0
11 dst address difference: 0 dst len: 1000
15 dst address difference: 0 dst len: 1000
19 dst address difference: 0 dst len: 1000
23 dst address difference: 0 dst len: 1000
27 dst address difference: 0 dst len: 1000
31 dst address difference: 0 dst len: 1000
35 dst address difference: 0 dst len: 1000
41 dst address difference: 1 dst len: 999
45 dst address difference: 4 dst len: 996
[all …]
Dcu21_1.stdout.exp5 dst len: 0
11 dst address difference: 0 dst len: 1000
15 dst address difference: 0 dst len: 1000
19 dst address difference: 0 dst len: 1000
23 dst address difference: 0 dst len: 1000
27 dst address difference: 0 dst len: 1000
31 dst address difference: 0 dst len: 1000
35 dst address difference: 0 dst len: 1000
41 dst address difference: 1 dst len: 999
45 dst address difference: 4 dst len: 996
[all …]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/rtasm/
Drtasm_x86sse.c287 struct x86_reg dst, in emit_op_modrm() argument
290 switch (dst.mod) { in emit_op_modrm()
293 emit_modrm(p, dst, src); in emit_op_modrm()
300 emit_modrm(p, src, dst); in emit_op_modrm()
454 void x86_mov_reg_imm( struct x86_function *p, struct x86_reg dst, int imm ) in x86_mov_reg_imm() argument
456 DUMP_RI( dst, imm ); in x86_mov_reg_imm()
457 assert(dst.file == file_REG32); in x86_mov_reg_imm()
458 assert(dst.mod == mod_REG); in x86_mov_reg_imm()
459 emit_1ub(p, 0xb8 + dst.idx); in x86_mov_reg_imm()
463 void x86_mov_imm( struct x86_function *p, struct x86_reg dst, int imm ) in x86_mov_imm() argument
[all …]
/external/mesa3d/src/gallium/auxiliary/rtasm/
Drtasm_x86sse.c287 struct x86_reg dst, in emit_op_modrm() argument
290 switch (dst.mod) { in emit_op_modrm()
293 emit_modrm(p, dst, src); in emit_op_modrm()
300 emit_modrm(p, src, dst); in emit_op_modrm()
454 void x86_mov_reg_imm( struct x86_function *p, struct x86_reg dst, int imm ) in x86_mov_reg_imm() argument
456 DUMP_RI( dst, imm ); in x86_mov_reg_imm()
457 assert(dst.file == file_REG32); in x86_mov_reg_imm()
458 assert(dst.mod == mod_REG); in x86_mov_reg_imm()
459 emit_1ub(p, 0xb8 + dst.idx); in x86_mov_reg_imm()
463 void x86_mov_imm( struct x86_function *p, struct x86_reg dst, int imm ) in x86_mov_imm() argument
[all …]
/external/deqp/framework/referencerenderer/
DrrVertexAttrib.cpp60 inline void readOrder (typename tcu::Vector<DstScalarType, 4>& dst, const int size, const void* ptr) in readOrder() argument
65 dst[Order::T0] = DstScalarType(aligned[0]); in readOrder()
66 if (size >= 2) dst[Order::T1] = DstScalarType(aligned[1]); in readOrder()
67 if (size >= 3) dst[Order::T2] = DstScalarType(aligned[2]); in readOrder()
68 if (size >= 4) dst[Order::T3] = DstScalarType(aligned[3]); in readOrder()
72 inline void readUnormOrder (tcu::Vec4& dst, const int size, const void* ptr) in readUnormOrder() argument
79 dst[Order::T0] = float(aligned[0]) / float(range); in readUnormOrder()
80 if (size >= 2) dst[Order::T1] = float(aligned[1]) / float(range); in readUnormOrder()
81 if (size >= 3) dst[Order::T2] = float(aligned[2]) / float(range); in readUnormOrder()
82 if (size >= 4) dst[Order::T3] = float(aligned[3]) / float(range); in readUnormOrder()
[all …]
/external/eigen/unsupported/Eigen/src/FFT/
Dei_fftw_impl.h60 void fwd(complex_type * dst,complex_type * src,int nfft) {
61 …if (m_plan==NULL) m_plan = fftwf_plan_dft_1d(nfft,src,dst, FFTW_FORWARD, FFTW_ESTIMATE|FFTW_PRESER…
62 fftwf_execute_dft( m_plan, src,dst);
65 void inv(complex_type * dst,complex_type * src,int nfft) {
66 …if (m_plan==NULL) m_plan = fftwf_plan_dft_1d(nfft,src,dst, FFTW_BACKWARD , FFTW_ESTIMATE|FFTW_PRES…
67 fftwf_execute_dft( m_plan, src,dst);
70 void fwd(complex_type * dst,scalar_type * src,int nfft) {
71 … if (m_plan==NULL) m_plan = fftwf_plan_dft_r2c_1d(nfft,src,dst,FFTW_ESTIMATE|FFTW_PRESERVE_INPUT);
72 fftwf_execute_dft_r2c( m_plan,src,dst);
75 void inv(scalar_type * dst,complex_type * src,int nfft) {
[all …]
/external/llvm/lib/Target/MSP430/
DMSP430InstrInfo.td125 def Select8 : Pseudo<(outs GR8:$dst), (ins GR8:$src, GR8:$src2, i8imm:$cc),
127 [(set GR8:$dst,
129 def Select16 : Pseudo<(outs GR16:$dst), (ins GR16:$src, GR16:$src2, i8imm:$cc),
131 [(set GR16:$dst,
134 def Shl8 : Pseudo<(outs GR8:$dst), (ins GR8:$src, GR8:$cnt),
136 [(set GR8:$dst, (MSP430shl GR8:$src, GR8:$cnt))]>;
137 def Shl16 : Pseudo<(outs GR16:$dst), (ins GR16:$src, GR8:$cnt),
139 [(set GR16:$dst, (MSP430shl GR16:$src, GR8:$cnt))]>;
140 def Sra8 : Pseudo<(outs GR8:$dst), (ins GR8:$src, GR8:$cnt),
142 [(set GR8:$dst, (MSP430sra GR8:$src, GR8:$cnt))]>;
[all …]

12345678910>>...160