Lines Matching refs:Barrett
932 // Barrett modular reduction
933 function Barrett(m) {
934 // setup Barrett
967 Barrett.prototype.convert = barrettConvert;
968 Barrett.prototype.revert = barrettRevert;
969 Barrett.prototype.reduce = barrettReduce;
970 Barrett.prototype.mulTo = barrettMulTo;
971 Barrett.prototype.sqrTo = barrettSqrTo;
985 z = new Barrett(m);
1212 // Expose the Barrett function
1213 BigInteger.prototype.Barrett = Barrett