Uses of Class
it.unich.jgmp.nativelib.SizeT
-
Packages that use SizeT Package Description it.unich.jgmp This package contains all the high-level classes of JGMP.it.unich.jgmp.nativelib This package contains all the low-level classes of JGMP. -
-
Uses of SizeT in it.unich.jgmp
Methods in it.unich.jgmp with parameters of type SizeT Modifier and Type Method Description com.sun.jna.Pointer
AllocationMonitor.JGMPAlloc. invoke(SizeT alloc_size)
void
AllocationMonitor.JGMPFree. invoke(com.sun.jna.Pointer ptr, SizeT alloc_size)
com.sun.jna.Pointer
AllocationMonitor.JGMPRealloc. invoke(com.sun.jna.Pointer ptr, SizeT old_size, SizeT new_size)
-
Uses of SizeT in it.unich.jgmp.nativelib
Methods in it.unich.jgmp.nativelib that return SizeT Modifier and Type Method Description SizeT
SizeTByReference. getValue()
Get the value ofsize_t
object pointed by this reference.static SizeT
LibGmp. mpf_inp_str(MpqT rop, com.sun.jna.Pointer stream, int base)
static SizeT
LibGmp. mpf_out_str(com.sun.jna.Pointer stream, int base, SizeT nDigits, MpfT op)
static SizeT
LibGmp. mpq_inp_str(MpqT rop, com.sun.jna.Pointer stream, int base)
static SizeT
LibGmp. mpq_out_str(com.sun.jna.Pointer stream, int base, MpqT op)
static SizeT
LibGmp. mpz_inp_raw(MpzT rop, com.sun.jna.Pointer stream)
static SizeT
LibGmp. mpz_inp_str(MpzT rop, com.sun.jna.Pointer stream, int base)
static SizeT
LibGmp. mpz_out_raw(com.sun.jna.Pointer stream, MpzT op)
static SizeT
LibGmp. mpz_out_str(com.sun.jna.Pointer stream, int base, MpzT op)
static SizeT
LibGmp. mpz_sizeinbase(MpzT op, int base)
Methods in it.unich.jgmp.nativelib with parameters of type SizeT Modifier and Type Method Description static void
LibGmp. deallocate(com.sun.jna.Pointer p, SizeT size)
Call the native deallocator used by the GMP library.static int
LibGmp. gmp_snprintf(java.nio.ByteBuffer buf, SizeT size, java.lang.String fmt, java.lang.Object... args)
int
LibGmp.LibGmpExtra. gmp_snprintf(java.nio.ByteBuffer buf, SizeT size, java.lang.String fmt, java.lang.Object... args)
static int
LibGmp. gmp_vsnprintf(java.nio.ByteBuffer buf, SizeT size, java.lang.String fmt, com.sun.jna.Pointer ap)
com.sun.jna.Pointer
AllocFunc. invoke(SizeT alloc_size)
Return a pointer to newly allocated space with at leastalloc_size
bytes.void
FreeFunc. invoke(com.sun.jna.Pointer ptr, SizeT alloc_size)
De-allocate the space pointed to byptr
.com.sun.jna.Pointer
ReallocFunc. invoke(com.sun.jna.Pointer ptr, SizeT old_size, SizeT new_size)
Resize a previously allocated blockptr
ofold_size
bytes to benew_size
bytes.static SizeT
LibGmp. mpf_out_str(com.sun.jna.Pointer stream, int base, SizeT nDigits, MpfT op)
static com.sun.jna.Pointer
LibGmp. mpz_export(java.nio.ByteBuffer rop, SizeTByReference count, int order, SizeT size, int endian, SizeT nails, MpzT op)
static void
LibGmp. mpz_import(MpzT rop, SizeT count, int order, SizeT size, int endian, SizeT nails, java.nio.ByteBuffer op)
void
SizeTByReference. setValue(SizeT value)
Change the value of thesize_t
object pointed by this reference.Constructors in it.unich.jgmp.nativelib with parameters of type SizeT Constructor Description SizeTByReference(SizeT value)
Create a reference to a newly allocatedsize_t
object, which is initialized withvalue
.
-