X86Base.X64.DivRem Método
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Sobrecargas
DivRem(UInt64, Int64, Int64) |
__int64 _div128(__int64 highdividend, __int64 lowdividend, __int64 divisor, __int64* resto) DIV reg/m64 |
DivRem(UInt64, UInt64, UInt64) |
unsigned __int64 _udiv128(unsigned __int64 highdividend, unsigned __int64 lowdividend, unsigned __int64 divisor, unsigned __int64* resto) DIV reg/m64 |
DivRem(UInt64, Int64, Int64)
- Source:
- X86Base.cs
- Source:
- X86Base.cs
Nota
Para usar esta API en versión preliminar, debe habilitar las características en versión preliminar en su proyecto estableciendo la propiedad EnablePreviewFeatures
en True
en el archivo del proyecto. Para más información, vea https://aka.ms/dotnet-preview-features.
DivRem is in preview.
__int64 _div128(__int64 highdividend, __int64 lowdividend, __int64 divisor, __int64* resto) DIV reg/m64
public:
static ValueTuple<long, long> DivRem(System::UInt64 lower, long upper, long divisor);
[System.Runtime.Versioning.RequiresPreviewFeatures("DivRem is in preview.")]
public static (long Quotient, long Remainder) DivRem (ulong lower, long upper, long divisor);
[<System.Runtime.Versioning.RequiresPreviewFeatures("DivRem is in preview.")>]
static member DivRem : uint64 * int64 * int64 -> ValueTuple<int64, int64>
Public Shared Function DivRem (lower As ULong, upper As Long, divisor As Long) As ValueTuple(Of Long, Long)
Parámetros
- lower
- UInt64
- upper
- Int64
- divisor
- Int64
Devoluciones
- Atributos
Se aplica a
DivRem(UInt64, UInt64, UInt64)
- Source:
- X86Base.cs
- Source:
- X86Base.cs
Nota
Para usar esta API en versión preliminar, debe habilitar las características en versión preliminar en su proyecto estableciendo la propiedad EnablePreviewFeatures
en True
en el archivo del proyecto. Para más información, vea https://aka.ms/dotnet-preview-features.
DivRem is in preview.
unsigned __int64 _udiv128(unsigned __int64 highdividend, unsigned __int64 lowdividend, unsigned __int64 divisor, unsigned __int64* resto) DIV reg/m64
public:
static ValueTuple<System::UInt64, System::UInt64> DivRem(System::UInt64 lower, System::UInt64 upper, System::UInt64 divisor);
[System.Runtime.Versioning.RequiresPreviewFeatures("DivRem is in preview.")]
public static (ulong Quotient, ulong Remainder) DivRem (ulong lower, ulong upper, ulong divisor);
[<System.Runtime.Versioning.RequiresPreviewFeatures("DivRem is in preview.")>]
static member DivRem : uint64 * uint64 * uint64 -> ValueTuple<uint64, uint64>
Public Shared Function DivRem (lower As ULong, upper As ULong, divisor As ULong) As ValueTuple(Of ULong, ULong)
Parámetros
- lower
- UInt64
- upper
- UInt64
- divisor
- UInt64
Devoluciones
- Atributos