Home | History | Annotate | Download | only in poppler

Lines Matching refs:high

545   makeBigInt: function (low,high,unsigned) { var ret = (unsigned ? ((+((low>>>0)))+((+((high>>>0)))*(+4294967296))) : ((+((low>>>0)))+((+((high|0)))*(+4294967296)))); return ret; },
5296 // Flatten i64-1 [low, high] into a (slightly rounded) double
7439 * Constructs a 64-bit two's-complement integer, given its low and high 32-bit
7458 * @param {number} high The high (signed) 32 bits of the long.
7461 goog.math.Long = function(low, high) {
7472 this.high_ = high | 0; // force into 32 signed bits.
7534 * the given high and low bits. Each is assumed to use 32 bits.
7536 * @param {number} highBits The high 32-bits.
7739 /** @return {number} The high 32-bits as a signed value. */
8153 var high = this.high_;
8156 (high << numBits) | (low >>> (32 - numBits)));
8174 var high = this.high_;
8178 (low >>> numBits) | (high << (32 - numBits)),
8179 high >> numBits);
8182 high >> (numBits - 32),
8183 high >= 0 ? 0 : -1);
8201 var high = this.high_;
8205 (low >>> numBits) | (high << (32 - numBits)),
8206 high >>> numBits);
8208 return goog.math.Long.fromBits(high, 0);
8210 return goog.math.Long.fromBits(high >>> (numBits - 32), 0);
8279 // am1: use a single mult and divide to get the high bits,
8416 // (protected) clamp off excess high words