Home | History | Annotate | Download | only in openssl

Lines Matching full:divisor

413 /* BN_div divides |numerator| by |divisor| and places the result in |quotient|
419 const BIGNUM *numerator, const BIGNUM *divisor,
422 /* BN_div_word sets |numerator| = |numerator|/|divisor| and returns the
424 OPENSSL_EXPORT BN_ULONG BN_div_word(BIGNUM *numerator, BN_ULONG divisor);
504 #define BN_mod(rem, numerator, divisor, ctx) \
505 BN_div(NULL, (rem), (numerator), (divisor), (ctx))
508 * |rem| < |divisor| is always true. It returns one on success and zero on
511 const BIGNUM *divisor, BN_CTX *ctx);