Lines Matching refs:rp
110 BN_ULONG bn_mul_add_words(BN_ULONG *rp, const BN_ULONG *ap, int num, in bn_mul_add_words() argument
119 mul_add(rp[0], ap[0], w, c1); in bn_mul_add_words()
120 mul_add(rp[1], ap[1], w, c1); in bn_mul_add_words()
121 mul_add(rp[2], ap[2], w, c1); in bn_mul_add_words()
122 mul_add(rp[3], ap[3], w, c1); in bn_mul_add_words()
124 rp += 4; in bn_mul_add_words()
128 mul_add(rp[0], ap[0], w, c1); in bn_mul_add_words()
131 mul_add(rp[1], ap[1], w, c1); in bn_mul_add_words()
134 mul_add(rp[2], ap[2], w, c1); in bn_mul_add_words()
141 BN_ULONG bn_mul_words(BN_ULONG *rp, const BN_ULONG *ap, int num, BN_ULONG w) in bn_mul_words() argument
149 mul(rp[0], ap[0], w, c1); in bn_mul_words()
150 mul(rp[1], ap[1], w, c1); in bn_mul_words()
151 mul(rp[2], ap[2], w, c1); in bn_mul_words()
152 mul(rp[3], ap[3], w, c1); in bn_mul_words()
154 rp += 4; in bn_mul_words()
158 mul(rp[0], ap[0], w, c1); in bn_mul_words()
161 mul(rp[1], ap[1], w, c1); in bn_mul_words()
164 mul(rp[2], ap[2], w, c1); in bn_mul_words()
205 BN_ULONG bn_add_words(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp, in bn_add_words() argument
225 :"r"(rp), "r"(ap), "r"(bp) in bn_add_words()
232 BN_ULONG bn_sub_words(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp, in bn_sub_words() argument
252 :"r"(rp), "r"(ap), "r"(bp) in bn_sub_words()