gmp_lib.mpn_sec_div_qr_itch Method

GMP Native Interface for .NET

gmp_libmpn_sec_div_qr_itch Method
Return the scratch space in number of limbs required by the function mpn_sec_div_qr.

Namespace:  Math.Gmp.Native
Assembly:  Math.Gmp.Native (in Math.Gmp.Native.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public static mp_size_t mpn_sec_div_qr_itch(
	mp_size_t nn,
	mp_size_t dn
)
Public Shared Function mpn_sec_div_qr_itch ( 
	nn As mp_size_t,
	dn As mp_size_t
) As mp_size_t
public:
static mp_size_t mpn_sec_div_qr_itch(
	mp_size_t nn, 
	mp_size_t dn
)
static member mpn_sec_div_qr_itch : 
        nn : mp_size_t * 
        dn : mp_size_t -> mp_size_t 

Parameters

nn
Type: Math.Gmp.Nativemp_size_t
The number of limbs of the mpn_sec_div_qr first operand.
dn
Type: Math.Gmp.Nativemp_size_t
The number of limbs of the mpn_sec_div_qr second operand.

Return Value

Type: mp_size_t
The scratch space in number of limbs required by the function mpn_sec_div_qr.
See Also