mpfr_libmpfr_custom_get_size Method |
Return the needed size in bytes to store the significand of a floating-point number of precision prec.
Namespace:
Math.Mpfr.Native
Assembly:
Math.Mpfr.Native (in Math.Mpfr.Native.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic static size_t mpfr_custom_get_size(
uint prec
)
Public Shared Function mpfr_custom_get_size (
prec As UInteger
) As size_t
public:
static size_t mpfr_custom_get_size(
unsigned int prec
)
static member mpfr_custom_get_size :
prec : uint32 -> size_t
Parameters
- prec
- Type: SystemUInt32
The precision in bits.
Return Value
Type:
size_tReturn the needed size in bytes to store the significand of a floating-point number of precision
prec.
Examples
size_t size = mpfr_lib.mpfr_custom_get_size(64U);
void_ptr significand = gmp_lib.allocate(size);
gmp_lib.ZeroMemory(significand.ToIntPtr(), (int)size);
mpfr_t x = new mpfr_t();
mpfr_lib.mpfr_custom_init_set(x, mpfr_kind_t.MPFR_ZERO_KIND, 0, 64U, significand);
Assert.IsTrue(mpfr_lib.mpfr_set_si(x, 16, mpfr_rnd_t.MPFR_RNDN) == 0);
Assert.IsTrue(mpfr_lib.mpfr_custom_get_exp(x) == 5);
Byte[] result = new byte[] { 0, 0, 0, 0, 0, 0, 0, 0x80 };
byte[] sp = new byte[8];
Marshal.Copy(significand.ToIntPtr(), sp, 0, 8);
Assert.IsTrue(sp.SequenceEqual(result));
mpfr_lib.mpfr_custom_clear(x);
gmp_lib.free(significand);
Dim size As size_t = mpfr_lib.mpfr_custom_get_size(64U)
Dim significand As void_ptr = gmp_lib.allocate(size)
gmp_lib.ZeroMemory(significand.ToIntPtr(), CType(size, Integer))
Dim x As mpfr_t = New mpfr_t()
mpfr_lib.mpfr_custom_init_set(x, mpfr_kind_t.MPFR_ZERO_KIND, 0, 64U, significand)
Assert.IsTrue(mpfr_lib.mpfr_set_si(x, 16, mpfr_rnd_t.MPFR_RNDN) = 0)
Assert.IsTrue(mpfr_lib.mpfr_custom_get_exp(x) = 5)
Dim result() As Byte = New Byte() { 0, 0, 0, 0, 0, 0, 0, 0x80}
Dim sp() As Byte = New Byte(8) { }
Marshal.Copy(significand.ToIntPtr(), sp, 0, 8)
Assert.IsTrue(sp.SequenceEqual(result))
mpfr_lib.mpfr_custom_clear(x)
gmp_lib.free(significand)
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
See AlsoReference
mpfr_custom_get_size