mpfr_libmpfr_custom_move Method |
Inform MPFR that the significand of x has moved due to a garbage collect and update its new position to new_position.
Namespace:
Math.Mpfr.Native
Assembly:
Math.Mpfr.Native (in Math.Mpfr.Native.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic static void mpfr_custom_move(
mpfr_t x,
void_ptr new_position
)
Public Shared Sub mpfr_custom_move (
x As mpfr_t,
new_position As void_ptr
)
public:
static void mpfr_custom_move(
mpfr_t^ x,
void_ptr new_position
)
static member mpfr_custom_move :
x : mpfr_t *
new_position : void_ptr -> unit
Parameters
- x
- Type: Math.Mpfr.Nativempfr_t
The operand floating-point number. - new_position
- Type: Math.Gmp.Nativevoid_ptr
Pointer to the new address of the significand of x.
Remarks
However the application has to move the significand and the mpfr_t itself.
The behavior of this function for any mpfr_t not initialized with mpfr_custom_init_set is undefined.
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(x.ToString() == "0.160000000000000000000e2");
void_ptr significand2 = gmp_lib.allocate(8);
Marshal.Copy(new byte[] { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0 }, 0, significand2.ToIntPtr(), 8);
mpfr_lib.mpfr_custom_move(x, significand2);
Assert.IsTrue(x.ToString() == "0.240000000000000000000e2");
mpfr_lib.mpfr_custom_clear(x);
gmp_lib.free(significand);
gmp_lib.free(significand2);
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(x.ToString() = "0.160000000000000000000e2")
Dim significand2 As void_ptr = gmp_lib.allocate(8)
Dim Byte() As Marshal.Copy(New { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0 }, 0, significand2.ToIntPtr(), 8)
mpfr_lib.mpfr_custom_move(x, significand2)
Assert.IsTrue(x.ToString() = "0.240000000000000000000e2")
mpfr_lib.mpfr_custom_clear(x)
gmp_lib.free(significand)
gmp_lib.free(significand2)
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 Also