Lines Matching refs:fromNumber
41014 goog.math.Long.fromNumber = function(value) { function in goog.math.Long
41022 return goog.math.Long.fromNumber(-value).negate();
41068 var radixToPower = goog.math.Long.fromNumber(Math.pow(radix, 8));
41075 var power = goog.math.Long.fromNumber(Math.pow(radix, size));
41076 result = result.multiply(power).add(goog.math.Long.fromNumber(value));
41079 result = result.add(goog.math.Long.fromNumber(value));
41205 var radixLong = goog.math.Long.fromNumber(radix);
41216 var radixToPower = goog.math.Long.fromNumber(Math.pow(radix, 6));
41466 return goog.math.Long.fromNumber(this.toNumber() * other.toNumber());
41570 var approxRes = goog.math.Long.fromNumber(approx);
41574 approxRes = goog.math.Long.fromNumber(approx);
41765 if("number" == typeof a) this.fromNumber(a,b,c);