Home
last modified time | relevance | path

Searched refs:ALIGN (Results 1 – 2 of 2) sorted by relevance

/packages/modules/Virtualization/libs/libvmbase/
Dsections.ld36 .text : ALIGN(4096) {
50 .rodata : ALIGN(4096) {
64 .data : ALIGN(4096) {
71 . = ALIGN(32);
80 .image_footer (NOLOAD) : ALIGN(4096) {
82 . = ALIGN(LENGTH(image));
87 .bss : ALIGN(16) {
91 . = ALIGN(16);
96 .eh_stack_guard_page (NOLOAD) : ALIGN(4096) {
101 .eh_stack (NOLOAD) : ALIGN(4096) {
[all …]
/packages/modules/Virtualization/libs/libvmbase/src/
Dheap.rs193 const ALIGN: usize = const_max_size(mem::size_of::<usize>(), mem::size_of::<u64>()); in malloc_layout() constant
194 Layout::from_size_align(size.get(), ALIGN).ok() in malloc_layout()