Lines Matching refs:src1
115 static inline void fp_submant(struct fp_ext *dest, struct fp_ext *src1, in fp_submant() argument
120 : "g,d" (src2->lowmant), "0,0" (src1->lowmant)); in fp_submant()
122 : "d" (src2->mant.m32[1]), "0" (src1->mant.m32[1])); in fp_submant()
124 : "d" (src2->mant.m32[0]), "0" (src1->mant.m32[0])); in fp_submant()
127 #define fp_mul64(desth, destl, src1, src2) ({ \ argument
129 : "dm" (src1), "0" (src2)); \
134 #define fp_add64(dest1, dest2, src1, src2) ({ \ argument
138 : "d" (src1), "0" (dest1)); \
166 static inline void fp_multiplymant(union fp_mant128 *dest, struct fp_ext *src1, in fp_multiplymant() argument
171 fp_mul64(dest->m32[0], dest->m32[1], src1->mant.m32[0], src2->mant.m32[0]); in fp_multiplymant()
172 fp_mul64(dest->m32[2], dest->m32[3], src1->mant.m32[1], src2->mant.m32[1]); in fp_multiplymant()
174 fp_mul64(temp.m32[0], temp.m32[1], src1->mant.m32[0], src2->mant.m32[1]); in fp_multiplymant()
177 fp_mul64(temp.m32[0], temp.m32[1], src1->mant.m32[1], src2->mant.m32[0]); in fp_multiplymant()