Home
last modified time | relevance | path

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

12345678910>>...212

/third_party/vk-gl-cts/framework/opengl/
DgluES3PlusWrapperFuncs.inl6 dst->activeShaderProgram = src.activeShaderProgram;
7 dst->activeTexture = src.activeTexture;
8 dst->attachShader = src.attachShader;
9 dst->beginQuery = src.beginQuery;
10 dst->beginTransformFeedback = src.beginTransformFeedback;
11 dst->bindAttribLocation = src.bindAttribLocation;
12 dst->bindBuffer = src.bindBuffer;
13 dst->bindBufferBase = src.bindBufferBase;
14 dst->bindBufferRange = src.bindBufferRange;
15 dst->bindFramebuffer = src.bindFramebuffer;
[all …]
/third_party/flutter/skia/third_party/externals/angle2/src/image_util/
Dimageformats.cpp17 void L8::readColor(gl::ColorF *dst, const L8 *src) in readColor() argument
20 dst->red = lum; in readColor()
21 dst->green = lum; in readColor()
22 dst->blue = lum; in readColor()
23 dst->alpha = 1.0f; in readColor()
26 void L8::writeColor(L8 *dst, const gl::ColorF *src) in writeColor() argument
28 dst->L = gl::floatToNormalized<uint8_t>(src->red); in writeColor()
31 void L8::average(L8 *dst, const L8 *src1, const L8 *src2) in average() argument
33 dst->L = gl::average(src1->L, src2->L); in average()
36 void R8::readColor(gl::ColorUI *dst, const R8 *src) in readColor() argument
[all …]
Dimageformats.h28 static void readColor(gl::ColorF *dst, const L8 *src);
29 static void writeColor(L8 *dst, const gl::ColorF *src);
30 static void average(L8 *dst, const L8 *src1, const L8 *src2);
37 static void readColor(gl::ColorF *dst, const R8 *src);
38 static void readColor(gl::ColorUI *dst, const R8 *src);
39 static void writeColor(R8 *dst, const gl::ColorF *src);
40 static void writeColor(R8 *dst, const gl::ColorUI *src);
41 static void average(R8 *dst, const R8 *src1, const R8 *src2);
48 static void readColor(gl::ColorF *dst, const A8 *src);
49 static void writeColor(A8 *dst, const gl::ColorF *src);
[all …]
/third_party/skia/third_party/externals/angle2/src/image_util/
Dimageformats.cpp17 void L8::readColor(gl::ColorF *dst, const L8 *src) in readColor() argument
20 dst->red = lum; in readColor()
21 dst->green = lum; in readColor()
22 dst->blue = lum; in readColor()
23 dst->alpha = 1.0f; in readColor()
26 void L8::writeColor(L8 *dst, const gl::ColorF *src) in writeColor() argument
28 dst->L = gl::floatToNormalized<uint8_t>(src->red); in writeColor()
31 void L8::average(L8 *dst, const L8 *src1, const L8 *src2) in average() argument
33 dst->L = gl::average(src1->L, src2->L); in average()
36 void R8::readColor(gl::ColorUI *dst, const R8 *src) in readColor() argument
[all …]
Dimageformats.h28 static void readColor(gl::ColorF *dst, const L8 *src);
29 static void writeColor(L8 *dst, const gl::ColorF *src);
30 static void average(L8 *dst, const L8 *src1, const L8 *src2);
37 static void readColor(gl::ColorF *dst, const R8 *src);
38 static void readColor(gl::ColorUI *dst, const R8 *src);
39 static void writeColor(R8 *dst, const gl::ColorF *src);
40 static void writeColor(R8 *dst, const gl::ColorUI *src);
41 static void average(R8 *dst, const R8 *src1, const R8 *src2);
48 static void readColor(gl::ColorF *dst, const A8 *src);
49 static void writeColor(A8 *dst, const gl::ColorF *src);
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9/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 …]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/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 …]
/third_party/pulseaudio/src/pulsecore/
Dremap.c36 static void remap_mono_to_stereo_s16ne_c(pa_remap_t *m, int16_t *dst, const int16_t *src, unsigned … in remap_mono_to_stereo_s16ne_c() argument
40 dst[0] = dst[1] = src[0]; in remap_mono_to_stereo_s16ne_c()
41 dst[2] = dst[3] = src[1]; in remap_mono_to_stereo_s16ne_c()
42 dst[4] = dst[5] = src[2]; in remap_mono_to_stereo_s16ne_c()
43 dst[6] = dst[7] = src[3]; in remap_mono_to_stereo_s16ne_c()
45 dst += 8; in remap_mono_to_stereo_s16ne_c()
48 dst[0] = dst[1] = src[0]; in remap_mono_to_stereo_s16ne_c()
50 dst += 2; in remap_mono_to_stereo_s16ne_c()
54 static void remap_mono_to_stereo_s32ne_c(pa_remap_t *m, int32_t *dst, const int32_t *src, unsigned … in remap_mono_to_stereo_s32ne_c() argument
58 dst[0] = dst[1] = src[0]; in remap_mono_to_stereo_s32ne_c()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
DX86InstrShiftRotate.td17 let Constraints = "$src1 = $dst", SchedRW = [WriteShift] in {
19 def SHL8rCL : I<0xD2, MRM4r, (outs GR8 :$dst), (ins GR8 :$src1),
20 "shl{b}\t{%cl, $dst|$dst, cl}",
21 [(set GR8:$dst, (shl GR8:$src1, CL))]>;
22 def SHL16rCL : I<0xD3, MRM4r, (outs GR16:$dst), (ins GR16:$src1),
23 "shl{w}\t{%cl, $dst|$dst, cl}",
24 [(set GR16:$dst, (shl GR16:$src1, CL))]>, OpSize16;
25 def SHL32rCL : I<0xD3, MRM4r, (outs GR32:$dst), (ins GR32:$src1),
26 "shl{l}\t{%cl, $dst|$dst, cl}",
27 [(set GR32:$dst, (shl GR32:$src1, CL))]>, OpSize32;
[all …]
/third_party/vk-gl-cts/build/external/vulkancts/framework/vulkan/
DvkSupportedExtensions.inl5 void getCoreDeviceExtensionsImpl (uint32_t coreVersion, ::std::vector<const char*>& dst) argument
9 dst.push_back("VK_KHR_sampler_mirror_clamp_to_edge");
10 dst.push_back("VK_KHR_shader_float16_int8");
11 dst.push_back("VK_KHR_imageless_framebuffer");
12 dst.push_back("VK_KHR_create_renderpass2");
13 dst.push_back("VK_KHR_image_format_list");
14 dst.push_back("VK_KHR_draw_indirect_count");
15 dst.push_back("VK_KHR_shader_subgroup_extended_types");
16 dst.push_back("VK_KHR_8bit_storage");
17 dst.push_back("VK_KHR_shader_atomic_int64");
[all …]
/third_party/ffmpeg/libavcodec/mips/
Dqpeldsp_mips.h26 void ff_copy_8x8_msa(uint8_t *dst, const uint8_t *src, ptrdiff_t stride);
27 void ff_copy_16x16_msa(uint8_t *dst, const uint8_t *src, ptrdiff_t stride);
28 void ff_avg_width8_msa(uint8_t *dst, const uint8_t *src, ptrdiff_t stride);
29 void ff_avg_width16_msa(uint8_t *dst, const uint8_t *src, ptrdiff_t stride);
31 void ff_horiz_mc_qpel_aver_src0_8width_msa(uint8_t *dst, const uint8_t *src,
33 void ff_horiz_mc_qpel_aver_src0_16width_msa(uint8_t *dst, const uint8_t *src,
35 void ff_horiz_mc_qpel_8width_msa(uint8_t *dst, const uint8_t *src,
37 void ff_horiz_mc_qpel_16width_msa(uint8_t *dst, const uint8_t *src,
39 void ff_horiz_mc_qpel_aver_src1_8width_msa(uint8_t *dst, const uint8_t *src,
41 void ff_horiz_mc_qpel_aver_src1_16width_msa(uint8_t *dst, const uint8_t *src,
[all …]
Dh264dsp_mips.h46 void ff_h264_idct_add_msa(uint8_t *dst, int16_t *src, int32_t dst_stride);
47 void ff_h264_idct4x4_addblk_dc_msa(uint8_t *dst, int16_t *src,
49 void ff_h264_deq_idct_luma_dc_msa(int16_t *dst, int16_t *src,
51 void ff_h264_idct_add16_msa(uint8_t *dst, const int32_t *blk_offset,
54 void ff_h264_idct_add16_intra_msa(uint8_t *dst, const int32_t *blk_offset,
57 void ff_h264_idct_add8_msa(uint8_t **dst, const int32_t *blk_offset,
60 void ff_h264_idct_add8_422_msa(uint8_t **dst, const int32_t *blk_offset,
63 void ff_h264_idct8_addblk_msa(uint8_t *dst, int16_t *src, int32_t dst_stride);
64 void ff_h264_idct8_dc_addblk_msa(uint8_t *dst, int16_t *src,
66 void ff_h264_idct8_add4_msa(uint8_t *dst, const int *blk_offset,
[all …]
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/cpu/nnacl/intrinsics/sse/
Dsse_common.h88 static inline void WriteCol1(float **dst, __m128 *dst1, __m128 *dst2, __m128 *dst3, __m128 *dst4, _… in WriteCol1() argument
90 _mm_store_ss(*dst, *dst1); in WriteCol1()
92 *dst += stride; in WriteCol1()
93 _mm_store_ss(*dst, *dst3); in WriteCol1()
96 *dst += stride; in WriteCol1()
97 _mm_store_ss(*dst, *dst5); in WriteCol1()
100 *dst += stride; in WriteCol1()
101 _mm_store_ss(*dst, *dst7); in WriteCol1()
102 *dst += stride; in WriteCol1()
103 *dst += extra_stride; in WriteCol1()
[all …]
/third_party/flutter/skia/third_party/externals/sdl/src/audio/
DSDL_audiocvt.c47 Uint8 *src, *dst; in SDL_ConvertMono() local
50 dst = cvt->buf; in SDL_ConvertMono()
53 *dst = (Uint8) (sample / 2); in SDL_ConvertMono()
55 dst += 1; in SDL_ConvertMono()
62 Sint8 *src, *dst; in SDL_ConvertMono() local
65 dst = (Sint8 *) cvt->buf; in SDL_ConvertMono()
68 *dst = (Sint8) (sample / 2); in SDL_ConvertMono()
70 dst += 1; in SDL_ConvertMono()
77 Uint8 *src, *dst; in SDL_ConvertMono() local
80 dst = cvt->buf; in SDL_ConvertMono()
[all …]
/third_party/protobuf/objectivec/Tests/
DGPBMessageTests+Merge.m54 Message3 *dst = [[Message3 alloc] init];
58 dst.optionalInt32 = 1;
59 dst.optionalInt64 = 1;
60 dst.optionalUint32 = 1;
61 dst.optionalUint64 = 1;
62 dst.optionalSint32 = 1;
63 dst.optionalSint64 = 1;
64 dst.optionalFixed32 = 1;
65 dst.optionalFixed64 = 1;
66 dst.optionalSfixed32 = 1;
[all …]
/third_party/mesa3d/src/gallium/auxiliary/rtasm/
Drtasm_x86sse.c288 struct x86_reg dst, in emit_op_modrm() argument
291 switch (dst.mod) { in emit_op_modrm()
294 emit_modrm(p, dst, src); in emit_op_modrm()
301 emit_modrm(p, src, dst); in emit_op_modrm()
455 void x86_mov_reg_imm( struct x86_function *p, struct x86_reg dst, int imm ) in x86_mov_reg_imm() argument
457 DUMP_RI( dst, imm ); in x86_mov_reg_imm()
458 assert(dst.file == file_REG32); in x86_mov_reg_imm()
459 assert(dst.mod == mod_REG); in x86_mov_reg_imm()
460 emit_1ub(p, 0xb8 + dst.idx); in x86_mov_reg_imm()
464 void x86_mov_imm( struct x86_function *p, struct x86_reg dst, int imm ) in x86_mov_imm() argument
[all …]
/third_party/benchmark/test/
Dbenchmark_gtest.cc16 std::vector<int> dst; in TEST() local
17 AddRange(&dst, 1, 2, 2); in TEST()
18 EXPECT_THAT(dst, testing::ElementsAre(1, 2)); in TEST()
22 std::vector<int64_t> dst; in TEST() local
23 AddRange(&dst, static_cast<int64_t>(1), static_cast<int64_t>(2), 2); in TEST()
24 EXPECT_THAT(dst, testing::ElementsAre(1, 2)); in TEST()
28 std::vector<int> dst; in TEST() local
29 AddRange(&dst, 5, 15, 2); in TEST()
30 EXPECT_THAT(dst, testing::ElementsAre(5, 8, 15)); in TEST()
34 std::vector<int64_t> dst; in TEST() local
[all …]
/third_party/vk-gl-cts/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 …]
/third_party/optimized-routines/string/arm/
Dmemcpy.S64 #define dst ip macro
86 vstr \vreg, [dst, #\base]
88 vstr d0, [dst, #\base + 8]
90 vstr d1, [dst, #\base + 16]
92 vstr d2, [dst, #\base + 24]
94 vstr \vreg, [dst, #\base + 32]
96 vstr d0, [dst, #\base + 40]
98 vstr d1, [dst, #\base + 48]
100 vstr d2, [dst, #\base + 56]
105 vstr \vreg, [dst, #\base]
[all …]
/third_party/skia/src/images/
DSkImageEncoderFns.h17 typedef void (*transform_scanline_proc)(char* dst, const char* src, int width, int bpp);
19 static inline void transform_scanline_memcpy(char* dst, const char* src, int width, int bpp) { in transform_scanline_memcpy() argument
20 memcpy(dst, src, width * bpp); in transform_scanline_memcpy()
23 static inline void transform_scanline_A8_to_GrayAlpha(char* dst, const char* src, int width, int) { in transform_scanline_A8_to_GrayAlpha() argument
25 *dst++ = 0; in transform_scanline_A8_to_GrayAlpha()
26 *dst++ = *src++; in transform_scanline_A8_to_GrayAlpha()
31 static void skcms(char* dst, const char* src, int n, in skcms() argument
35 dst, dstFmt, dstAlpha, nullptr, n)); in skcms()
38 static inline void transform_scanline_gray(char* dst, const char* src, int width, int) { in transform_scanline_gray() argument
39 skcms(dst, src, width, in transform_scanline_gray()
[all …]
/third_party/skia/third_party/externals/swiftshader/src/Shader/
DShaderCore.cpp671 void ShaderCore::mov(Vector4f &dst, const Vector4f &src, bool integerDestination) in mov() argument
675 dst.x = As<Float4>(RoundInt(src.x)); in mov()
676 dst.y = As<Float4>(RoundInt(src.y)); in mov()
677 dst.z = As<Float4>(RoundInt(src.z)); in mov()
678 dst.w = As<Float4>(RoundInt(src.w)); in mov()
682 dst = src; in mov()
686 void ShaderCore::neg(Vector4f &dst, const Vector4f &src) in neg() argument
688 dst.x = -src.x; in neg()
689 dst.y = -src.y; in neg()
690 dst.z = -src.z; in neg()
[all …]
/third_party/mesa3d/src/util/format/
Du_format_yuv.c49 float *dst = dst_row; in util_format_r8g8_b8g8_unorm_unpack_rgba_float() local
62 dst[0] = r; /* r */ in util_format_r8g8_b8g8_unorm_unpack_rgba_float()
63 dst[1] = g0; /* g */ in util_format_r8g8_b8g8_unorm_unpack_rgba_float()
64 dst[2] = b; /* b */ in util_format_r8g8_b8g8_unorm_unpack_rgba_float()
65 dst[3] = 1.0f; /* a */ in util_format_r8g8_b8g8_unorm_unpack_rgba_float()
66 dst += 4; in util_format_r8g8_b8g8_unorm_unpack_rgba_float()
68 dst[0] = r; /* r */ in util_format_r8g8_b8g8_unorm_unpack_rgba_float()
69 dst[1] = g1; /* g */ in util_format_r8g8_b8g8_unorm_unpack_rgba_float()
70 dst[2] = b; /* b */ in util_format_r8g8_b8g8_unorm_unpack_rgba_float()
71 dst[3] = 1.0f; /* a */ in util_format_r8g8_b8g8_unorm_unpack_rgba_float()
[all …]
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/cpu/nnacl/intrinsics/
Dms_simd_instructions_fp16.h23 float16x8_t dst; in ms_vdivq_f16() local
31 : "=w"(dst) in ms_vdivq_f16()
32 : "0"(dst), "w"(in1), "w"(in2) in ms_vdivq_f16()
34 return dst; in ms_vdivq_f16()
38 float16x4_t dst; in ms_vdiv_f16() local
46 : "=w"(dst) in ms_vdiv_f16()
47 : "0"(dst), "w"(in1), "w"(in2) in ms_vdiv_f16()
49 return dst; in ms_vdiv_f16()
59 float16_t dst = in[0]; in ms_vmaxvq_f16() local
61 dst = dst > in[i] ? dst : in[i]; in ms_vmaxvq_f16()
[all …]
/third_party/flutter/skia/third_party/externals/sdl/src/video/
DSDL_blit_1.c37 Uint8 *src, *map, *dst; in Blit1to1() local
45 dst = info->dst; in Blit1to1()
54 *dst = map[*src]; in Blit1to1()
56 dst++; in Blit1to1()
62 *dst = map[*src]; in Blit1to1()
63 dst++; in Blit1to1()
68 dst += dstskip; in Blit1to1()
87 Uint8 *src, *dst; in Blit1to2() local
96 dst = info->dst; in Blit1to2()
105 *(Uint16 *)dst = map[*src++]; in Blit1to2()
[all …]
/third_party/python/Lib/distutils/
Dfile_util.py16 def _copy_file_contents(src, dst, buffer_size=16*1024): argument
33 if os.path.exists(dst):
35 os.unlink(dst)
38 "could not delete '%s': %s" % (dst, e.strerror))
41 fdst = open(dst, 'wb')
44 "could not create '%s': %s" % (dst, e.strerror))
60 "could not write to '%s': %s" % (dst, e.strerror))
67 def copy_file(src, dst, preserve_mode=1, preserve_times=1, update=0, argument
107 if os.path.isdir(dst):
108 dir = dst
[all …]

12345678910>>...212