Home
last modified time | relevance | path

Searched refs:dst_image (Results 1 – 12 of 12) sorted by relevance

/external/mesa3d/src/mesa/state_tracker/
Dst_cb_copyimage.c538 struct gl_texture_image *dst_image, in fallback_copy_image() argument
551 bool dst_is_compressed = dst_image && _mesa_is_format_compressed(dst_image->TexFormat); in fallback_copy_image()
572 line_bytes = _mesa_format_row_stride(dst_image->TexFormat, dst_w); in fallback_copy_image()
574 if (dst_image) { in fallback_copy_image()
576 st->ctx, dst_image, dst_z, in fallback_copy_image()
606 if (dst_image) { in fallback_copy_image()
607 st->ctx->Driver.UnmapTextureImage(st->ctx, dst_image, dst_z); in fallback_copy_image()
624 struct gl_texture_image *dst_image, in st_CopyImageSubData() argument
654 if (dst_image) { in st_CopyImageSubData()
655 struct st_texture_image *dst = st_texture_image(dst_image); in st_CopyImageSubData()
[all …]
/external/mesa3d/src/mesa/drivers/dri/i965/
Dintel_copy_image.c177 struct gl_texture_image *dst_image, in intel_copy_image_sub_data() argument
202 if (dst_image) { in intel_copy_image_sub_data()
203 dst_mt = intel_texture_image(dst_image)->mt; in intel_copy_image_sub_data()
205 dst_level = dst_image->Level + dst_image->TexObject->MinLevel; in intel_copy_image_sub_data()
208 if (dst_image->TexObject->Target == GL_TEXTURE_CUBE_MAP) in intel_copy_image_sub_data()
209 dst_z = dst_image->Face; in intel_copy_image_sub_data()
211 dst_z += dst_image->TexObject->MinLayer; in intel_copy_image_sub_data()
215 dst_image = dst_renderbuffer->TexImage; in intel_copy_image_sub_data()
Dbrw_blorp.c600 struct gl_texture_image *dst_image, in brw_blorp_copytexsubimage() argument
608 struct intel_texture_image *intel_image = intel_texture_image(dst_image); in brw_blorp_copytexsubimage()
631 _mesa_get_format_base_format(dst_image->TexFormat)) { in brw_blorp_copytexsubimage()
644 if (!brw->format_supported_as_render_target[dst_image->TexFormat]) in brw_blorp_copytexsubimage()
674 int dst_slice = slice + dst_image->TexObject->MinLayer + dst_image->Face; in brw_blorp_copytexsubimage()
675 int dst_level = dst_image->Level + dst_image->TexObject->MinLevel; in brw_blorp_copytexsubimage()
681 dst_image->TexFormat, in brw_blorp_copytexsubimage()
692 if (_mesa_get_format_bits(dst_image->TexFormat, GL_STENCIL_BITS) > 0 && in brw_blorp_copytexsubimage()
Dbrw_context.h1518 struct gl_texture_image *dst_image,
/external/libvpx/libvpx/test/
Dpp_filter_test.cc65 Buffer<uint8_t> dst_image = in TEST_P() local
67 ASSERT_TRUE(dst_image.Init()); in TEST_P()
80 dst_image.Set(99); in TEST_P()
83 src_image.TopLeftPixel(), dst_image.TopLeftPixel(), src_image.stride(), in TEST_P()
84 dst_image.stride(), block_width, flimits, 16)); in TEST_P()
90 uint8_t *pixel_ptr = dst_image.TopLeftPixel(); in TEST_P()
96 pixel_ptr += dst_image.stride(); in TEST_P()
120 Buffer<uint8_t> dst_image = in TEST_P() local
122 ASSERT_TRUE(dst_image.Init()); in TEST_P()
147 dst_image.Set(0); in TEST_P()
[all …]
/external/mesa3d/src/intel/vulkan/
Danv_blorp.c211 ANV_FROM_HANDLE(anv_image, dst_image, dstImage); in anv_CmdCopyImage()
220 anv_sanitize_image_offset(dst_image->type, pRegions[r].dstOffset); in anv_CmdCopyImage()
225 if (dst_image->type == VK_IMAGE_TYPE_3D) { in anv_CmdCopyImage()
231 anv_get_layerCount(dst_image, &pRegions[r].dstSubresource); in anv_CmdCopyImage()
253 get_blorp_surf_for_anv_image(dst_image, aspect, dst_image->aux_usage, in anv_CmdCopyImage()
369 ANV_FROM_HANDLE(anv_image, dst_image, dstImage); in anv_CmdCopyBufferToImage()
371 copy_buffer_to_image(cmd_buffer, src_buffer, dst_image, in anv_CmdCopyBufferToImage()
425 ANV_FROM_HANDLE(anv_image, dst_image, dstImage); in anv_CmdBlitImage()
450 get_blorp_surf_for_anv_image(dst_image, dst_res->aspectMask, in anv_CmdBlitImage()
451 dst_image->aux_usage, &dst); in anv_CmdBlitImage()
[all …]
/external/tensorflow/tensorflow/compiler/jit/
Dencapsulate_subgraphs_pass.cc506 const Node* original_dst_node, Node** dst_image);
679 Node* dst_image = node_images.at(dst_node); in RecordArg() local
682 graph_->AddEdge(args_[arg_index], 0, dst_image, dst_slot); in RecordArg()
820 Node* dst_image = node_images.at(dst_node); in AddHostComputes() local
824 graph_->AddEdge(host_compute, output_index, dst_image, dst_slot); in AddHostComputes()
830 Node* dst_image = node_images.at(dst_node); in AddHostComputes() local
831 graph_->AddControlEdge(host_compute, dst_image); in AddHostComputes()
1234 Node* dst_image = gtl::FindWithDefault(node_images, edge->dst(), nullptr); in CopySubgraphEdges() local
1242 g->AddControlEdge(src_image, dst_image); in CopySubgraphEdges()
1244 g->AddEdge(src_image, edge->src_output(), dst_image, edge->dst_input()); in CopySubgraphEdges()
[all …]
/external/tensorflow/tensorflow/examples/android/jni/object_tracking/
Dtracked_object.cc24 Image<float>* const dst_image) { in InitNormalized() argument
26 CopyArea(src_image, scaled_box, dst_image); in InitNormalized()
27 NormalizeImage(dst_image); in InitNormalized()
/external/vboot_reference/scripts/image_signing/
Dswap_rootfs.sh13 Usage: $PROG dst_image src_image
14 This will put the root file system from src_image into dst_image.
/external/opencv/cv/src/
Dcvpyrsegmentation.cpp182 uchar * dst_image, int dst_step, in icvPyrSegmentation8uC1R() argument
218 if( !src_image || !dst_image || !storage || !dst_comp ) in icvPyrSegmentation8uC1R()
565 _c.f = p_cur->c; dst_image[j] = (uchar)_c.i; in icvPyrSegmentation8uC1R()
574 dst_image += dst_step; in icvPyrSegmentation8uC1R()
595 uchar * dst_image, int dst_step, in icvPyrSegmentation8uC3R() argument
635 if( !src_image || !dst_image || !storage || !dst_comp ) in icvPyrSegmentation8uC3R()
997 _c.f = p_cur->c.blue; dst_image[j*3] = (uchar)_c.i; in icvPyrSegmentation8uC3R()
998 _c.f = p_cur->c.green; dst_image[j*3+1] = (uchar)_c.i; in icvPyrSegmentation8uC3R()
999 _c.f = p_cur->c.red; dst_image[j*3+2] = (uchar)_c.i; in icvPyrSegmentation8uC3R()
1008 dst_image += dst_step; in icvPyrSegmentation8uC3R()
/external/mesa3d/src/gallium/state_trackers/clover/api/
Ddispatch.hpp373 cl_mem dst_image,
395 cl_mem dst_image,
/external/vulkan-validation-layers/tests/
Dlayer_validation_tests.cpp3205 VkImageObj dst_image(m_device); in TEST_F() local
3206 dst_image.init(&image_create_info); in TEST_F()
3207 dst_image.SetLayout(VK_IMAGE_ASPECT_COLOR_BIT, VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL); in TEST_F()
3212 …mandBuffer->handle(), src_image.handle(), VK_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL, dst_image.handle(), in TEST_F()
3228 VkImageObj dst_image(m_device); in TEST_F() local
3229 dst_image.init(&image_create_info); in TEST_F()
3230 dst_image.SetLayout(VK_IMAGE_ASPECT_COLOR_BIT, VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL); in TEST_F()
3235 …mandBuffer->handle(), src_image.handle(), VK_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL, dst_image.handle(), in TEST_F()
3257 VkImageObj dst_image(m_device); in TEST_F() local
3258 dst_image.init(&image_create_info); in TEST_F()
[all …]