Home
last modified time | relevance | path

Searched refs:dst_buf (Results 1 – 21 of 21) sorted by relevance

/third_party/ffmpeg/tools/
Dffescape.c58 char *src_buf, *dst_buf; in main() local
170 dst_buf = src_buf; in main()
172 if (av_escape(&dst_buf, src_buf, special_chars, escape_mode, escape_flags) < 0) { in main()
177 src_buf = dst_buf; in main()
180 fprintf(outfile, "%s%s", prompt, dst_buf); in main()
181 av_free(dst_buf); in main()
/third_party/mesa3d/src/gallium/frontends/omx/
Dvid_dec_common.c94 struct pipe_video_buffer *dst_buf = NULL; in vid_dec_FillOutput() local
102 dst_buf = util_hash_table_get(priv->video_buffer_map, output); in vid_dec_FillOutput()
103 assert(dst_buf); in vid_dec_FillOutput()
105 dst_surface = dst_buf->get_surfaces(dst_buf); in vid_dec_FillOutput()
Dvid_enc_common.c426 struct vl_video_buffer *dst_buf = (struct vl_video_buffer *)vbuf; in enc_LoadImage_common() local
454 image[1].resource = dst_buf->resources[0]; in enc_LoadImage_common()
458 image[2].resource = dst_buf->resources[1]; in enc_LoadImage_common()
512 dst_buf->resources[0], in enc_LoadImage_common()
526 blit.dst.resource = dst_buf->resources[1]; in enc_LoadImage_common()
/third_party/skia/third_party/externals/libwebp/src/dec/
Dbuffer_dec.c270 WebPDecBuffer* const dst_buf) { in WebPCopyDecBufferPixels() argument
271 assert(src_buf != NULL && dst_buf != NULL); in WebPCopyDecBufferPixels()
272 assert(src_buf->colorspace == dst_buf->colorspace); in WebPCopyDecBufferPixels()
274 dst_buf->width = src_buf->width; in WebPCopyDecBufferPixels()
275 dst_buf->height = src_buf->height; in WebPCopyDecBufferPixels()
276 if (CheckDecBuffer(dst_buf) != VP8_STATUS_OK) { in WebPCopyDecBufferPixels()
281 const WebPRGBABuffer* const dst = &dst_buf->u.RGBA; in WebPCopyDecBufferPixels()
287 const WebPYUVABuffer* const dst = &dst_buf->u.YUVA; in WebPCopyDecBufferPixels()
/third_party/flutter/skia/third_party/externals/libwebp/src/dec/
Dbuffer_dec.c272 WebPDecBuffer* const dst_buf) { in WebPCopyDecBufferPixels() argument
273 assert(src_buf != NULL && dst_buf != NULL); in WebPCopyDecBufferPixels()
274 assert(src_buf->colorspace == dst_buf->colorspace); in WebPCopyDecBufferPixels()
276 dst_buf->width = src_buf->width; in WebPCopyDecBufferPixels()
277 dst_buf->height = src_buf->height; in WebPCopyDecBufferPixels()
278 if (CheckDecBuffer(dst_buf) != VP8_STATUS_OK) { in WebPCopyDecBufferPixels()
283 const WebPRGBABuffer* const dst = &dst_buf->u.RGBA; in WebPCopyDecBufferPixels()
289 const WebPYUVABuffer* const dst = &dst_buf->u.YUVA; in WebPCopyDecBufferPixels()
/third_party/pixman/test/
Dthread-test.c27 uint32_t *dst_buf; member
102 prng_randmemset_r (&info->prng_state, info->dst_buf, in thread()
110 RAND_ELT (formats), DEST_WIDTH, 1, info->dst_buf, in thread()
168 info[i].dst_buf = &dest[i * DEST_WIDTH]; in main()
Dsolid-test.c273 uint32_t dst_buf[WIDTH * HEIGHT]; in test_solid() local
286 dst_img = create_multi_pixel_image (img_fmt_list, dst_buf, &dst_fmt); in test_solid()
/third_party/curl/tests/server/
Dgetpart.c178 static int appenddata(char **dst_buf, /* dest buffer */ in appenddata() argument
203 char *newptr = realloc(*dst_buf, newsize); in appenddata()
208 *dst_buf = newptr; in appenddata()
212 memcpy(*dst_buf + *dst_len, src_buf, src_len); in appenddata()
214 *(*dst_buf + *dst_len) = '\0'; in appenddata()
/third_party/skia/third_party/externals/abseil-cpp/absl/flags/internal/
Dsequence_lock_test.cc161 std::vector<char> dst_buf(size, '0'); in TEST_P() local
162 ASSERT_TRUE(seq_lock.TryRead(dst_buf.data(), protected_buf.data(), size)); in TEST_P()
163 ASSERT_EQ(src_buf, dst_buf); in TEST_P()
/third_party/mesa3d/src/amd/vulkan/
Dradv_query.c72 radv_store_availability(nir_builder *b, nir_ssa_def *flags, nir_ssa_def *dst_buf, in radv_store_availability() argument
79 nir_store_ssbo(b, nir_vec2(b, value32, nir_imm_int(b, 0)), dst_buf, offset, .write_mask = 0x3, in radv_store_availability()
84 nir_store_ssbo(b, value32, dst_buf, offset, .write_mask = 0x1, .align_mul = 4); in radv_store_availability()
149 nir_ssa_def *dst_buf = radv_meta_load_descriptor(&b, 0, 0); in build_occlusion_query_shader() local
209 nir_store_ssbo(&b, nir_load_var(&b, result), dst_buf, output_base, .write_mask = 0x1, in build_occlusion_query_shader()
214 nir_store_ssbo(&b, nir_u2u32(&b, nir_load_var(&b, result)), dst_buf, output_base, in build_occlusion_query_shader()
220 radv_store_availability(&b, flags, dst_buf, nir_iadd(&b, result_size, output_base), in build_occlusion_query_shader()
284 nir_ssa_def *dst_buf = radv_meta_load_descriptor(&b, 0, 0); in build_pipeline_statistics_query_shader() local
302 radv_store_availability(&b, flags, dst_buf, in build_pipeline_statistics_query_shader()
326 nir_store_ssbo(&b, result, dst_buf, nir_load_var(&b, output_offset), .write_mask = 0x1, in build_pipeline_statistics_query_shader()
[all …]
Dradv_meta_buffer.c20 nir_ssa_def *dst_buf = radv_meta_load_descriptor(&b, 0, 0); in build_buffer_fill_shader() local
25 nir_store_ssbo(&b, swizzled_load, dst_buf, offset, .write_mask = 0xf, in build_buffer_fill_shader()
44 nir_ssa_def *dst_buf = radv_meta_load_descriptor(&b, 0, 0); in build_buffer_copy_shader() local
48 nir_store_ssbo(&b, load, dst_buf, offset, .write_mask = 0xf, .access = ACCESS_NON_READABLE, in build_buffer_copy_shader()
/third_party/ffmpeg/libavfilter/
Dvf_zscale.c554 zimg_image_buffer dst_buf = { ZIMG_API_VERSION }; in filter_frame() local
697 dst_buf.plane[plane].data = out->data[p]; in filter_frame()
698 dst_buf.plane[plane].stride = out->linesize[p]; in filter_frame()
699 dst_buf.plane[plane].mask = -1; in filter_frame()
702 ret = zimg_filter_graph_process(s->graph, &src_buf, &dst_buf, s->tmp, 0, 0, 0, 0); in filter_frame()
713 dst_buf.plane[0].data = out->data[3]; in filter_frame()
714 dst_buf.plane[0].stride = out->linesize[3]; in filter_frame()
715 dst_buf.plane[0].mask = -1; in filter_frame()
717 ret = zimg_filter_graph_process(s->alpha_graph, &src_buf, &dst_buf, s->tmp, 0, 0, 0, 0); in filter_frame()
Dvf_blend.c609 AVFrame *dst_buf; in blend_frame() local
612 dst_buf = ff_get_video_buffer(outlink, outlink->w, outlink->h); in blend_frame()
613 if (!dst_buf) in blend_frame()
615 av_frame_copy_props(dst_buf, top_buf); in blend_frame()
620 int outw = AV_CEIL_RSHIFT(dst_buf->width, hsub); in blend_frame()
621 int outh = AV_CEIL_RSHIFT(dst_buf->height, vsub); in blend_frame()
623 ThreadData td = { .top = top_buf, .bottom = bottom_buf, .dst = dst_buf, in blend_frame()
633 return dst_buf; in blend_frame()
639 AVFrame *top_buf, *bottom_buf, *dst_buf; in blend_frame_for_dualinput() local
647 dst_buf = blend_frame(ctx, top_buf, bottom_buf); in blend_frame_for_dualinput()
[all …]
/third_party/alsa-lib/src/pcm/
Dpcm_rate.c68 snd_pcm_channel_area_t *dst_buf; member
426 rate_free_tmp_buf(&rate->dst_buf); in snd_pcm_rate_hw_params()
457 rate->dst_buf = rate_alloc_tmp_buf(rate->info.out.format, in snd_pcm_rate_hw_params()
459 if (!rate->dst_buf) { in snd_pcm_rate_hw_params()
469 rate_free_tmp_buf(&rate->dst_buf); in snd_pcm_rate_hw_params()
488 rate_free_tmp_buf(&rate->dst_buf); in snd_pcm_rate_hw_free()
579 if (rate->dst_buf) { in do_convert()
580 out_areas = rate->dst_buf; in do_convert()
605 if (rate->dst_buf) in do_convert()
607 rate->dst_buf, 0, in do_convert()
/third_party/ffmpeg/libavcodec/
Dindeo5.c600 ctx->dst_buf = ctx->buf_switch; in switch_buffers()
608 FFSWAP(int, ctx->dst_buf, ctx->ref2_buf); in switch_buffers()
621 ctx->dst_buf = ctx->buf_switch; in switch_buffers()
Dindeo4.c656 FFSWAP(int, ctx->dst_buf, ctx->ref_buf); in switch_buffers()
659 FFSWAP(int, ctx->dst_buf, ctx->ref_buf); in switch_buffers()
695 ctx->dst_buf = 0; in decode_init()
Divi.h233 int dst_buf; ///< buffer index for the currently decoded frame member
Divi.c945 band->buf = prepare_buf(ctx, band, ctx->dst_buf); in decode_band()
1114 ctx->buf_invalid[ctx->dst_buf] = 1; in ff_ivi_decode_frame()
1125 ctx->buf_invalid[ctx->dst_buf] = 0; in ff_ivi_decode_frame()
1135 if (ctx->buf_invalid[ctx->dst_buf]) in ff_ivi_decode_frame()
/third_party/mesa3d/src/gallium/drivers/d3d12/
Dd3d12_blit.cpp46 ID3D12Resource *dst_buf = d3d12_resource_underlying(dst, &dst_off); in copy_buffer_region_no_barriers() local
49 ctx->cmdlist->CopyBufferRegion(dst_buf, dst_offset + dst_off, in copy_buffer_region_no_barriers()
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/
Dctrl_iface.c5891 u8 dst_buf[ETH_ALEN], *dst; in p2p_ctrl_serv_disc_req() local
5896 if (hwaddr_aton(cmd, dst_buf)) in p2p_ctrl_serv_disc_req()
5898 dst = dst_buf; in p2p_ctrl_serv_disc_req()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/
Dctrl_iface.c6274 u8 dst_buf[ETH_ALEN], *dst; in p2p_ctrl_serv_disc_req() local
6279 if (hwaddr_aton(cmd, dst_buf)) in p2p_ctrl_serv_disc_req()
6281 dst = dst_buf; in p2p_ctrl_serv_disc_req()