Home
last modified time | relevance | path

Searched refs:WORD_MUL (Results 1 – 4 of 4) sorted by relevance

/freebsd/crypto/libecc/src/nn/
H A Dnn_mul_redc1.c178 WORD_MUL(prod_high, prod_low, a->val[i], b->val[j]); in _nn_mul_redc1()
192 WORD_MUL(prod_high, prod_low, m, p->val[0]); in _nn_mul_redc1()
196 WORD_MUL(prod_high, prod_low, m, p->val[j]); in _nn_mul_redc1()
H A Dnn_div.c129 WORD_MUL(prod_high, prod_low, in->val[i], w); in _nn_submul_word_shift()
230 WORD_MUL(qh, ql, rl, v); in _nn_divrem_normalized()
231 WORD_MUL(qstar, ql, rh, v); in _nn_divrem_normalized()
669 WORD_MUL(phl[1], phl[0], qh, (b)); in _word_divrem()
690 WORD_MUL(phl[1], phl[0], ql, (b)); in _word_divrem()
755 WORD_MUL(t[1], t[0], q, (word_t)~dl); in wreciprocal()
H A Dnn_mul.c76 WORD_MUL(prod_high, prod_low, in _nn_mul_low()
/freebsd/crypto/libecc/include/libecc/words/
H A Dwords.h98 #define WORD_MUL(outh, outl, in1, in2) do { \ macro