Home
last modified time | relevance | path

Searched refs:region (Results 1 - 25 of 798) sorted by relevance

12345678910>>...32

/third_party/node/deps/v8/src/base/
H A Dregion-allocator.cc5 #include "src/base/region-allocator.h"
15 // to randomize region allocation.
35 // Initial region. in RegionAllocator()
36 Region* region = new Region(whole_region_); in RegionAllocator() local
38 all_regions_.insert(region); in RegionAllocator()
40 FreeListAddRegion(region); in RegionAllocator()
45 // been freed again (and thus merged into a single region) or do that now. in ~RegionAllocator()
46 for (Region* region : all_regions_) { in ~RegionAllocator()
47 delete region; in ~RegionAllocator()
59 // find the region whos in FindRegion()
65 FreeListAddRegion(Region* region) FreeListAddRegion() argument
76 FreeListRemoveRegion(Region* region) FreeListRemoveRegion() argument
86 Split(Region* region, size_t new_size) Split() argument
135 Region* region = FreeListFindRegion(size); AllocateRegion() local
179 Region* region; AllocateRegionAt() local
217 Region* region = FreeListFindRegion(padded_size); AllocateAlignedRegion() local
269 Region* region = *region_iter; TrimRegion() local
319 Region* region = *region_iter; CheckRegion() local
332 Region* region = *region_iter; IsFree() local
[all...]
/third_party/mesa3d/src/gallium/frontends/nine/
H A Dnine_memory_helper.c77 * One allocation is given one page-aligned region inside a memfd file.
150 struct nine_memfd_file_region *region; /* Corresponding file memory region. Max 1 allocation per region */ member
227 struct nine_memfd_file_region *region; in debug_dump_memfd_state() local
232 LIST_FOR_EACH_ENTRY(region, &memfd_file->free_regions, list) { in debug_dump_memfd_state()
234 region->offset, region->size, region->map, in debug_dump_memfd_state()
235 region in debug_dump_memfd_state()
341 move_region(struct list_head *tail, struct nine_memfd_file_region *region) move_region() argument
368 move_region_ordered_merge(struct nine_allocator *allocator, struct list_head *tail, struct nine_memfd_file_region *region) move_region_ordered_merge() argument
407 struct nine_memfd_file_region *region = slab_alloc_st(&allocator->allocation_pool); allocate_region() local
427 struct nine_memfd_file_region *region, *best_region, *new_region; insert_new_allocation() local
482 struct nine_memfd_file_region *region = nine_get_memfd_region_backing(allocation); nine_flush_pending_releases() local
513 struct nine_memfd_file_region *region = nine_get_memfd_region_backing(allocation); nine_flush_pending_frees() local
534 nine_memfd_unmap_region(struct nine_allocator *allocator, struct nine_memfd_file *memfd_file, struct nine_memfd_file_region *region) nine_memfd_unmap_region() argument
554 remove_allocation(struct nine_allocator *allocator, struct nine_memfd_file *memfd_file, struct nine_memfd_file_region *region) remove_allocation() argument
583 struct nine_memfd_file_region *region, *ptr; nine_memfd_try_unmap_file() local
659 nine_memfd_region_map(struct nine_allocator *allocator, struct nine_memfd_file *memfd_file, struct nine_memfd_file_region *region) nine_memfd_region_map() argument
693 struct nine_memfd_file_region *region; nine_memfd_allocator() local
772 struct nine_memfd_file_region *region = new_allocation->memory.memfd.region; nine_allocate() local
826 struct nine_memfd_file_region *region = nine_get_memfd_region_backing(allocation); nine_free_internal() local
864 struct nine_memfd_file_region *region; nine_get_pointer() local
905 struct nine_memfd_file_region *region; nine_pointer_weakrelease() local
925 struct nine_memfd_file_region *region; nine_pointer_strongrelease() local
[all...]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/
H A DLSR.java21 public final String region; field in LSR
22 /** Index for region, negative if ill-formed. @see indexForRegion */
26 public LSR(String language, String script, String region, int flags) { in LSR() argument
29 this.region = region; in LSR()
30 regionIndex = indexForRegion(region); in LSR()
35 * Returns a positive index (>0) for a well-formed region code.
36 * Do not rely on a particular region->index mapping; it may change.
39 public static final int indexForRegion(String region) { in indexForRegion() argument
40 if (region in indexForRegion()
[all...]
H A DXLikelySubtags.java121 // The trie maps each lang+script+region (encoded in ASCII) to an index into lsrs.
171 String region = locale.getCountry(); in canonicalize()
172 String region2 = regionAliases.get(region); in canonicalize()
177 region2 == null ? region : region2); in canonicalize()
212 private LSR makeMaximizedLsr(String language, String script, String region, String variant) { in makeMaximizedLsr() argument
216 if (region.length() == 2 && region.charAt(0) == 'X') { in makeMaximizedLsr()
217 switch (region.charAt(1)) { in makeMaximizedLsr()
220 PSEUDO_ACCENTS_PREFIX + script, region, LSR.EXPLICIT_LSR); in makeMaximizedLsr()
223 PSEUDO_BIDI_PREFIX + script, region, LS in makeMaximizedLsr()
262 maximize(String language, String script, String region) maximize() argument
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/locale/
H A DLSR.java25 public final String region; field in LSR
26 /** Index for region, negative if ill-formed. @see indexForRegion */
30 public LSR(String language, String script, String region, int flags) { in LSR() argument
33 this.region = region; in LSR()
34 regionIndex = indexForRegion(region); in LSR()
39 * Returns a positive index (>0) for a well-formed region code.
40 * Do not rely on a particular region->index mapping; it may change.
43 public static final int indexForRegion(String region) { in indexForRegion() argument
44 if (region in indexForRegion()
[all...]
H A DXLikelySubtags.java128 // The trie maps each lang+script+region (encoded in ASCII) to an index into lsrs.
178 String region = locale.getCountry(); in canonicalize()
179 String region2 = regionAliases.get(region); in canonicalize()
184 region2 == null ? region : region2); in canonicalize()
217 private LSR makeMaximizedLsr(String language, String script, String region, String variant) { in makeMaximizedLsr() argument
221 if (region.length() == 2 && region.charAt(0) == 'X') { in makeMaximizedLsr()
222 switch (region.charAt(1)) { in makeMaximizedLsr()
225 PSEUDO_ACCENTS_PREFIX + script, region, LSR.EXPLICIT_LSR); in makeMaximizedLsr()
228 PSEUDO_BIDI_PREFIX + script, region, LS in makeMaximizedLsr()
267 maximize(String language, String script, String region) maximize() argument
[all...]
/third_party/mesa3d/src/gallium/drivers/zink/
H A Dzink_blit.c71 VkImageResolve region = {0}; in blit_resolve() local
73 region.srcSubresource.aspectMask = src->aspect; in blit_resolve()
74 region.srcSubresource.mipLevel = info->src.level; in blit_resolve()
75 region.srcOffset.x = info->src.box.x; in blit_resolve()
76 region.srcOffset.y = info->src.box.y; in blit_resolve()
79 region.srcOffset.z = 0; in blit_resolve()
80 region.srcSubresource.baseArrayLayer = info->src.box.z; in blit_resolve()
81 region.srcSubresource.layerCount = info->src.box.depth; in blit_resolve()
84 region.srcOffset.z = info->src.box.z; in blit_resolve()
85 region in blit_resolve()
181 VkImageBlit region = {0}; blit_native() local
430 zink_blit_region_fills(struct u_rect region, unsigned width, unsigned height) zink_blit_region_fills() argument
453 zink_blit_region_covers(struct u_rect region, struct u_rect covers) zink_blit_region_covers() argument
[all...]
/third_party/mesa3d/src/amd/vulkan/
H A Dradv_meta_copy.c90 const VkBufferImageCopy2 *region) in copy_buffer_to_image()
121 const VkOffset3D img_offset_el = vk_image_offset_to_elements(&image->vk, region->imageOffset); in copy_buffer_to_image()
124 const VkExtent3D img_extent_el = vk_image_extent_to_elements(&image->vk, region->imageExtent); in copy_buffer_to_image()
132 image, layout, &region->imageSubresource, region->imageSubresource.aspectMask); in copy_buffer_to_image()
138 radv_layout_dcc_compressed(cmd_buffer->device, image, region->imageSubresource.mipLevel, in copy_buffer_to_image()
143 .aspectMask = region->imageSubresource.aspectMask, in copy_buffer_to_image()
144 .baseMipLevel = region->imageSubresource.mipLevel, in copy_buffer_to_image()
146 .baseArrayLayer = region->imageSubresource.baseArrayLayer, in copy_buffer_to_image()
147 .layerCount = region in copy_buffer_to_image()
88 copy_buffer_to_image(struct radv_cmd_buffer *cmd_buffer, struct radv_buffer *buffer, struct radv_image *image, VkImageLayout layout, const VkBufferImageCopy2 *region) copy_buffer_to_image() argument
229 copy_image_to_buffer(struct radv_cmd_buffer *cmd_buffer, struct radv_buffer *buffer, struct radv_image *image, VkImageLayout layout, const VkBufferImageCopy2 *region) copy_image_to_buffer() argument
353 copy_image(struct radv_cmd_buffer *cmd_buffer, struct radv_image *src_image, VkImageLayout src_image_layout, struct radv_image *dst_image, VkImageLayout dst_image_layout, const VkImageCopy2 *region) copy_image() argument
[all...]
/third_party/icu/icu4c/source/common/
H A Dlsr.cpp19 language(nullptr), script(nullptr), region(r), in LSR()
20 regionIndex(indexForRegion(region)), flags(f) { in LSR()
35 language(other.language), script(other.script), region(other.region), owned(other.owned),
53 region = other.region;
72 (regionIndex > 0 || uprv_strcmp(region, other.region) == 0); in isEquivalentTo()
81 (regionIndex > 0 || uprv_strcmp(region, other.region) in operator ==()
85 indexForRegion(const char *region) indexForRegion() argument
[all...]
/third_party/skia/third_party/externals/icu/source/common/
H A Dlsr.cpp19 language(nullptr), script(nullptr), region(r), in LSR()
20 regionIndex(indexForRegion(region)), flags(f) { in LSR()
35 language(other.language), script(other.script), region(other.region), owned(other.owned),
53 region = other.region;
72 (regionIndex > 0 || uprv_strcmp(region, other.region) == 0); in isEquivalentTo()
81 (regionIndex > 0 || uprv_strcmp(region, other.region) in operator ==()
85 indexForRegion(const char *region) indexForRegion() argument
[all...]
/third_party/node/deps/icu-small/source/common/
H A Dlsr.cpp19 language(nullptr), script(nullptr), region(r), in LSR()
20 regionIndex(indexForRegion(region)), flags(f) { in LSR()
36 language(nullptr), script(nullptr), region(nullptr), in LSR()
49 region = owned + regionOffset; in LSR()
55 language(other.language), script(other.script), region(other.region), owned(other.owned),
73 region = other.region;
92 (regionIndex > 0 || uprv_strcmp(region, other.region) in isEquivalentTo()
105 indexForRegion(const char *region) indexForRegion() argument
[all...]
/third_party/ffmpeg/libavcodec/
H A Dsiren.c467 int region, delta, i, temp; in categorize_regions() local
481 for (region = 0; region < number_of_regions; region++) { in categorize_regions()
483 absolute_region_power_index[region]) >> 1; in categorize_regions()
485 power_categories[region] = i; in categorize_regions()
494 for (region = 0; region < number_of_regions; region++) { in categorize_regions()
495 i = (offset - absolute_region_power_index[region]) >> in categorize_regions()
582 int region; decode_vector() local
[all...]
H A Ddvbsubdec.c177 static void delete_region_display_list(DVBSubContext *ctx, DVBSubRegion *region) in delete_region_display_list() argument
182 while (region->display_list) { in delete_region_display_list()
183 display = region->display_list; in delete_region_display_list()
216 region->display_list = display->region_list_next; in delete_region_display_list()
248 DVBSubRegion *region = ctx->region_list; in delete_regions() local
250 ctx->region_list = region->next; in delete_regions()
252 delete_region_display_list(ctx, region); in delete_regions()
254 av_freep(&region->pbuf); in delete_regions()
255 av_freep(&region); in delete_regions()
734 DVBSubRegion *region; in save_subtitle_set() local
868 DVBSubRegion *region = get_region(ctx, display->region_id); dvbsub_parse_pixel_data_block() local
1150 DVBSubRegion *region; dvbsub_parse_region_segment() local
[all...]
/third_party/mesa3d/src/panfrost/vulkan/
H A Dpanvk_vX_meta_blit.c140 const VkImageBlit2 *region = &pBlitImageInfo->pRegions[i]; in CmdBlitImage2() local
145 .level = region->srcSubresource.mipLevel, in CmdBlitImage2()
147 region->srcOffsets[0].x, in CmdBlitImage2()
148 region->srcOffsets[0].y, in CmdBlitImage2()
149 region->srcOffsets[0].z, in CmdBlitImage2()
150 region->srcSubresource.baseArrayLayer, in CmdBlitImage2()
153 region->srcOffsets[1].x, in CmdBlitImage2()
154 region->srcOffsets[1].y, in CmdBlitImage2()
155 region->srcOffsets[1].z, in CmdBlitImage2()
156 region in CmdBlitImage2()
[all...]
/third_party/mesa3d/src/gallium/frontends/clover/api/
H A Dtransfer.cpp45 pitch(const vector_t &region, vector_t pitch) { in pitch() argument
47 map(multiplies(), region, pitch))) { in pitch()
58 /// Size of a region in bytes.
61 size(const vector_t &pitch, const vector_t &region) { in size() argument
62 if (any_of(is_zero(), region)) in size()
65 return dot(pitch, region - vector_t{ 0, 1, 1 }); in size()
85 const vector_t &pitch, const vector_t &region) { in validate_object()
89 // The region must fit within the specified pitch, in validate_object()
90 if (any_of(greater(), map(multiplies(), pitch, region), tail(pitch))) in validate_object()
94 if (dot(pitch, origin) + size(pitch, region) > me in validate_object()
84 validate_object(command_queue &q, buffer &mem, const vector_t &origin, const vector_t &pitch, const vector_t &region) validate_object() argument
105 validate_object(command_queue &q, image &img, const vector_t &orig, const vector_t &region) validate_object() argument
167 validate_object(command_queue &q, const void *ptr, const vector_t &orig, const vector_t &pitch, const vector_t &region) validate_object() argument
181 validate_copy(command_queue &q, buffer &dst_mem, const vector_t &dst_orig, const vector_t &dst_pitch, buffer &src_mem, const vector_t &src_orig, const vector_t &src_pitch, const vector_t &region) validate_copy() argument
201 validate_copy(command_queue &q, image &dst_img, const vector_t &dst_orig, image &src_img, const vector_t &src_orig, const vector_t &region) validate_copy() argument
322 soft_copy_op(command_queue &q, T dst_obj, const vector_t &dst_orig, const vector_t &dst_pitch, S src_obj, const vector_t &src_orig, const vector_t &src_pitch, const vector_t &region) soft_copy_op() argument
350 hard_copy_op(command_queue &q, T dst_obj, const vector_t &dst_orig, S src_obj, const vector_t &src_orig, const vector_t &region) hard_copy_op() argument
[all...]
/third_party/mesa3d/src/gallium/winsys/svga/drm/
H A Dvmw_screen_ioctl.c73 vmw_region_size(struct vmw_region *region) in vmw_region_size() argument
75 return region->size; in vmw_region_size()
218 struct vmw_region *region = NULL; in vmw_ioctl_gb_surface_create() local
224 region = CALLOC_STRUCT(vmw_region); in vmw_ioctl_gb_surface_create()
225 if (!region) in vmw_ioctl_gb_surface_create()
320 region->handle = rep->buffer_handle; in vmw_ioctl_gb_surface_create()
321 region->map_handle = rep->buffer_map_handle; in vmw_ioctl_gb_surface_create()
322 region->drm_fd = vws->ioctl.drm_fd; in vmw_ioctl_gb_surface_create()
323 region->size = rep->backup_size; in vmw_ioctl_gb_surface_create()
324 *p_region = region; in vmw_ioctl_gb_surface_create()
415 struct vmw_region *region = NULL; vmw_ioctl_gb_surface_ref() local
614 struct vmw_region *region; vmw_ioctl_region_create() local
656 vmw_ioctl_region_destroy(struct vmw_region *region) vmw_ioctl_region_destroy() argument
676 vmw_ioctl_region_ptr(struct vmw_region *region) vmw_ioctl_region_ptr() argument
683 vmw_ioctl_region_map(struct vmw_region *region) vmw_ioctl_region_map() argument
711 vmw_ioctl_region_unmap(struct vmw_region *region) vmw_ioctl_region_unmap() argument
737 vmw_ioctl_syncforcpu(struct vmw_region *region, boolean dont_block, boolean readonly, boolean allow_cs) vmw_ioctl_syncforcpu() argument
766 vmw_ioctl_releasefromcpu(struct vmw_region *region, boolean readonly, boolean allow_cs) vmw_ioctl_releasefromcpu() argument
[all...]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DCurrencyMetaInfo.java83 * The region to filter on. If null, accepts any region.
86 public final String region; field in CurrencyMetaInfo.CurrencyFilter
114 private CurrencyFilter(String region, String currency, long from, long to, boolean tenderOnly) { in CurrencyFilter() argument
115 this.region = region; in CurrencyFilter()
146 * Returns a filter that accepts all currencies ever used in the given region.
147 * @param region the region code
152 public static CurrencyFilter onRegion(String region) { in onRegion() argument
232 withRegion(String region) withRegion() argument
418 public final String region; global() field in CurrencyMetaInfo.CurrencyInfo
458 CurrencyInfo(String region, String code, long from, long to, int priority) CurrencyInfo() argument
469 CurrencyInfo(String region, String code, long from, long to, int priority, boolean tender) CurrencyInfo() argument
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
H A DCurrencyMetaInfo.java82 * The region to filter on. If null, accepts any region.
84 public final String region; field in CurrencyMetaInfo.CurrencyFilter
109 private CurrencyFilter(String region, String currency, long from, long to, boolean tenderOnly) { in CurrencyFilter() argument
110 this.region = region; in CurrencyFilter()
139 * Returns a filter that accepts all currencies ever used in the given region.
140 * @param region the region code
144 public static CurrencyFilter onRegion(String region) { in onRegion() argument
217 withRegion(String region) withRegion() argument
388 public final String region; global() field in CurrencyMetaInfo.CurrencyInfo
423 CurrencyInfo(String region, String code, long from, long to, int priority) CurrencyInfo() argument
434 CurrencyInfo(String region, String code, long from, long to, int priority, boolean tender) CurrencyInfo() argument
[all...]
/third_party/cmsis/CMSIS/Core/Include/
H A Dcore_ca.h2190 #define section_normal(descriptor_l1, region) region.rg_t = SECTION; \
2191 region.domain = 0x0; \
2192 region.e_t = ECC_DISABLED; \
2193 region.g_t = GLOBAL; \
2194 region.inner_norm_t = WB_WA; \
2195 region.outer_norm_t = WB_WA; \
2196 region.mem_t = NORMAL; \
2197 region.sec_t = SECURE; \
2198 region
[all...]
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/
H A DVkImage.cpp358 void Image::copyTo(Image *dstImage, const VkImageCopy2KHR &region) const in copyTo()
362 if((region.srcSubresource.aspectMask == CombinedDepthStencilAspects) && in copyTo()
363 (region.dstSubresource.aspectMask == CombinedDepthStencilAspects)) in copyTo()
366 VkImageCopy2KHR singleAspectRegion = region; in copyTo()
376 copySingleAspectTo(dstImage, region); in copyTo()
379 void Image::copySingleAspectTo(Image *dstImage, const VkImageCopy2KHR &region) const in copySingleAspectTo()
384 if(!((region.srcSubresource.aspectMask == VK_IMAGE_ASPECT_COLOR_BIT) || in copySingleAspectTo()
385 (region.srcSubresource.aspectMask == VK_IMAGE_ASPECT_DEPTH_BIT) || in copySingleAspectTo()
386 (region.srcSubresource.aspectMask == VK_IMAGE_ASPECT_STENCIL_BIT) || in copySingleAspectTo()
387 (region in copySingleAspectTo()
548 copy(Buffer *buffer, const VkBufferImageCopy2KHR &region, bool bufferIsSource) copy() argument
678 copyTo(Buffer *dstBuffer, const VkBufferImageCopy2KHR &region) copyTo() argument
683 copyFrom(Buffer *srcBuffer, const VkBufferImageCopy2KHR &region) copyFrom() argument
1017 blitTo(Image *dstImage, const VkImageBlit2KHR &region, VkFilter filter) const blitTo() argument
[all...]
/third_party/skia/fuzz/oss_fuzz/
H A DFuzzRegionDeserialize.cpp15 SkRegion region; in FuzzRegionDeserialize() local
16 if (!region.readFromMemory(bytes->data(), bytes->size())) { in FuzzRegionDeserialize()
19 region.computeRegionComplexity(); in FuzzRegionDeserialize()
20 region.isComplex(); in FuzzRegionDeserialize()
22 if (region == r2) { in FuzzRegionDeserialize()
23 region.contains(0,0); in FuzzRegionDeserialize()
25 region.contains(1,1); in FuzzRegionDeserialize()
32 s->getCanvas()->drawRegion(region, SkPaint()); in FuzzRegionDeserialize()
33 SkDEBUGCODE(SkRegionPriv::Validate(region)); in FuzzRegionDeserialize()
/third_party/skia/third_party/externals/dawn/src/dawn_native/vulkan/
H A DUtilsVulkan.cpp82 // Vulkan SPEC requires the source/destination region specified by each element of
83 // pRegions must be a region that is contained within srcImage/dstImage. Here the size of
120 VkBufferImageCopy region; in ComputeBufferImageCopyRegion() local
122 region.bufferOffset = dataLayout.offset; in ComputeBufferImageCopyRegion()
127 region.bufferRowLength = dataLayout.bytesPerRow / blockInfo.byteSize * blockInfo.width; in ComputeBufferImageCopyRegion()
128 region.bufferImageHeight = dataLayout.rowsPerImage * blockInfo.height; in ComputeBufferImageCopyRegion()
130 region.imageSubresource.aspectMask = VulkanAspectMask(textureCopy.aspect); in ComputeBufferImageCopyRegion()
131 region.imageSubresource.mipLevel = textureCopy.mipLevel; in ComputeBufferImageCopyRegion()
135 region.imageOffset.x = textureCopy.origin.x; in ComputeBufferImageCopyRegion()
136 region in ComputeBufferImageCopyRegion()
[all...]
/third_party/mesa3d/src/broadcom/vulkan/
H A Dv3dvx_meta_common.c481 const VkBufferImageCopy2 *region) in emit_copy_layer_to_buffer_per_tile_list()
493 layer_offset < region->imageSubresource.layerCount) || in emit_copy_layer_to_buffer_per_tile_list()
497 region->imageSubresource.baseArrayLayer + layer_offset : in emit_copy_layer_to_buffer_per_tile_list()
498 region->imageOffset.z + layer_offset; in emit_copy_layer_to_buffer_per_tile_list()
501 region->imageSubresource.aspectMask, in emit_copy_layer_to_buffer_per_tile_list()
503 region->imageSubresource.mipLevel, in emit_copy_layer_to_buffer_per_tile_list()
512 if (region->bufferRowLength == 0) in emit_copy_layer_to_buffer_per_tile_list()
513 width = region->imageExtent.width; in emit_copy_layer_to_buffer_per_tile_list()
515 width = region->bufferRowLength; in emit_copy_layer_to_buffer_per_tile_list()
517 if (region in emit_copy_layer_to_buffer_per_tile_list()
476 emit_copy_layer_to_buffer_per_tile_list(struct v3dv_job *job, struct v3dv_meta_framebuffer *framebuffer, struct v3dv_buffer *buffer, struct v3dv_image *image, uint32_t layer_offset, const VkBufferImageCopy2 *region) emit_copy_layer_to_buffer_per_tile_list() argument
556 emit_copy_layer_to_buffer(struct v3dv_job *job, struct v3dv_buffer *buffer, struct v3dv_image *image, struct v3dv_meta_framebuffer *framebuffer, uint32_t layer, const VkBufferImageCopy2 *region) emit_copy_layer_to_buffer() argument
569 meta_emit_copy_image_to_buffer_rcl(struct v3dv_job *job, struct v3dv_buffer *buffer, struct v3dv_image *image, struct v3dv_meta_framebuffer *framebuffer, const VkBufferImageCopy2 *region) meta_emit_copy_image_to_buffer_rcl() argument
585 emit_resolve_image_layer_per_tile_list(struct v3dv_job *job, struct v3dv_meta_framebuffer *framebuffer, struct v3dv_image *dst, struct v3dv_image *src, uint32_t layer_offset, const VkImageResolve2 *region) emit_resolve_image_layer_per_tile_list() argument
643 emit_resolve_image_layer(struct v3dv_job *job, struct v3dv_image *dst, struct v3dv_image *src, struct v3dv_meta_framebuffer *framebuffer, uint32_t layer, const VkImageResolve2 *region) emit_resolve_image_layer() argument
656 meta_emit_resolve_image_rcl(struct v3dv_job *job, struct v3dv_image *dst, struct v3dv_image *src, struct v3dv_meta_framebuffer *framebuffer, const VkImageResolve2 *region) meta_emit_resolve_image_rcl() argument
746 emit_copy_image_layer_per_tile_list(struct v3dv_job *job, struct v3dv_meta_framebuffer *framebuffer, struct v3dv_image *dst, struct v3dv_image *src, uint32_t layer_offset, const VkImageCopy2 *region) emit_copy_image_layer_per_tile_list() argument
804 emit_copy_image_layer(struct v3dv_job *job, struct v3dv_image *dst, struct v3dv_image *src, struct v3dv_meta_framebuffer *framebuffer, uint32_t layer, const VkImageCopy2 *region) emit_copy_image_layer() argument
816 meta_emit_copy_image_rcl(struct v3dv_job *job, struct v3dv_image *dst, struct v3dv_image *src, struct v3dv_meta_framebuffer *framebuffer, const VkImageCopy2 *region) meta_emit_copy_image_rcl() argument
1047 emit_copy_buffer_to_layer_per_tile_list(struct v3dv_job *job, struct v3dv_meta_framebuffer *framebuffer, struct v3dv_image *image, struct v3dv_buffer *buffer, uint32_t layer, const VkBufferImageCopy2 *region) emit_copy_buffer_to_layer_per_tile_list() argument
1159 emit_copy_buffer_to_layer(struct v3dv_job *job, struct v3dv_image *image, struct v3dv_buffer *buffer, struct v3dv_meta_framebuffer *framebuffer, uint32_t layer, const VkBufferImageCopy2 *region) emit_copy_buffer_to_layer() argument
1172 meta_emit_copy_buffer_to_image_rcl(struct v3dv_job *job, struct v3dv_image *image, struct v3dv_buffer *buffer, struct v3dv_meta_framebuffer *framebuffer, const VkBufferImageCopy2 *region) meta_emit_copy_buffer_to_image_rcl() argument
1223 meta_copy_buffer(struct v3dv_cmd_buffer *cmd_buffer, struct v3dv_bo *dst, uint32_t dst_offset, struct v3dv_bo *src, uint32_t src_offset, const VkBufferCopy2 *region) meta_copy_buffer() argument
[all...]
/third_party/skia/docs/examples/
H A DRegion_isComplex.cpp7 auto debugster = [](const char* label, const SkRegion& region) -> void { in REG_FIDDLE()
8 SkDebugf("%s: region is %s" "complex\n", label, region.isComplex() ? "" : "not "); in REG_FIDDLE()
10 SkRegion region; in REG_FIDDLE() local
11 debugster("initial", region); in REG_FIDDLE()
12 region.setRect({1, 2, 3, 4}); in REG_FIDDLE()
13 debugster("set rect", region); in REG_FIDDLE()
14 region.op({2, 3, 4, 5}, SkRegion::kUnion_Op); in REG_FIDDLE()
15 debugster("op rect", region); in REG_FIDDLE()
H A DRegion_isEmpty.cpp7 auto debugster = [](const char* label, SkRegion& region) -> void { in REG_FIDDLE()
8 SkDebugf("%14s: region is %s" "empty\n", label, region.isEmpty() ? "" : "not "); in REG_FIDDLE()
10 SkRegion region; in REG_FIDDLE() local
11 debugster("initial", region); in REG_FIDDLE()
12 region.setRect({1, 2, 3, 4}); in REG_FIDDLE()
13 debugster("set rect", region); in REG_FIDDLE()
14 region.setEmpty(); in REG_FIDDLE()
15 debugster("set empty", region); in REG_FIDDLE()

Completed in 22 milliseconds

12345678910>>...32