函数名称:Divide num (NP/NSIZE) by den (DP/DSIZE) and write* the NSIZE-DSIZE least significant quotient limbs at QP* and the DSIZE long remainder at NP. If QEXTRA_LIMBS is* non-zero, generate that many fraction bits and append them after the* other quotient limbs.
函数原型:mpi_limb_t mpihelp_divrem(mpi_ptr_t qp, mpi_size_t qextra_limbs, mpi_ptr_t np, mpi_size_t nsize, mpi_ptr_t dp, mpi_size_t dsize)
返回类型:mpi_limb_t
参数:
类型 | 参数 | 名称 |
---|
mpi_ptr_t | qp | |
mpi_size_t | qextra_limbs | |
mpi_ptr_t | np | |
mpi_size_t | nsize | |
mpi_ptr_t | dp | |
mpi_size_t | dsize | |