Lines Matching refs:high
561 makeBigInt: function (low,high,unsigned) { var ret = (unsigned ? ((+((low>>>0)))+((+((high>>>0)))*(+4294967296))) : ((+((low>>>0)))+((+((high|0)))*(+4294967296)))); return ret; },
6205 // Flatten i64-1 [low, high] into a (slightly rounded) double
40941 * Constructs a 64-bit two's-complement integer, given its low and high 32-bit
40960 * @param {number} high The high (signed) 32 bits of the long.
40963 goog.math.Long = function(low, high) {
40974 this.high_ = high | 0; // force into 32 signed bits.
41036 * the given high and low bits. Each is assumed to use 32 bits.
41038 * @param {number} highBits The high 32-bits.
41241 /** @return {number} The high 32-bits as a signed value. */
41655 var high = this.high_;
41658 (high << numBits) | (low >>> (32 - numBits)));
41676 var high = this.high_;
41680 (low >>> numBits) | (high << (32 - numBits)),
41681 high >> numBits);
41684 high >> (numBits - 32),
41685 high >= 0 ? 0 : -1);
41703 var high = this.high_;
41707 (low >>> numBits) | (high << (32 - numBits)),
41708 high >>> numBits);
41710 return goog.math.Long.fromBits(high, 0);
41712 return goog.math.Long.fromBits(high >>> (numBits - 32), 0);
41781 // am1: use a single mult and divide to get the high bits,
41918 // (protected) clamp off excess high words