Home
last modified time | relevance | path

Searched refs:dstRegion (Results 1 – 5 of 5) sorted by relevance

/external/OpenCL-CTS/test_conformance/images/clCopyImage/
Dtest_copy_generic.cpp381 size_t dstRegion[ 3 ] = { dstImageInfo->width, 1, 1}; in test_copy_image_generic() local
402 dstRegion[ 0 ] = (dstImageInfo->width >> dst_lod)?(dstImageInfo->width >> dst_lod) : 1; in test_copy_image_generic()
411 dstRegion[ 1 ] = dstImageInfo->height; in test_copy_image_generic()
414dstRegion[ 1 ] = (dstImageInfo->height >> dst_lod) ?(dstImageInfo->height >> dst_lod): 1; in test_copy_image_generic()
419 dstRegion[ 1 ] = dstImageInfo->height; in test_copy_image_generic()
420 dstRegion[ 2 ] = dstImageInfo->depth; in test_copy_image_generic()
423dstRegion[ 1 ] = (dstImageInfo->height >> dst_lod) ?(dstImageInfo->height >> dst_lod): 1; in test_copy_image_generic()
424dstRegion[ 2 ] = (dstImageInfo->depth >> dst_lod) ?(dstImageInfo->depth >> dst_lod): 1; in test_copy_image_generic()
429 dstRegion[ 1 ] = dstImageInfo->arraySize; in test_copy_image_generic()
434 dstRegion[ 1 ] = dstImageInfo->height; in test_copy_image_generic()
[all …]
/external/deqp/modules/gles3/functional/
Des3fVertexTextureTests.cpp460 …mpler& sampler, const PosTexCoordQuadGrid<TexType>& grid, tcu::Surface& dst, const Rect& dstRegion) in computeReference() argument
474 setPixelColors(quadColors, dstRegion, grid, dst); in computeReference()
504 …Cell (int textureNdx, float lod, const Grid& grid, tcu::Surface& dst, const Rect& dstRegion) const;
786 …eCell (int textureNdx, float lod, const Grid& grid, tcu::Surface& dst, const Rect& dstRegion) const in computeReferenceCell()
788 …xture(), lod, glu::mapGLSampler(m_wrapS, m_wrapT, m_minFilter, m_magFilter), grid, dst, dstRegion); in computeReferenceCell()
810 …Cell (int textureNdx, float lod, const Grid& grid, tcu::Surface& dst, const Rect& dstRegion) const;
1122 …eCell (int textureNdx, float lod, const Grid& grid, tcu::Surface& dst, const Rect& dstRegion) const in computeReferenceCell()
1126 computeReference(m_textures[textureNdx]->getRefTexture(), lod, sampler, grid, dst, dstRegion); in computeReferenceCell()
1148 …ell (int textureNdx, float lod, const Grid& grid, tcu::Surface& dst, const Rect& dstRegion) const;
1462 …eCell (int textureNdx, float lod, const Grid& grid, tcu::Surface& dst, const Rect& dstRegion) const in computeReferenceCell()
[all …]
/external/deqp/modules/gles2/functional/
Des2fVertexTextureTests.cpp363 …mpler& sampler, const PosTexCoordQuadGrid<TexType>& grid, tcu::Surface& dst, const Rect& dstRegion) in computeReference() argument
377 setPixelColors(quadColors, dstRegion, grid, dst); in computeReference()
407 …Cell (int textureNdx, float lod, const Grid& grid, tcu::Surface& dst, const Rect& dstRegion) const;
686 …eCell (int textureNdx, float lod, const Grid& grid, tcu::Surface& dst, const Rect& dstRegion) const in computeReferenceCell()
688 …xture(), lod, glu::mapGLSampler(m_wrapS, m_wrapT, m_minFilter, m_magFilter), grid, dst, dstRegion); in computeReferenceCell()
710 …Cell (int textureNdx, float lod, const Grid& grid, tcu::Surface& dst, const Rect& dstRegion) const;
1024 …eCell (int textureNdx, float lod, const Grid& grid, tcu::Surface& dst, const Rect& dstRegion) const in computeReferenceCell()
1028 computeReference(m_textures[textureNdx]->getRefTexture(), lod, sampler, grid, dst, dstRegion); in computeReferenceCell()
/external/angle/src/libANGLE/renderer/vulkan/
DUtilsVk.cpp3011 VkBufferImageCopy dstRegion = {}; in copyImageBits() local
3012 dstRegion.imageSubresource.aspectMask = VK_IMAGE_ASPECT_COLOR_BIT; in copyImageBits()
3013 dstRegion.imageSubresource.mipLevel = dest->toVkLevel(params.dstLevel).get(); in copyImageBits()
3014 dstRegion.imageSubresource.baseArrayLayer = isDst3D ? 0 : params.dstOffset[2]; in copyImageBits()
3015 dstRegion.imageSubresource.layerCount = isDst3D ? 1 : params.copyExtents[2]; in copyImageBits()
3016 dstRegion.imageOffset.x = params.dstOffset[0]; in copyImageBits()
3017 dstRegion.imageOffset.y = params.dstOffset[1]; in copyImageBits()
3018 dstRegion.imageOffset.z = isDst3D ? params.dstOffset[2] : 0; in copyImageBits()
3019 dstRegion.imageExtent.width = params.copyExtents[0]; in copyImageBits()
3020 dstRegion.imageExtent.height = params.copyExtents[1]; in copyImageBits()
[all …]
/external/llvm-project/mlir/lib/Transforms/
DLoopFusion.cpp976 MemRefRegion dstRegion(dstOpInst->getLoc()); in canFuseSrcWhichWritesToLiveOut() local
977 if (failed(dstRegion.compute(dstOpInst, /*loopDepth=*/0))) { in canFuseSrcWhichWritesToLiveOut()
986 dstRegion.getConstantBoundingSizeAndShape(&dstShape); in canFuseSrcWhichWritesToLiveOut()