Lines Matching refs:size
30 size_t size, in Initialize() argument
37 NN_ALIGN_TASSERT_( size, NN_OS_MEMORY_PAGE_SIZE ); in Initialize()
41 …result = nn::svc::CreateMemoryBlock(&handle, reinterpret_cast<uptr>(p), size, myPermission, otherP… in Initialize()
45 SetAddressAndSize(reinterpret_cast<uptr>(p), size); in Initialize()
50 size_t size, in TryInitialize() argument
57 NN_ALIGN_TASSERT_( size, NN_OS_MEMORY_PAGE_SIZE ); in TryInitialize()
61 …result = nn::svc::CreateMemoryBlock(&handle, reinterpret_cast<uptr>(p), size, myPermission, otherP… in TryInitialize()
65 SetAddressAndSize(reinterpret_cast<uptr>(p), size); in TryInitialize()
83 size_t size, in AttachAndMap() argument
87 NN_ALIGN_TASSERT_( size, NN_OS_MEMORY_PAGE_SIZE ); in AttachAndMap()
90 return Map(size, otherPermission, myPermission); in AttachAndMap()
94 size_t size, in Map() argument
100 NN_ALIGN_TASSERT_( size, NN_OS_MEMORY_PAGE_SIZE ); in Map()
103 uptr addr = detail::AllocateFromSharedMemorySpace(this, size); in Map()