次の方法で共有


NativeMemory.AlignedAlloc(UIntPtr, UIntPtr) メソッド

定義

重要

この API は CLS 準拠ではありません。

指定したサイズとアラインメントのメモリのアラインメント ブロックをバイト単位で割り当てます。

public:
 static void* AlignedAlloc(UIntPtr byteCount, UIntPtr alignment);
[System.CLSCompliant(false)]
public static void* AlignedAlloc (nuint byteCount, nuint alignment);
[System.CLSCompliant(false)]
public static void* AlignedAlloc (UIntPtr byteCount, UIntPtr alignment);
[<System.CLSCompliant(false)>]
static member AlignedAlloc : unativeint * unativeint -> nativeptr<unit>

パラメーター

byteCount
UIntPtr

nuint

unativeint

割り当てるブロックのサイズ (バイト単位)。

alignment
UIntPtr

nuint

unativeint

割り当てるブロックのアラインメント (バイト単位)。 これは の累乗 2である必要があります。

戻り値

Void*

割り当てられたメモリ のアラインされたブロックへのポインター。

属性

例外

alignment は 2 の累乗ではありません。

を使用した byteCount メモリ alignment の割り当てに失敗しました。

注釈

このメソッドは0、 を にすることができbyteCount、逆参照すべきではなく、メモリ リークを回避するために free に渡す必要がある有効なポインターを返します。

このメソッドは、C aligned_alloc API または Win32 などの _aligned_malloc プラットフォーム依存のアラインアロケーション API に対するシン ラッパーです。

このメソッドは、 または Realloc(Void*, UIntPtr)Free(Void*)互換性がありません。 代わりに、 または を呼び出しますAlignedFree(Void*)AlignedRealloc(Void*, UIntPtr, UIntPtr)

適用対象