Lines Matching refs:fromNumber
7515 goog.math.Long.fromNumber = function(value) { function in goog.math.Long
7523 return goog.math.Long.fromNumber(-value).negate();
7569 var radixToPower = goog.math.Long.fromNumber(Math.pow(radix, 8));
7576 var power = goog.math.Long.fromNumber(Math.pow(radix, size));
7577 result = result.multiply(power).add(goog.math.Long.fromNumber(value));
7580 result = result.add(goog.math.Long.fromNumber(value));
7706 var radixLong = goog.math.Long.fromNumber(radix);
7717 var radixToPower = goog.math.Long.fromNumber(Math.pow(radix, 6));
7967 return goog.math.Long.fromNumber(this.toNumber() * other.toNumber());
8071 var approxRes = goog.math.Long.fromNumber(approx);
8075 approxRes = goog.math.Long.fromNumber(approx);
8266 if("number" == typeof a) this.fromNumber(a,b,c);