Lines Matching defs:from
73 /* reduce from aRR to aR */
411 BN_MONT_CTX *BN_MONT_CTX_copy(BN_MONT_CTX *to, BN_MONT_CTX *from)
413 if (to == from)
416 if (!BN_copy(&(to->RR), &(from->RR)))
418 if (!BN_copy(&(to->N), &(from->N)))
420 if (!BN_copy(&(to->Ni), &(from->Ni)))
422 to->ri = from->ri;
423 to->n0[0] = from->n0[0];
424 to->n0[1] = from->n0[1];
445 * independently and only use the one from the thread that wins the race