Lines Matching defs:dst
1332 void si_resource_copy_region(struct pipe_context *ctx, struct pipe_resource *dst,
1360 void si_replace_buffer_storage(struct pipe_context *ctx, struct pipe_resource *dst,
1415 void si_clear_buffer(struct si_context *sctx, struct pipe_resource *dst,
1419 void si_compute_clear_buffer_rmw(struct si_context *sctx, struct pipe_resource *dst,
1423 void si_screen_clear_buffer(struct si_screen *sscreen, struct pipe_resource *dst, uint64_t offset,
1425 void si_copy_buffer(struct si_context *sctx, struct pipe_resource *dst, struct pipe_resource *src,
1427 bool si_compute_copy_image(struct si_context *sctx, struct pipe_resource *dst, unsigned dst_level,
1444 struct pipe_resource *dst, uint64_t offset, uint64_t size,
1447 void si_cp_dma_copy_buffer(struct si_context *sctx, struct pipe_resource *dst,
1455 struct si_resource *dst, unsigned dst_offset, unsigned src_sel,
1492 bool si_sdma_copy_image(struct si_context *ctx, struct si_texture *dst, struct si_texture *src);
1659 struct si_shader_selector **dst, struct si_shader_selector *src)
1661 if (*dst == src)
1664 struct si_screen *sscreen = src ? src->screen : (*dst)->screen;
1665 util_shader_reference(&sctx->b, &sscreen->live_shader_cache, (void **)dst, src);
1780 static inline void si_saved_cs_reference(struct si_saved_cs **dst, struct si_saved_cs *src)
1782 if (pipe_reference(&(*dst)->reference, &src->reference))
1783 si_destroy_saved_cs(*dst);
1785 *dst = src;