Home
last modified time | relevance | path

Searched refs:coeffs (Results 1 – 2 of 2) sorted by relevance

/plugin/jplayer/vendor/happyworm/jplayer/lib/aurora/
Dflac.js331 var coeffs = new Int32Array(32);
333 coeffs[i] = stream.read(coeff_prec, true); field
344 c = coeffs[j];
350 c = coeffs[0];
360 sum += coeffs[j] * decoded[i - j - 1];
374 multiply_add(total, coeffs[j], decoded[i - j - 1]);
/plugin/xlsx2dw/packages/exceljs/
Dexceljs.js45762 BaseCurve.prototype._wnafMulAdd = function _wnafMulAdd(defW, points, coeffs, len, jacobianResult) {
45784 naf[a] = getNAF(coeffs[a], wndWidth[a], this._bitLength);
45785 naf[b] = getNAF(coeffs[b], wndWidth[b], this._bitLength);
45831 var jsf = getJSF(coeffs[a], coeffs[b]);
46781 ShortCurve.prototype._endoWnafMulAdd = function _endoWnafMulAdd(points, coeffs, jacobianResult) {
46786 var split = this._endoSplit(coeffs[i]);
46975 var coeffs = [k1, k2];
46976 …do) return this.curve._endoWnafMulAdd(points, coeffs);else return this.curve._wnafMulAdd(1, points…
46981 var coeffs = [k1, k2];
46982 … return this.curve._endoWnafMulAdd(points, coeffs, true);else return this.curve._wnafMulAdd(1, poi…