示例#1
0
 public NativeContext(IJitMemoryAllocator allocator)
 {
     _block = allocator.Allocate(TotalSize);
 }
示例#2
0
        public NativeContext(IJitMemoryAllocator allocator)
        {
            _block = allocator.Allocate((ulong)Unsafe.SizeOf <NativeCtxStorage>());

            GetStorage().ExclusiveAddress = ulong.MaxValue;
        }
示例#3
0
 public NativeContext(IJitMemoryAllocator allocator)
 {
     _block = allocator.Allocate((ulong)Unsafe.SizeOf <NativeCtxStorage>());
 }