Lines Matching refs:rp
18 BN_ULONG bn_mul_words(BN_ULONG *rp, BN_ULONG *ap, int num, BN_ULONG w);
19 BN_ULONG bn_mul_add_words(BN_ULONG *rp, BN_ULONG *ap, int num,
21 void bn_sqr_words(BN_ULONG *rp, BN_ULONG *ap, int num);
23 BN_ULONG bn_add_words(BN_ULONG *rp, BN_ULONG *ap, BN_ULONG *bp,
25 BN_ULONG bn_sub_words(BN_ULONG *rp, BN_ULONG *ap, BN_ULONG *bp,
113 bn_mul_words(B<rp>, B<ap>, B<num>, B<w>) operates on the B<num> word
114 arrays B<rp> and B<ap>. It computes B<ap> * B<w>, places the result
115 in B<rp>, and returns the high word (carry).
117 bn_mul_add_words(B<rp>, B<ap>, B<num>, B<w>) operates on the B<num>
118 word arrays B<rp> and B<ap>. It computes B<ap> * B<w> + B<rp>, places
119 the result in B<rp>, and returns the high word (carry).
121 bn_sqr_words(B<rp>, B<ap>, B<n>) operates on the B<num> word array
123 word-wise, and places the low and high bytes of the result in B<rp>.
128 bn_add_words(B<rp>, B<ap>, B<bp>, B<num>) operates on the B<num> word
129 arrays B<ap>, B<bp> and B<rp>. It computes B<ap> + B<bp>, places the
130 result in B<rp>, and returns the high word (carry).
132 bn_sub_words(B<rp>, B<ap>, B<bp>, B<num>) operates on the B<num> word
133 arrays B<ap>, B<bp> and B<rp>. It computes B<ap> - B<bp>, places the
134 result in B<rp>, and returns the carry (1 if B<bp> E<gt> B<ap>, 0