Lines Matching refs:size
31 size_t size, in Initialize() argument
38 NN_ALIGN_TASSERT_( size, NN_OS_MEMORY_PAGE_SIZE ); in Initialize()
42 …result = nn::svc::CreateMemoryBlock(&handle, reinterpret_cast<uptr>(p), size, myPermission, otherP… in Initialize()
46 SetAddressAndSize(reinterpret_cast<uptr>(p), size); in Initialize()
51 size_t size, in TryInitialize() argument
58 NN_ALIGN_TASSERT_( size, NN_OS_MEMORY_PAGE_SIZE ); in TryInitialize()
62 …result = nn::svc::CreateMemoryBlock(&handle, reinterpret_cast<uptr>(p), size, myPermission, otherP… in TryInitialize()
66 SetAddressAndSize(reinterpret_cast<uptr>(p), size); in TryInitialize()
84 size_t size, in AttachAndMap() argument
88 NN_ALIGN_TASSERT_( size, NN_OS_MEMORY_PAGE_SIZE ); in AttachAndMap()
91 return Map(size, otherPermission, myPermission); in AttachAndMap()
95 size_t size, in Map() argument
101 NN_ALIGN_TASSERT_( size, NN_OS_MEMORY_PAGE_SIZE ); in Map()
104 uptr addr = detail::AllocateFromSharedMemorySpace(this, size); in Map()