Home
last modified time | relevance | path

Searched refs:extent (Results 1 - 25 of 571) sorted by relevance

12345678910>>...23

/kernel/liteos_a/kernel/extended/container/
H A Dlos_user_container.c86 userContainer->uidMap.extent[0].count = 4294967295U; in OsCreateUserContainer()
88 userContainer->gidMap.extent[0].count = 4294967295U; in OsCreateUserContainer()
116 first = map->extent[idx].lowerFirst; in MapIdUpBase()
117 last = first + map->extent[idx].count - 1; in MapIdUpBase()
119 return &map->extent[idx]; in MapIdUpBase()
132 UidGidExtent *extent = MapIdUpBase(extents, map, id); in MapIdUp() local
133 if (extent != NULL) { in MapIdUp()
134 return ((id - extent->lowerFirst) + extent->first); in MapIdUp()
177 first = map->extent[id in MapIdRangeDownBase()
193 UidGidExtent *extent = MapIdRangeDownBase(extents, map, id, count); MapIdRangeDown() local
216 InsertExtent(UidGidMap *idMap, UidGidExtent *extent) InsertExtent() argument
229 MappingsOverlap(UidGidMap *idMap, UidGidExtent *extent) MappingsOverlap() argument
296 ParsePosData(CHAR *pos, UidGidExtent *extent) ParsePosData() argument
324 ParseUserData(CHAR *kbuf, UidGidExtent *extent, UidGidMap *newMap) ParseUserData() argument
387 UidGidExtent *extent = &newMap->extent[idx]; ParentMapIdRange() local
402 UidGidExtent extent; OsUserContainerMapWrite() local
[all...]
/third_party/skia/third_party/externals/swiftshader/src/WSI/
H A DWin32SurfaceKHR.cpp66 VkExtent2D extent; in getSurfaceCapabilities() local
67 VkResult result = getWindowSize(hwnd, extent); in getSurfaceCapabilities()
68 pSurfaceCapabilities->currentExtent = extent; in getSurfaceCapabilities()
69 pSurfaceCapabilities->minImageExtent = extent; in getSurfaceCapabilities()
70 pSurfaceCapabilities->maxImageExtent = extent; in getSurfaceCapabilities()
101 const VkExtent3D &extent = image->getImage()->getExtent(); in present() local
103 if(windowExtent.width != extent.width || windowExtent.height != extent.height) in present()
110 StretchBlt(windowContext, 0, 0, extent.width, extent in present()
[all...]
H A DXlibSurfaceKHR.cpp57 VkExtent2D extent = { static_cast<uint32_t>(attr.width), static_cast<uint32_t>(attr.height) }; in getSurfaceCapabilities() local
59 pSurfaceCapabilities->currentExtent = extent; in getSurfaceCapabilities()
60 pSurfaceCapabilities->minImageExtent = extent; in getSurfaceCapabilities()
61 pSurfaceCapabilities->maxImageExtent = extent; in getSurfaceCapabilities()
70 const VkExtent3D &extent = image->getImage()->getExtent(); in attachImage() local
75 XImage *xImage = libX11->XCreateImage(pDisplay, visual, attr.depth, ZPixmap, 0, buffer, extent.width, extent.height, 32, bytes_per_line); in attachImage()
104 const VkExtent3D &extent = image->getImage()->getExtent(); in present() local
106 if(windowExtent.width != extent.width || windowExtent.height != extent in present()
[all...]
H A DWaylandSurfaceKHR.cpp74 const VkExtent3D &extent = image->getImage()->getExtent(); in attachImage() local
76 ftruncate(fd, extent.height * stride); in attachImage()
77 struct wl_shm_pool *pool = wl_shm_create_pool(shm, fd, extent.height * stride); in attachImage()
78 wlImage->buffer = wl_shm_pool_create_buffer(pool, 0, extent.width, extent.height, stride, WL_SHM_FORMAT_XRGB8888); in attachImage()
79 wlImage->data = static_cast<uint8_t *>(mmap(NULL, extent.height * stride, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0)); in attachImage()
91 const VkExtent3D &extent = image->getImage()->getExtent(); in detachImage() local
93 munmap(wlImage->data, extent.height * stride); in detachImage()
106 const VkExtent3D &extent = image->getImage()->getExtent(); in present() local
110 wl_surface_damage(surface, 0, 0, extent in present()
[all...]
H A DXcbSurfaceKHR.cpp64 VkExtent2D extent; in getSurfaceCapabilities() local
66 if(!getWindowSizeAndDepth(connection, window, &extent, &depth)) in getSurfaceCapabilities()
71 pSurfaceCapabilities->currentExtent = extent; in getSurfaceCapabilities()
72 pSurfaceCapabilities->minImageExtent = extent; in getSurfaceCapabilities()
73 pSurfaceCapabilities->maxImageExtent = extent; in getSurfaceCapabilities()
109 const VkExtent3D &extent = image->getImage()->getExtent(); in present() local
111 if(windowExtent.width != extent.width || windowExtent.height != extent.height) in present()
119 size_t bufferSize = extent.height * stride; in present()
125 extent in present()
[all...]
H A DDirectFBSurfaceEXT.cpp43 VkExtent2D extent = { static_cast<uint32_t>(width), static_cast<uint32_t>(height) }; in getSurfaceCapabilities() local
45 pSurfaceCapabilities->currentExtent = extent; in getSurfaceCapabilities()
46 pSurfaceCapabilities->minImageExtent = extent; in getSurfaceCapabilities()
47 pSurfaceCapabilities->maxImageExtent = extent; in getSurfaceCapabilities()
56 const VkExtent3D &extent = image->getImage()->getExtent(); in attachImage() local
57 desc.width = extent.width; in attachImage()
58 desc.height = extent.height; in attachImage()
/kernel/linux/linux-5.10/kernel/
H A Duser_namespace.c268 * map_id_range_down_base - Find idmap via binary search in static extent array.
280 /* Find the matching extent */ in map_id_range_down_base()
282 first = map->extent[idx].first; in map_id_range_down_base()
283 last = first + map->extent[idx].count - 1; in map_id_range_down_base()
286 return &map->extent[idx]; in map_id_range_down_base()
293 struct uid_gid_extent *extent; in map_id_range_down() local
298 extent = map_id_range_down_base(extents, map, id, count); in map_id_range_down()
300 extent = map_id_range_down_max(extents, map, id, count); in map_id_range_down()
303 if (extent) in map_id_range_down()
304 id = (id - extent in map_id_range_down()
356 struct uid_gid_extent *extent; map_id_up() local
581 struct uid_gid_extent *extent = v; uid_m_show() local
602 struct uid_gid_extent *extent = v; gid_m_show() local
623 struct uid_gid_extent *extent = v; projid_m_show() local
710 mappings_overlap(struct uid_gid_map *new_map, struct uid_gid_extent *extent) mappings_overlap() argument
754 insert_extent(struct uid_gid_map *map, struct uid_gid_extent *extent) insert_extent() argument
909 struct uid_gid_extent extent; map_write() local
[all...]
/kernel/linux/linux-6.6/kernel/
H A Duser_namespace.c289 * map_id_range_down_base - Find idmap via binary search in static extent array.
301 /* Find the matching extent */ in map_id_range_down_base()
303 first = map->extent[idx].first; in map_id_range_down_base()
304 last = first + map->extent[idx].count - 1; in map_id_range_down_base()
307 return &map->extent[idx]; in map_id_range_down_base()
314 struct uid_gid_extent *extent; in map_id_range_down() local
319 extent = map_id_range_down_base(extents, map, id, count); in map_id_range_down()
321 extent = map_id_range_down_max(extents, map, id, count); in map_id_range_down()
324 if (extent) in map_id_range_down()
325 id = (id - extent in map_id_range_down()
377 struct uid_gid_extent *extent; map_id_up() local
602 struct uid_gid_extent *extent = v; uid_m_show() local
623 struct uid_gid_extent *extent = v; gid_m_show() local
644 struct uid_gid_extent *extent = v; projid_m_show() local
731 mappings_overlap(struct uid_gid_map *new_map, struct uid_gid_extent *extent) mappings_overlap() argument
775 insert_extent(struct uid_gid_map *map, struct uid_gid_extent *extent) insert_extent() argument
930 struct uid_gid_extent extent; map_write() local
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/descriptor_indexing/
H A DvktDescriptorSetsIndexingTests.hpp67 VkExtent3D extent; member
132 deUint32 computeMipMapCount (const VkExtent3D& extent);
134 deUint32 computeImageSize (const VkExtent3D& extent,
152 const VkExtent3D& extent,
159 const VkExtent3D& extent,
259 UpdatablePixelBufferAccess (const tcu::TextureFormat& format, const vk::VkExtent3D& extent, void* data) in UpdatablePixelBufferAccess()
260 : PixelBufferAccess(format, extent.width, extent.height, extent.depth, data) in UpdatablePixelBufferAccess()
266 static deUint32 calcTexSize (const tcu::TextureFormat& format, const vk::VkExtent3D& extent) in calcTexSize()
[all...]
H A DvktDescriptorSetsIndexingTestsUtils.cpp68 , extent (extent_) in ImageHandleAlloc()
152 deUint32 computeMipMapCount (const VkExtent3D& extent) in computeMipMapCount() argument
154 return deUint32(floor(log2(std::max(extent.width, extent.height)))) + 1; in computeMipMapCount()
157 deUint32 computeImageSize (const VkExtent3D& extent, in computeImageSize() argument
162 deUint32 mipSize = extent.width * extent.height * extent.depth * vk::mapVkFormat(format).getPixelSize(); in computeImageSize()
166 deUint32 width = extent.width; in computeImageSize()
167 deUint32 height = extent in computeImageSize()
198 createImageAndBind(ut::ImageHandleAllocSp& output, const vkt::Context& ctx, VkFormat colorFormat, const VkExtent3D& extent, VkImageLayout initialLayout, bool withMipMaps, VkImageType imageType) createImageAndBind() argument
521 createFrameBuffer(FrameBufferSp& outputFB, const vkt::Context& context, const VkExtent3D& extent, VkFormat colorFormat, VkRenderPass renderpass, deUint32 additionalAttachmentCount, const VkImageView additionalAttachments[]) createFrameBuffer() argument
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/descriptor_indexing/
H A DvktDescriptorSetsIndexingTests.hpp67 VkExtent3D extent; member
132 deUint32 computeMipMapCount (const VkExtent3D& extent);
134 deUint32 computeImageSize (const VkExtent3D& extent,
152 const VkExtent3D& extent,
159 const VkExtent3D& extent,
259 UpdatablePixelBufferAccess (const tcu::TextureFormat& format, const vk::VkExtent3D& extent, void* data) in UpdatablePixelBufferAccess()
260 : PixelBufferAccess(format, extent.width, extent.height, extent.depth, data) in UpdatablePixelBufferAccess()
266 static deUint32 calcTexSize (const tcu::TextureFormat& format, const vk::VkExtent3D& extent) in calcTexSize()
[all...]
/third_party/typescript/tests/baselines/reference/
H A DtypeInferenceLiteralUnion.js30 export function extent<T extends Numeric>(array: Array<T | Primitive>): [T | Primitive, T | Primitive] | [undefined, undefined] {
36 extentMixed = extent([new NumCoercible(10), 13, '12', true]);
42 exports.extent = void 0;
56 function extent(array) { function
59 exports.extent = extent;
61 extentMixed = extent([new NumCoercible(10), 13, '12', true]);
/kernel/linux/linux-5.10/fs/hfs/
H A Dextent.c2 * linux/fs/hfs/extent.c
34 * comparing extent B-tree entries, the file id is the most
72 * Find a block within an extent record
150 static inline int __hfs_ext_read_extent(struct hfs_find_data *fd, struct hfs_extent *extent, in __hfs_ext_read_extent() argument
165 hfs_bnode_read(fd->bnode, extent, fd->entryoffset, sizeof(hfs_extent_rec)); in __hfs_ext_read_extent()
208 static void hfs_dump_extent(struct hfs_extent *extent) in hfs_dump_extent() argument
215 be16_to_cpu(extent[i].block), in hfs_dump_extent()
216 be16_to_cpu(extent[i].count)); in hfs_dump_extent()
220 static int hfs_add_extent(struct hfs_extent *extent, u16 offset, in hfs_add_extent() argument
226 hfs_dump_extent(extent); in hfs_add_extent()
248 hfs_free_extents(struct super_block *sb, struct hfs_extent *extent, u16 offset, u16 block_nr) hfs_free_extents() argument
292 struct hfs_extent *extent; hfs_free_fork() local
[all...]
/kernel/linux/linux-6.6/fs/hfs/
H A Dextent.c2 * linux/fs/hfs/extent.c
34 * comparing extent B-tree entries, the file id is the most
72 * Find a block within an extent record
150 static inline int __hfs_ext_read_extent(struct hfs_find_data *fd, struct hfs_extent *extent, in __hfs_ext_read_extent() argument
165 hfs_bnode_read(fd->bnode, extent, fd->entryoffset, sizeof(hfs_extent_rec)); in __hfs_ext_read_extent()
208 static void hfs_dump_extent(struct hfs_extent *extent) in hfs_dump_extent() argument
215 be16_to_cpu(extent[i].block), in hfs_dump_extent()
216 be16_to_cpu(extent[i].count)); in hfs_dump_extent()
220 static int hfs_add_extent(struct hfs_extent *extent, u16 offset, in hfs_add_extent() argument
226 hfs_dump_extent(extent); in hfs_add_extent()
248 hfs_free_extents(struct super_block *sb, struct hfs_extent *extent, u16 offset, u16 block_nr) hfs_free_extents() argument
292 struct hfs_extent *extent; hfs_free_fork() local
[all...]
/kernel/linux/linux-5.10/arch/parisc/math-emu/
H A Dsfadd.c42 register unsigned int left, right, result, extent; in sgl_fadd() local
263 * beyond the extent of the extension. A further optimization in sgl_fadd()
274 /*and lower to*/extent); in sgl_fadd()
284 Sgl_subtract_withextension(left,/*minus*/right,/*with*/extent,/*into*/result); in sgl_fadd()
298 Sgl_leftshiftby1_withextent(result,extent,result); in sgl_fadd()
318 * was normalized, so extent (guard, round) was zero */ in sgl_fadd()
325 Ext_leftshiftby1(extent); in sgl_fadd()
331 * operand was normalized, so extent (guard, round) was zero */ in sgl_fadd()
337 Ext_leftshiftby1(extent); in sgl_fadd()
415 Sgl_right_align(result,/*by*/(1-result_exponent),extent); in sgl_fadd()
[all...]
H A Dsfsub.c42 register unsigned int left, right, result, extent; in sgl_fsub() local
266 * beyond the extent of the extension. A further optimization in sgl_fsub()
277 /*and lower to*/extent); in sgl_fsub()
287 Sgl_subtract_withextension(left,/*minus*/right,/*with*/extent,/*into*/result); in sgl_fsub()
301 Sgl_leftshiftby1_withextent(result,extent,result); in sgl_fsub()
321 * was normalized, so extent (guard, round) was zero */ in sgl_fsub()
328 Ext_leftshiftby1(extent); in sgl_fsub()
334 * operand was normalized, so extent (guard, round) was zero */ in sgl_fsub()
340 Ext_leftshiftby1(extent); in sgl_fsub()
418 Sgl_right_align(result,/*by*/(1-result_exponent),extent); in sgl_fsub()
[all...]
/kernel/linux/linux-6.6/arch/parisc/math-emu/
H A Dsfsub.c42 register unsigned int left, right, result, extent; in sgl_fsub() local
266 * beyond the extent of the extension. A further optimization in sgl_fsub()
277 /*and lower to*/extent); in sgl_fsub()
287 Sgl_subtract_withextension(left,/*minus*/right,/*with*/extent,/*into*/result); in sgl_fsub()
301 Sgl_leftshiftby1_withextent(result,extent,result); in sgl_fsub()
321 * was normalized, so extent (guard, round) was zero */ in sgl_fsub()
328 Ext_leftshiftby1(extent); in sgl_fsub()
334 * operand was normalized, so extent (guard, round) was zero */ in sgl_fsub()
340 Ext_leftshiftby1(extent); in sgl_fsub()
418 Sgl_right_align(result,/*by*/(1-result_exponent),extent); in sgl_fsub()
[all...]
H A Dsfadd.c42 register unsigned int left, right, result, extent; in sgl_fadd() local
263 * beyond the extent of the extension. A further optimization in sgl_fadd()
274 /*and lower to*/extent); in sgl_fadd()
284 Sgl_subtract_withextension(left,/*minus*/right,/*with*/extent,/*into*/result); in sgl_fadd()
298 Sgl_leftshiftby1_withextent(result,extent,result); in sgl_fadd()
318 * was normalized, so extent (guard, round) was zero */ in sgl_fadd()
325 Ext_leftshiftby1(extent); in sgl_fadd()
331 * operand was normalized, so extent (guard, round) was zero */ in sgl_fadd()
337 Ext_leftshiftby1(extent); in sgl_fadd()
415 Sgl_right_align(result,/*by*/(1-result_exponent),extent); in sgl_fadd()
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/multiview/
H A DvktMultiViewRenderTests.cpp108 VkExtent3D extent; member
239 ImageAttachment (VkDevice logicalDevice, DeviceInterface& device, Allocator& allocator, const VkExtent3D extent, VkFormat colorFormat, const VkSampleCountFlagBits samples = VK_SAMPLE_COUNT_1_BIT);
254 ImageAttachment::ImageAttachment (VkDevice logicalDevice, DeviceInterface& device, Allocator& allocator, const VkExtent3D extent, VkFormat colorFormat, const VkSampleCountFlagBits samples) in ImageAttachment() argument
258 const VkImageSubresourceRange colorImageSubresourceRange = makeImageSubresourceRange(aspectFlags, 0u, 1u, 0u, extent.depth); in ImageAttachment()
261 const VkImageCreateInfo colorAttachmentImageInfo = makeImageCreateInfo(VK_IMAGE_TYPE_2D, extent, colorFormat, imageUsageFlags, samples); in ImageAttachment()
373 m_colorAttachment = de::SharedPtr<ImageAttachment>(new ImageAttachment(*m_logicalDevice, *m_device, *m_allocator, m_parameters.extent, m_parameters.colorFormat, m_parameters.samples)); in MultiViewRenderTestInstance()
390 frameBuffer = makeFramebuffer(*m_device, *m_logicalDevice, *renderPass, m_colorAttachment->getImageView(), m_parameters.extent.width, m_parameters.extent.height); in iterate()
415 vector<deUint8> pixelAccessData (m_parameters.extent.width * m_parameters.extent in iterate()
2344 const VkExtent2D extent[2] = draw() local
[all...]
/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/
H A DvkTypeUtil.hpp125 r.extent.width = width; in makeRect2D()
126 r.extent.height = height; in makeRect2D()
146 inline VkRect2D makeRect2D(const VkExtent3D& extent) in makeRect2D() argument
148 return makeRect2D(0, 0, extent.width, extent.height); in makeRect2D()
151 inline VkRect2D makeRect2D(const VkExtent2D& extent) in makeRect2D() argument
153 return makeRect2D(0, 0, extent.width, extent.height); in makeRect2D()
176 inline VkViewport makeViewport(const VkExtent3D& extent) in makeViewport() argument
178 return makeViewport(0.0f, 0.0f, (float)extent in makeViewport()
181 makeViewport(const VkExtent2D& extent) makeViewport() argument
[all...]
/third_party/libwebsockets/lib/roles/http/server/
H A Dranges.c130 if (rp->end > rp->extent) in lws_ranges_next()
131 rp->end = rp->extent; in lws_ranges_next()
133 rp->start = rp->extent - rp->end; in lws_ranges_next()
134 rp->end = rp->extent - 1; in lws_ranges_next()
137 rp->end = rp->extent - 1; in lws_ranges_next()
182 unsigned long long extent) in lws_ranges_init()
192 rp->extent = extent; in lws_ranges_init()
181 lws_ranges_init(struct lws *wsi, struct lws_range_parsing *rp, unsigned long long extent) lws_ranges_init() argument
/kernel/linux/linux-5.10/fs/hfsplus/
H A Dextents.c157 struct hfsplus_extent *extent, in __hfsplus_ext_read_extent()
172 hfs_bnode_read(fd->bnode, extent, fd->entryoffset, in __hfsplus_ext_read_extent()
263 * hfsplus_ext_read_extent will write out a cached extent into in hfsplus_get_block()
265 * dirty even for a pure read of an extent here. in hfsplus_get_block()
297 static void hfsplus_dump_extent(struct hfsplus_extent *extent) in hfsplus_dump_extent() argument
304 be32_to_cpu(extent[i].start_block), in hfsplus_dump_extent()
305 be32_to_cpu(extent[i].block_count)); in hfsplus_dump_extent()
309 static int hfsplus_add_extent(struct hfsplus_extent *extent, u32 offset, in hfsplus_add_extent() argument
315 hfsplus_dump_extent(extent); in hfsplus_add_extent()
316 for (i = 0; i < 8; extent in hfsplus_add_extent()
156 __hfsplus_ext_read_extent(struct hfs_find_data *fd, struct hfsplus_extent *extent, u32 cnid, u32 block, u8 type) __hfsplus_ext_read_extent() argument
337 hfsplus_free_extents(struct super_block *sb, struct hfsplus_extent *extent, u32 offset, u32 block_nr) hfsplus_free_extents() argument
[all...]
/kernel/linux/linux-6.6/fs/hfsplus/
H A Dextents.c157 struct hfsplus_extent *extent, in __hfsplus_ext_read_extent()
172 hfs_bnode_read(fd->bnode, extent, fd->entryoffset, in __hfsplus_ext_read_extent()
263 * hfsplus_ext_read_extent will write out a cached extent into in hfsplus_get_block()
265 * dirty even for a pure read of an extent here. in hfsplus_get_block()
297 static void hfsplus_dump_extent(struct hfsplus_extent *extent) in hfsplus_dump_extent() argument
304 be32_to_cpu(extent[i].start_block), in hfsplus_dump_extent()
305 be32_to_cpu(extent[i].block_count)); in hfsplus_dump_extent()
309 static int hfsplus_add_extent(struct hfsplus_extent *extent, u32 offset, in hfsplus_add_extent() argument
315 hfsplus_dump_extent(extent); in hfsplus_add_extent()
316 for (i = 0; i < 8; extent in hfsplus_add_extent()
156 __hfsplus_ext_read_extent(struct hfs_find_data *fd, struct hfsplus_extent *extent, u32 cnid, u32 block, u8 type) __hfsplus_ext_read_extent() argument
337 hfsplus_free_extents(struct super_block *sb, struct hfsplus_extent *extent, u32 offset, u32 block_nr) hfsplus_free_extents() argument
[all...]
/third_party/mesa3d/src/intel/vulkan/
H A Danv_blorp.c312 VkExtent3D extent = in copy_image() local
313 vk_image_sanitize_extent(&src_image->vk, region->extent); in copy_image()
319 layer_count = region->extent.depth; in copy_image()
365 extent.width, extent.height); in copy_image()
378 extent.width, extent.height); in copy_image()
401 extent.width, extent.height); in copy_image()
413 extent in copy_image()
496 VkExtent3D extent = copy_buffer_to_image() local
1218 const VkExtent2D extent = pRects[r].rect.extent; clear_color_attachment() local
1234 const VkExtent2D extent = pRects[r].rect.extent; clear_color_attachment() local
1285 const VkExtent2D extent = pRects[r].rect.extent; clear_depth_stencil_attachment() local
1304 const VkExtent2D extent = pRects[r].rect.extent; clear_depth_stencil_attachment() local
1528 const VkExtent3D extent = vk_image_mip_level_extent(&image->vk, level); anv_image_copy_to_shadow() local
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/api/
H A DvktApiCopiesAndBlittingTests.cpp180 imageCopy.extent // VkExtent3D extent; in convertvkImageCopyTovkImageCopy2KHR()
259 imageResolve.extent // VkExtent3D extent; in convertvkImageResolveTovkImageResolve2KHR()
315 VkExtent3D extent; member
503 return (parms.imageType != VK_IMAGE_TYPE_3D) ? parms.extent.depth : 1u; in getArraySize()
509 return parms.imageType == VK_IMAGE_TYPE_2D && parms.extent.depth % 6 == 0 ? VK_IMAGE_CREATE_CUBE_COMPATIBLE_BIT : 0; in getCreateFlags()
523 const VkExtent3D extent = in getExtent3D() local
525 (parms.extent.width >> mipLevel) * blockWidth, in getExtent3D()
526 (parms.imageType != VK_IMAGE_TYPE_1D) ? ((parms.extent in getExtent3D()
1556 VkExtent3D extent = region.imageCopy.extent; copyRegionToTextureLevel() local
2026 VkExtent3D extent = region.imageCopy.extent; copyRegionToTextureLevel() local
2584 const VkExtent3D extent = region.bufferImageCopy.imageExtent; copyRegionToTextureLevel() local
3075 const VkExtent3D extent = region.bufferImageCopy.imageExtent; copyRegionToTextureLevel() local
3124 const VkExtent3D extent = region.bufferImageCopy.imageExtent; copyRegionToTextureLevel() local
[all...]

Completed in 20 milliseconds

12345678910>>...23