Home
last modified time | relevance | path

Searched defs:DeviceSize (Results 1 – 25 of 70) sorted by relevance

123

/aosp_15_r20/external/rust/android-crates-io/crates/vulkano/src/memory/allocator/
Dlayout.rs100 pub const fn from_size_alignment(size: DeviceSize, alignment: DeviceSize) -> Option<Self> { in from_size_alignment()
119 size: DeviceSize, in from_size_alignment_unchecked()
120 alignment: DeviceSize, in from_size_alignment_unchecked()
143 const fn max_size_for_alignment(alignment: DeviceAlignment) -> DeviceSize { in max_size_for_alignment()
165 pub const fn size(&self) -> DeviceSize { in size()
187 pub const fn padding_needed_for(&self, alignment: DeviceAlignment) -> DeviceSize { in padding_needed_for()
217 pub const fn repeat(&self, n: NonZeroDeviceSize) -> Option<(Self, DeviceSize)> { in repeat() argument
240 pub const fn extend(&self, next: Self) -> Option<(Self, DeviceSize)> { in extend() argument
248 pub const fn extend_with_layout(&self, next: Layout) -> Option<(Self, DeviceSize)> { in extend_with_layout() argument
256 next_size: DeviceSize, in extend_inner()
[all …]
Dsuballocator.rs156 pub fn offset(&self) -> DeviceSize { in offset()
162 pub fn size(&self) -> DeviceSize { in size()
291 range: Range<DeviceSize>, in create_memory_range()
333 fn debug_validate_memory_range(&self, range: &Range<DeviceSize>) { in debug_validate_memory_range()
461 pub fn shift(&mut self, amount: DeviceSize) { in shift()
474 pub fn shrink(&mut self, new_size: DeviceSize) { in shrink()
493 pub unsafe fn set_offset(&mut self, new_offset: DeviceSize) { in set_offset()
516 pub unsafe fn set_size(&mut self, new_size: DeviceSize) { in set_size()
708 fn free_size(&self) -> DeviceSize; in free_size()
1198 fn free_size(&self) -> DeviceSize { in free_size()
[all …]
Dmod.rs379 allocation_size: DeviceSize, in allocate_dedicated_unchecked()
1354 allocation_size: DeviceSize, in allocate_dedicated_unchecked()
1443 allocation_size: DeviceSize, in allocate_dedicated_unchecked()
1611 pub(crate) const fn align_up(val: DeviceSize, alignment: DeviceAlignment) -> DeviceSize { in align_up()
1616 pub(crate) const fn align_down(val: DeviceSize, alignment: DeviceAlignment) -> DeviceSize { in align_down()
/aosp_15_r20/external/rust/android-crates-io/crates/ash/src/extensions/nv/
Dray_tracing.rs103 instance_offset: vk::DeviceSize, in cmd_build_acceleration_structure()
108 scratch_offset: vk::DeviceSize, in cmd_build_acceleration_structure()
141 raygen_shader_binding_offset: vk::DeviceSize, in cmd_trace_rays()
143 miss_shader_binding_offset: vk::DeviceSize, in cmd_trace_rays()
144 miss_shader_binding_stride: vk::DeviceSize, in cmd_trace_rays()
146 hit_shader_binding_offset: vk::DeviceSize, in cmd_trace_rays()
147 hit_shader_binding_stride: vk::DeviceSize, in cmd_trace_rays()
149 callable_shader_binding_offset: vk::DeviceSize, in cmd_trace_rays()
150 callable_shader_binding_stride: vk::DeviceSize, in cmd_trace_rays()
Dmesh_shader.rs36 offset: vk::DeviceSize, in cmd_draw_mesh_tasks_indirect()
55 offset: vk::DeviceSize, in cmd_draw_mesh_tasks_indirect_count()
57 count_buffer_offset: vk::DeviceSize, in cmd_draw_mesh_tasks_indirect_count()
/aosp_15_r20/external/rust/android-crates-io/crates/vulkano/src/buffer/
Dmod.rs367 len: DeviceSize, in new_slice()
388 len: DeviceSize, in new_unsized()
488 pub fn size(&self) -> DeviceSize { in size()
619 pub(crate) unsafe fn cpu_read_lock(&mut self, range: Range<DeviceSize>) { in cpu_read_lock()
633 pub(crate) unsafe fn cpu_read_unlock(&mut self, range: Range<DeviceSize>) { in cpu_read_unlock()
664 pub(crate) unsafe fn cpu_write_lock(&mut self, range: Range<DeviceSize>) { in cpu_write_lock()
673 pub(crate) unsafe fn cpu_write_unlock(&mut self, range: Range<DeviceSize>) { in cpu_write_unlock()
701 pub(crate) unsafe fn gpu_read_lock(&mut self, range: Range<DeviceSize>) { in gpu_read_lock()
714 pub(crate) unsafe fn gpu_read_unlock(&mut self, range: Range<DeviceSize>) { in gpu_read_unlock()
741 pub(crate) unsafe fn gpu_write_lock(&mut self, range: Range<DeviceSize>) { in gpu_write_lock()
[all …]
Dsubbuffer.rs81 pub(super) fn from_arena(arena: Arc<Arena>, offset: DeviceSize, size: DeviceSize) -> Self { in from_arena()
91 pub fn offset(&self) -> DeviceSize { in offset()
96 fn memory_offset(&self) -> DeviceSize { in memory_offset()
106 pub fn size(&self) -> DeviceSize { in size()
111 pub(crate) fn range(&self) -> Range<DeviceSize> { in range()
409 pub fn len(&self) -> DeviceSize { in len()
899 pub const fn head_size(&self) -> DeviceSize { in head_size()
915 pub const fn element_size(&self) -> Option<DeviceSize> { in element_size()
Dallocator.rs170 pub fn arena_size(&self) -> DeviceSize { in arena_size()
178 pub fn set_arena_size(&self, size: DeviceSize) { in set_arena_size()
220 len: DeviceSize, in allocate_slice()
235 len: DeviceSize, in allocate_unsized()
/aosp_15_r20/external/rust/android-crates-io/crates/vulkano/src/image/
Dsys.rs2259 pub(crate) fn range_size(&self) -> DeviceSize { in range_size()
2292 mut range: Range<DeviceSize>, in range_to_subresources()
2399 fn new(size: DeviceSize, initial_layout: ImageLayout) -> Self { in new()
2430 pub(crate) unsafe fn cpu_read_lock(&mut self, range: Range<DeviceSize>) { in cpu_read_lock()
2445 pub(crate) unsafe fn cpu_read_unlock(&mut self, range: Range<DeviceSize>) { in cpu_read_unlock()
2478 pub(crate) unsafe fn cpu_write_lock(&mut self, range: Range<DeviceSize>) { in cpu_write_lock()
2488 pub(crate) unsafe fn cpu_write_unlock(&mut self, range: Range<DeviceSize>) { in cpu_write_unlock()
2507 range: Range<DeviceSize>, in check_gpu_read()
2527 pub(crate) unsafe fn gpu_read_lock(&mut self, range: Range<DeviceSize>) { in gpu_read_lock()
2540 pub(crate) unsafe fn gpu_read_unlock(&mut self, range: Range<DeviceSize>) { in gpu_read_unlock()
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/ash/src/extensions/khr/
Ddraw_indirect_count.rs25 offset: vk::DeviceSize, in cmd_draw_indexed_indirect_count()
27 count_buffer_offset: vk::DeviceSize, in cmd_draw_indexed_indirect_count()
48 offset: vk::DeviceSize, in cmd_draw_indirect_count()
50 count_buffer_offset: vk::DeviceSize, in cmd_draw_indirect_count()
/aosp_15_r20/external/rust/android-crates-io/crates/ash/src/
Ddevice.rs326 offsets: &[vk::DeviceSize], in cmd_bind_vertex_buffers2()
327 sizes: Option<&[vk::DeviceSize]>, in cmd_bind_vertex_buffers2()
328 strides: Option<&[vk::DeviceSize]>, in cmd_bind_vertex_buffers2()
547 offset: vk::DeviceSize, in cmd_draw_indirect_count()
549 count_buffer_offset: vk::DeviceSize, in cmd_draw_indirect_count()
570 offset: vk::DeviceSize, in cmd_draw_indexed_indirect_count()
572 count_buffer_offset: vk::DeviceSize, in cmd_draw_indexed_indirect_count()
1409 offset: vk::DeviceSize, in cmd_fill_buffer()
1410 size: vk::DeviceSize, in cmd_fill_buffer()
1422 offset: vk::DeviceSize, in cmd_update_buffer()
[all …]
Dutil.rs45 fn calc_padding(adr: vk::DeviceSize, align: vk::DeviceSize) -> vk::DeviceSize { in calc_padding()
50 pub unsafe fn new(ptr: *mut c_void, alignment: vk::DeviceSize, size: vk::DeviceSize) -> Self { in new()
/aosp_15_r20/external/rust/android-crates-io/crates/vulkano/src/memory/
Dmod.rs567 pub(crate) fn is_aligned(offset: DeviceSize, alignment: DeviceAlignment) -> bool { in is_aligned()
573 range: impl RangeBounds<DeviceSize>, in range()
574 bounds: RangeTo<DeviceSize>, in range()
575 ) -> Option<Range<DeviceSize>> { in range()
/aosp_15_r20/external/rust/android-crates-io/crates/ash/src/extensions/ext/
Dmesh_shader.rs45 offset: vk::DeviceSize, in cmd_draw_mesh_tasks_indirect()
68 offset: vk::DeviceSize, in cmd_draw_mesh_tasks_indirect_count()
70 count_buffer_offset: vk::DeviceSize, in cmd_draw_mesh_tasks_indirect_count()
Dextended_dynamic_state.rs85 offsets: &[vk::DeviceSize], in cmd_bind_vertex_buffers2()
86 sizes: Option<&[vk::DeviceSize]>, in cmd_bind_vertex_buffers2()
87 strides: Option<&[vk::DeviceSize]>, in cmd_bind_vertex_buffers2()
Ddescriptor_buffer.rs28 ) -> vk::DeviceSize { in get_descriptor_set_layout_size()
40 ) -> vk::DeviceSize { in get_descriptor_set_layout_binding_offset()
89 offsets: &[vk::DeviceSize], in cmd_set_descriptor_buffer_offsets()
Dshader_object.rs164 offsets: &[vk::DeviceSize], in cmd_bind_vertex_buffers2()
165 sizes: Option<&[vk::DeviceSize]>, in cmd_bind_vertex_buffers2()
166 strides: Option<&[vk::DeviceSize]>, in cmd_bind_vertex_buffers2()
/aosp_15_r20/external/rust/android-crates-io/crates/vulkano/src/sync/future/
Dfence_signal.rs470 range: Range<DeviceSize>, in check_buffer_access()
485 range: Range<DeviceSize>, in check_image_access()
593 range: Range<DeviceSize>, in check_buffer_access()
603 range: Range<DeviceSize>, in check_image_access()
Dmod.rs201 range: Range<DeviceSize>, in check_buffer_access()
220 range: Range<DeviceSize>, in check_image_access()
436 range: Range<DeviceSize>, in check_buffer_access()
446 range: Range<DeviceSize>, in check_image_access()
Dnow.rs62 _range: Range<DeviceSize>, in check_buffer_access()
73 _range: Range<DeviceSize>, in check_image_access()
Dsemaphore_signal.rs208 range: Range<DeviceSize>, in check_buffer_access()
219 range: Range<DeviceSize>, in check_image_access()
Djoin.rs203 range: Range<DeviceSize>, in check_buffer_access()
235 range: Range<DeviceSize>, in check_image_access()
/aosp_15_r20/external/rust/android-crates-io/crates/vulkano/src/
Dquery.rs382 buffer_start: DeviceSize, in check_query_pool_results()
383 buffer_len: DeviceSize, in check_query_pool_results()
385 ) -> Result<DeviceSize, GetResultsError> in check_query_pool_results()
554 pub const fn result_len(self) -> DeviceSize { in result_len()
/aosp_15_r20/external/rust/android-crates-io/crates/ash/src/vk/
Dfeatures.rs1051 p_offsets: *const DeviceSize, constant
1536 _offset: DeviceSize, in load()
1537 _size: DeviceSize, in load()
1608 _p_committed_memory_in_bytes: *mut DeviceSize, in load()
1630 _memory_offset: DeviceSize, in load()
1648 _memory_offset: DeviceSize, in load()
1971 _stride: DeviceSize, in load()
3002 _offset: DeviceSize, in load()
3025 _p_offsets: *const DeviceSize, in load()
3082 _offset: DeviceSize, in load()
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/vulkano/src/command_buffer/standard/builder/
Dquery.rs554 element_size: DeviceSize, in validate_copy_query_pool_results()
630 stride: DeviceSize, in copy_query_pool_results_unchecked()

123