Home
last modified time | relevance | path

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

12345678910>>...170

/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/uboot/u-boot-2020.01/test/lib/
Dhexdump.c40 u8 dst[4]; in lib_test_hex2bin() local
42 hex2bin(dst, "649421de", 4); in lib_test_hex2bin()
43 ut_asserteq_mem("\x64\x94\x21\xde", dst, 4); in lib_test_hex2bin()
44 hex2bin(dst, "aa2e7545", 4); in lib_test_hex2bin()
45 ut_asserteq_mem("\xaa\x2e\x75\x45", dst, 4); in lib_test_hex2bin()
46 hex2bin(dst, "75453bc5", 4); in lib_test_hex2bin()
47 ut_asserteq_mem("\x75\x45\x3b\xc5", dst, 4); in lib_test_hex2bin()
48 hex2bin(dst, "a16884c3", 4); in lib_test_hex2bin()
49 ut_asserteq_mem("\xa1\x68\x84\xc3", dst, 4); in lib_test_hex2bin()
50 hex2bin(dst, "156b2e5e", 4); in lib_test_hex2bin()
[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/benchmark/test/
Dbenchmark_gtest.cc12 std::vector<int> dst; in TEST() local
13 AddRange(&dst, 1, 2, 2); in TEST()
14 EXPECT_THAT(dst, testing::ElementsAre(1, 2)); in TEST()
18 std::vector<int64_t> dst; in TEST() local
19 AddRange(&dst, static_cast<int64_t>(1), static_cast<int64_t>(2), 2); in TEST()
20 EXPECT_THAT(dst, testing::ElementsAre(1, 2)); in TEST()
24 std::vector<int> dst; in TEST() local
25 AddRange(&dst, 5, 15, 2); in TEST()
26 EXPECT_THAT(dst, testing::ElementsAre(5, 8, 15)); in TEST()
30 std::vector<int64_t> dst; in TEST() local
[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/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/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 …]
/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/flutter/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/src/core/
DSkOpts_erms.cpp17 static inline void repsto(uint16_t* dst, uint16_t v, size_t n) { in repsto() argument
18 sk_msan_mark_initialized(dst,dst+n,note); in repsto()
19 __stosw(dst, v, n); in repsto()
21 static inline void repsto(uint32_t* dst, uint32_t v, size_t n) { in repsto() argument
22 sk_msan_mark_initialized(dst,dst+n,note); in repsto()
24 __stosd(reinterpret_cast<unsigned long*>(dst), v, n); in repsto()
26 static inline void repsto(uint64_t* dst, uint64_t v, size_t n) { in repsto() argument
27 sk_msan_mark_initialized(dst,dst+n,note); in repsto()
28 __stosq(dst, v, n); in repsto()
31 static inline void repsto(uint16_t* dst, uint16_t v, size_t n) { in repsto() argument
[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/ffmpeg/libavcodec/
Dh264_picture.c66 int ff_h264_ref_picture(H264Context *h, H264Picture *dst, H264Picture *src) in ff_h264_ref_picture() argument
70 av_assert0(!dst->f->buf[0]); in ff_h264_ref_picture()
74 dst->tf.f = dst->f; in ff_h264_ref_picture()
75 ret = ff_thread_ref_frame(&dst->tf, &src->tf); in ff_h264_ref_picture()
79 dst->qscale_table_buf = av_buffer_ref(src->qscale_table_buf); in ff_h264_ref_picture()
80 dst->mb_type_buf = av_buffer_ref(src->mb_type_buf); in ff_h264_ref_picture()
81 dst->pps_buf = av_buffer_ref(src->pps_buf); in ff_h264_ref_picture()
82 if (!dst->qscale_table_buf || !dst->mb_type_buf || !dst->pps_buf) { in ff_h264_ref_picture()
86 dst->qscale_table = src->qscale_table; in ff_h264_ref_picture()
87 dst->mb_type = src->mb_type; in ff_h264_ref_picture()
[all …]
/third_party/skia/third_party/externals/icu/source/tools/genrb/
Dustr.c82 ustr_cpy(struct UString *dst, in ustr_cpy() argument
86 if(U_FAILURE(*status) || dst == src) in ustr_cpy()
89 if(dst->fCapacity < src->fLength) { in ustr_cpy()
90 ustr_resize(dst, ALLOCATION(src->fLength), status); in ustr_cpy()
94 if(src->fChars == NULL || dst->fChars == NULL){ in ustr_cpy()
97 u_memcpy(dst->fChars, src->fChars, src->fLength); in ustr_cpy()
98 dst->fLength = src->fLength; in ustr_cpy()
99 dst->fChars[dst->fLength] = 0x0000; in ustr_cpy()
121 ustr_cat(struct UString *dst, in ustr_cat() argument
125 ustr_ncat(dst, src, src->fLength, status); in ustr_cat()
[all …]
/third_party/flutter/skia/third_party/externals/icu/source/tools/genrb/
Dustr.c82 ustr_cpy(struct UString *dst, in ustr_cpy() argument
86 if(U_FAILURE(*status) || dst == src) in ustr_cpy()
89 if(dst->fCapacity < src->fLength) { in ustr_cpy()
90 ustr_resize(dst, ALLOCATION(src->fLength), status); in ustr_cpy()
94 if(src->fChars == NULL || dst->fChars == NULL){ in ustr_cpy()
97 u_memcpy(dst->fChars, src->fChars, src->fLength); in ustr_cpy()
98 dst->fLength = src->fLength; in ustr_cpy()
99 dst->fChars[dst->fLength] = 0x0000; in ustr_cpy()
121 ustr_cat(struct UString *dst, in ustr_cat() argument
125 ustr_ncat(dst, src, src->fLength, status); in ustr_cat()
[all …]
/third_party/icu/icu4c/source/tools/genrb/
Dustr.c82 ustr_cpy(struct UString *dst, in ustr_cpy() argument
86 if(U_FAILURE(*status) || dst == src) in ustr_cpy()
89 if(dst->fCapacity < src->fLength) { in ustr_cpy()
90 ustr_resize(dst, ALLOCATION(src->fLength), status); in ustr_cpy()
94 if(src->fChars == NULL || dst->fChars == NULL){ in ustr_cpy()
97 u_memcpy(dst->fChars, src->fChars, src->fLength); in ustr_cpy()
98 dst->fLength = src->fLength; in ustr_cpy()
99 dst->fChars[dst->fLength] = 0x0000; in ustr_cpy()
121 ustr_cat(struct UString *dst, in ustr_cat() argument
125 ustr_ncat(dst, src, src->fLength, status); in ustr_cat()
[all …]

12345678910>>...170