BitOperations.RoundUpToPowerOf2 Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Sobrecargas
RoundUpToPowerOf2(UInt32) |
Arredonda o valor especificado UInt32 até uma potência de dois. |
RoundUpToPowerOf2(UInt64) |
Arredonda o valor especificado UInt64 até uma potência de dois. |
RoundUpToPowerOf2(UIntPtr) |
Arredonda o valor integral fornecido até uma potência de 2. |
RoundUpToPowerOf2(UInt32)
- Origem:
- BitOperations.cs
- Origem:
- BitOperations.cs
- Origem:
- BitOperations.cs
Importante
Esta API não está em conformidade com CLS.
Arredonda o valor especificado UInt32 até uma potência de dois.
public:
static System::UInt32 RoundUpToPowerOf2(System::UInt32 value);
[System.CLSCompliant(false)]
public static uint RoundUpToPowerOf2 (uint value);
[<System.CLSCompliant(false)>]
static member RoundUpToPowerOf2 : uint32 -> uint32
Public Shared Function RoundUpToPowerOf2 (value As UInteger) As UInteger
Parâmetros
- value
- UInt32
O valor a ser arredondado até uma potência de dois.
Retornos
A menor potência de dois que é maior ou igual a value
.
Se value
for 0 ou o resultado estourar, retornará 0.
- Atributos
Aplica-se a
RoundUpToPowerOf2(UInt64)
- Origem:
- BitOperations.cs
- Origem:
- BitOperations.cs
- Origem:
- BitOperations.cs
Importante
Esta API não está em conformidade com CLS.
Arredonda o valor especificado UInt64 até uma potência de dois.
public:
static System::UInt64 RoundUpToPowerOf2(System::UInt64 value);
[System.CLSCompliant(false)]
public static ulong RoundUpToPowerOf2 (ulong value);
[<System.CLSCompliant(false)>]
static member RoundUpToPowerOf2 : uint64 -> uint64
Public Shared Function RoundUpToPowerOf2 (value As ULong) As ULong
Parâmetros
- value
- UInt64
O valor a ser arredondado até uma potência de dois.
Retornos
A menor potência de dois que é maior ou igual a value
.
Se value
for 0 ou o resultado estourar, retornará 0.
- Atributos
Aplica-se a
RoundUpToPowerOf2(UIntPtr)
- Origem:
- BitOperations.cs
- Origem:
- BitOperations.cs
- Origem:
- BitOperations.cs
Importante
Esta API não está em conformidade com CLS.
Arredonda o valor integral fornecido até uma potência de 2.
public:
static UIntPtr RoundUpToPowerOf2(UIntPtr value);
[System.CLSCompliant(false)]
public static UIntPtr RoundUpToPowerOf2 (UIntPtr value);
[<System.CLSCompliant(false)>]
static member RoundUpToPowerOf2 : unativeint -> unativeint
Public Shared Function RoundUpToPowerOf2 (value As UIntPtr) As UIntPtr
Parâmetros
- value
-
UIntPtr
unativeint
O valor.
Retornos
unativeint
A menor potência de 2, que é maior ou igual a value
.
Se value
for 0 ou o resultado estourar, retornará 0.
- Atributos