Home
last modified time | relevance | path

Searched refs:new_layout (Results 1 – 7 of 7) sorted by relevance

/third_party/ffmpeg/libavcodec/
Daudiotoolboxdec.c133 AudioChannelLayout *new_layout; in ffat_convert_layout() local
142 new_layout = av_malloc(*size); in ffat_convert_layout()
143 if (!new_layout) { in ffat_convert_layout()
149 sizeof(UInt32), &layout->mChannelBitmap, size, new_layout); in ffat_convert_layout()
152 sizeof(AudioChannelLayoutTag), &tag, size, new_layout); in ffat_convert_layout()
153 new_layout->mChannelLayoutTag = kAudioChannelLayoutTag_UseChannelDescriptions; in ffat_convert_layout()
155 return new_layout; in ffat_convert_layout()
/third_party/mesa3d/src/gallium/drivers/zink/
Dzink_context.h437 zink_resource_image_needs_barrier(struct zink_resource *res, VkImageLayout new_layout, VkAccessFlag…
439 …it(VkImageMemoryBarrier *imb, struct zink_resource *res, VkImageLayout new_layout, VkAccessFlags f…
442 VkImageLayout new_layout, VkAccessFlags flags, VkPipelineStageFlags pipeline);
Dzink_context.c3119 zink_resource_image_needs_barrier(struct zink_resource *res, VkImageLayout new_layout, VkAccessFlag… in zink_resource_image_needs_barrier() argument
3122 pipeline = pipeline_dst_stage(new_layout); in zink_resource_image_needs_barrier()
3124 flags = access_dst_flags(new_layout); in zink_resource_image_needs_barrier()
3125 return res->layout != new_layout || (res->obj->access_stage & pipeline) != pipeline || in zink_resource_image_needs_barrier()
3132 …it(VkImageMemoryBarrier *imb, struct zink_resource *res, VkImageLayout new_layout, VkAccessFlags f… in zink_resource_image_barrier_init() argument
3135 pipeline = pipeline_dst_stage(new_layout); in zink_resource_image_barrier_init()
3137 flags = access_dst_flags(new_layout); in zink_resource_image_barrier_init()
3150 new_layout, in zink_resource_image_barrier_init()
3156 …return res->obj->needs_zs_evaluate || zink_resource_image_needs_barrier(res, new_layout, flags, pi… in zink_resource_image_barrier_init()
3241 VkImageLayout new_layout, VkAccessFlags flags, VkPipelineStageFlags pipeline) in zink_resource_image_barrier() argument
[all …]
/third_party/mesa3d/src/vulkan/runtime/
Dvk_render_pass.c1222 VkImageLayout new_layout, in transition_image_range() argument
1241 new_layout != new_stencil_layout)) in transition_image_range()
1249 new_layout = new_stencil_layout; in transition_image_range()
1252 if (new_layout != old_layout) { in transition_image_range()
1260 dst_sa = stage_access_for_layout(new_layout, range.aspectMask); in transition_image_range()
1271 .newLayout = new_layout, in transition_image_range()
/third_party/ffmpeg/libavutil/
Dhwcontext_vulkan.c1487 VkImageLayout new_layout; in prepare_frame() local
1505 new_layout = VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL; in prepare_frame()
1510 new_layout = VK_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL; in prepare_frame()
1515 new_layout = VK_IMAGE_LAYOUT_GENERAL; in prepare_frame()
1535 img_bar[i].newLayout = new_layout; in prepare_frame()
2979 VkImageLayout new_layout = to_buf ? VK_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL : in transfer_image_buf() local
2987 if ((frame->layout[i] == new_layout) && (frame->access[i] & new_access)) in transfer_image_buf()
2994 img_bar[bar_num].newLayout = new_layout; in transfer_image_buf()
/third_party/rust/crates/memchr/bench/data/code/
Drust-library.rs14179 new_layout: Layout,
14183 new_layout.size() >= old_layout.size(),
14188 0 => self.alloc_impl(new_layout, zeroed),
14192 old_size if old_layout.align() == new_layout.align() => unsafe {
14193 let new_size = new_layout.size();
14212 let new_ptr = self.alloc_impl(new_layout, zeroed)?;
14248 new_layout: Layout,
14251 unsafe { self.grow_impl(ptr, old_layout, new_layout, false) }
14259 new_layout: Layout,
14262 unsafe { self.grow_impl(ptr, old_layout, new_layout, true) }
[all …]
/third_party/mesa3d/src/microsoft/vulkan/
Ddzn_cmd_buffer.c200 VkImageLayout new_layout, in dzn_cmd_buffer_queue_image_range_layout_transition() argument
211 dzn_image_layout_to_state(image, new_layout, aspect); in dzn_cmd_buffer_queue_image_range_layout_transition()