Home
last modified time | relevance | path

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

/wasmtime-44.0.1/crates/fiber/src/
H A Dunix.rs127 start_ptr.align_offset(page_size) == 0, in from_custom()
132 end_ptr.align_offset(page_size) == 0, in from_custom()
/wasmtime-44.0.1/crates/wasi-preview1-component-adapter/src/
H A Dlib.rs462 let align_offset = self.base.align_offset(align); in align_to() localVariable
463 if align_offset > self.len { in align_to()
466 self.len -= align_offset; in align_to()
467 self.base = unsafe { self.base.add(align_offset) }; in align_to()