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

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