Lines Matching refs:places
50 BN_add() adds I<a> and I<b> and places the result in I<r> (C<r=a+b>).
53 BN_sub() subtracts I<b> from I<a> and places the result in I<r> (C<r=a-b>).
56 BN_mul() multiplies I<a> and I<b> and places the result in I<r> (C<r=a*b>).
60 BN_sqr() takes the square of I<a> and places the result in I<r>
64 BN_div() divides I<a> by I<d> and places the result in I<dv> and the
73 BN_nnmod() reduces I<a> modulo I<m> and places the nonnegative
76 BN_mod_add() adds I<a> to I<b> modulo I<m> and places the nonnegative
79 BN_mod_sub() subtracts I<b> from I<a> modulo I<m> and places the
89 BN_mod_sqr() takes the square of I<a> modulo B<m> and places the
98 BN_exp() raises I<a> to the I<p>-th power and places the result in I<r>
108 places the result in I<r>. I<r> may be the same B<BIGNUM> as I<a> or