HomeSort by relevance Sort by last modified time
    Searched refs:extent (Results 126 - 150 of 468) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/deqp/external/vulkancts/modules/vulkan/synchronization/
vktSynchronizationOperation.cpp 265 //! Get size in bytes of a pixel buffer with given extent.
266 VkDeviceSize getPixelBufferSize (const VkFormat format, const VkExtent3D& extent)
269 return (pixelSize * extent.width * extent.height * extent.depth);
698 , m_bufferSize (getPixelBufferSize(m_resource.getImage().format, m_resource.getImage().extent))
718 makeImageCreateInfo(m_resource.getImage().imageType, m_resource.getImage().extent, m_resource.getImage().format, VK_IMAGE_USAGE_TRANSFER_SRC_BIT | VK_IMAGE_USAGE_TRANSFER_DST_BIT),
725 const VkBufferImageCopy bufferCopyRegion = makeBufferImageCopy(m_resource.getImage().subresourceLayers, m_resource.getImage().extent);
814 const VkExtent3D extent = resource.getImage().extent; local
2156 const VkExtent3D& extent = m_resource.getImage().extent; local
2533 const VkExtent3D& extent = m_resource.getImage().extent; local
    [all...]
  /frameworks/base/libs/hwui/renderthread/
VulkanManager.cpp 298 void VulkanManager::createBuffers(VulkanSurface* surface, VkFormat format, VkExtent2D extent) {
319 GrBackendRenderTarget backendRT(extent.width, extent.height, 0, 0, info);
406 VkExtent2D extent = caps.currentExtent; local
408 if (extent.width < caps.minImageExtent.width) {
409 extent.width = caps.minImageExtent.width;
411 SkASSERT(extent.width <= caps.maxImageExtent.width);
413 if (extent.height < caps.minImageExtent.height) {
414 extent.height = caps.minImageExtent.height;
416 SkASSERT(extent.height <= caps.maxImageExtent.height)
    [all...]
  /system/libhidl/base/include/hidl/
MQDescriptor.h 35 uint64_t extent __attribute__ ((aligned(8))); member in struct:android::hardware::GrantorDescriptor
41 static_assert(offsetof(GrantorDescriptor, extent) == 16, "wrong offset");
252 return mGrantors[DATAPTRPOS].extent;
  /system/update_engine/payload_generator/
inplace_generator.cc 60 vector<Extent> Allocate(const uint64_t block_count) {
61 vector<Extent> ret(1);
72 // Takes a vector of blocks and returns an equivalent vector of Extent
74 vector<Extent> CompressExtents(const vector<uint64_t>& blocks) {
75 vector<Extent> new_extents;
82 // Helper class to compare two operations by start block of the first Extent in
109 const vector<Extent>& remove_extents,
110 const vector<Extent>& replace_extents) {
135 vector<Extent> new_extents = CompressExtents(read_blocks);
149 vector<Extent> old_extents
666 Extent* extent = vertex->aop.op.add_dst_extents(); local
    [all...]
  /external/ImageMagick/coders/
sfw.c 228 extent;
326 extent=fwrite(header,(size_t) (offset-header+1),1,file);
327 (void) extent;
328 extent=fwrite(HuffmanTable,1,sizeof(HuffmanTable)/sizeof(*HuffmanTable),file);
329 extent=fwrite(offset+1,(size_t) (data-offset),1,file);
225 extent; local
  /external/deqp/external/vulkancts/modules/vulkan/api/
vktApiGranularityTests.cpp 62 extent.width = width;
63 extent.height = height;
64 extent.depth = depth;
71 VkExtent3D extent; member in struct:vkt::api::__anon17622::AttachmentInfo
174 it->extent, // VkExtent3D extent;
324 { 1, 1 } // VkExtent2D extent;
vktApiImageClearingTests.cpp 174 const VkExtent3D extent = getMipLevelExtent(baseExtent, mipLevel); local
175 results[mipLevel] = static_cast<deUint32>(extent.width * extent.height * extent.depth * pixelSize);
481 Move<VkImage> createImage (VkImageType imageType, VkFormat format, VkExtent3D extent, deUint32 arrayLayerCount, VkImageUsageFlags usage) const;
683 Move<VkImage> ImageClearingTestInstance::createImage (VkImageType imageType, VkFormat format, VkExtent3D extent, deUint32 arrayLayerCount, VkImageUsageFlags usage) const
692 extent, // VkExtent3D extent;
962 const VkExtent3D extent = getMipLevelExtent(m_params.imageExtent, mipLevel); local
1005 const VkExtent3D extent = getMipLevelExtent(m_params.imageExtent, mipLevel); local
1091 const VkExtent3D extent = getMipLevelExtent(m_params.imageExtent, mipLevel); local
    [all...]
  /external/mesa3d/src/amd/vulkan/
radv_meta_copy.c 40 const struct VkExtent3D *extent)
44 .width = DIV_ROUND_UP(extent->width , block.width),
45 .height = DIV_ROUND_UP(extent->height, block.height),
46 .depth = DIV_ROUND_UP(extent->depth , block.depth),
132 * extent is the size in texels of the source image to copy in width,
137 * Also, convert the offsets and extent from units of texels to units of
239 * extent is the size in texels of the source image to copy in width,
244 * Also, convert the offsets and extent from units of texels to units of
364 * Also, convert the offsets and extent from units of texels to units of
372 meta_region_extent_el(src_image, &pRegions[r].extent);
    [all...]
  /external/libvterm/src/
screen.c 889 int vterm_screen_get_attrs_extent(const VTermScreen *screen, VTermRect *extent, VTermPos pos, VTermAttrMask attrs)
894 extent->start_row = pos.row;
895 extent->end_row = pos.row + 1;
897 if(extent->start_col < 0)
898 extent->start_col = 0;
899 if(extent->end_col < 0)
900 extent->end_col = screen->cols;
904 for(col = pos.col - 1; col >= extent->start_col; col--)
907 extent->start_col = col + 1;
909 for(col = pos.col + 1; col < extent->end_col; col++
    [all...]
  /external/ImageMagick/MagickCore/
annotate.c 747 extent;
769 (void) ResetMagickMemory(&extent,0,sizeof(extent));
774 status=GetTypeMetrics(image,annotate_info,&extent,exception);
775 *metrics=extent;
779 status=GetTypeMetrics(image,annotate_info,&extent,exception);
780 if (extent.width > metrics->width)
781 *metrics=extent;
739 extent; local
1040 extent; local
1852 extent, local
    [all...]
nt-base.c 859 % MagickBooleanType NTGetExecutionPath(char *path,const size_t extent)
865 % o extent: the maximum extent of the path.
869 const size_t extent)
874 (void) GetModuleFileNameW((HMODULE) NULL,wide_path,(DWORD) extent);
875 (void) WideCharToMultiByte(CP_UTF8,0,wide_path,-1,path,(int) extent,NULL,
1057 extent, local
1140 extent; local
1191 extent; local
    [all...]
configure.c 1163 extent; local
    [all...]
type.c 1084 extent; local
    [all...]
  /external/Microsoft-GSL/tests/
multi_span_tests.cpp 885 TEST_CASE("extent")
889 CHECK(s.extent() == 0);
890 CHECK(s.extent(0) == 0);
891 CHECK_THROWS_AS(s.extent(1), fail_fast);
893 CHECK(s.extent<1>() == 0);
899 CHECK(s.extent() == 0);
900 CHECK(s.extent(0) == 0);
901 CHECK_THROWS_AS(s.extent(1), fail_fast);
908 CHECK(s.extent() == 1);
909 CHECK(s.extent<0>() == 1)
    [all...]
  /bionic/libc/kernel/tools/
cpp.py 236 conf.lib.clang_tokenize(self._tu, self._tu.cursor.extent,
    [all...]
  /external/e2fsprogs/lib/ext2fs/
fallocate.c 31 * Extent-based fallocate code.
37 * the range. If there's a left extent that can grow by at least a cluster and
40 * extent is initialized) and adjust the extent. Ditto for the blocks between
41 * the end of the last full lcluster and end, if there's a right extent.
43 * Try to attach as much as we can to the left extent, then try to attach as
44 * much as we can to the right extent. For the remainder, try to allocate the
47 * To attach to a left extent, figure out the maximum amount we can add to the
48 * extent and try to allocate that much, and append if successful. To attach
49 * to a right extent, figure out the max we can add to the extent, try t
    [all...]
  /external/e2fsprogs/resize/
Makefile.in 18 RESIZE_OBJS= extent.o resize2fs.o main.o online.o resource_track.o \
21 TEST_EXTENT_OBJS= extent.o test_extent.o
23 SRCS= $(srcdir)/extent.c \
149 extent.o: $(srcdir)/extent.c $(top_builddir)/lib/config.h \
  /external/deqp/external/vulkancts/framework/vulkan/
vkNullDriver.cpp 286 , m_extent (pCreateInfo->extent)
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/sparse_resources/
vktSparseResourcesImageSparseBinding.cpp 163 imageSparseInfo.extent = makeExtent3D(getLayerSize(m_imageType, m_imageSize)); //VkExtent3D extent;
189 imageSparseInfo.mipLevels = getImageMaxMipLevels(imageFormatProperties, imageSparseInfo.extent);
265 bufferImageCopy[mipmapNdx] = makeBufferImageCopy(mipLevelExtents(imageSparseInfo.extent, mipmapNdx), imageSparseInfo.arrayLayers, mipmapNdx, static_cast<VkDeviceSize>(bufferOffset));
266 bufferOffset += getImageMipLevelSizeInBytes(imageSparseInfo.extent, imageSparseInfo.arrayLayers, m_format, mipmapNdx, BUFFER_IMAGE_COPY_OFFSET_GRANULARITY);
273 const deUint32 imageSizeInBytes = getImageSizeInBytes(imageSparseInfo.extent, imageSparseInfo.arrayLayers, m_format, imageSparseInfo.mipLevels, BUFFER_IMAGE_COPY_OFFSET_GRANULARITY);
372 const deUint32 mipLevelSizeInBytes = getImageMipLevelSizeInBytes(imageSparseInfo.extent, imageSparseInfo.arrayLayers, m_format, mipmapNdx);
  /external/lzma/CPP/7zip/Common/
LimitedStreams.cpp 174 const CSeekExtent &extent = Extents[left]; local
175 UInt64 phyPos = extent.Phy + (_virtPos - extent.Virt);
  /external/deqp/external/vulkancts/modules/vulkan/memory/
vktMemoryRequirementsTests.cpp 1032 VkExtent3D extent = { 64u, 64u, 4u }; local
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/multiview/
vktMultiViewRenderUtil.hpp 37 vk::VkImageCreateInfo makeImageCreateInfo (const vk::VkImageType imageType, const vk::VkExtent3D& extent, const vk::VkFormat format, const vk::VkImageUsageFlags usage);
  /external/e2fsprogs/po/
at-expand.pl 104 $msg =~ s/\@x/extent/g;
  /external/puffin/src/
stream_unittest.cc 263 for (const auto& extent : extents) {
264 std::fill(buf.begin() + extent.offset,
265 buf.begin() + (extent.offset + extent.length), 3);
  /external/vulkan-validation-layers/demos/smoke/
Shell.h 63 VkExtent2D extent; member in struct:Shell::Context

Completed in 2580 milliseconds

1 2 3 4 56 7 8 91011>>