Home | History | Annotate | Download | only in binary

Lines Matching refs:highBits

81  * @param {number} highBits The high 32 bits of the int.
83 jspb.BinaryEncoder.prototype.writeSplitVarint64 = function(lowBits, highBits) {
85 goog.asserts.assert(highBits == Math.floor(highBits));
88 goog.asserts.assert((highBits >= 0) &&
89 (highBits < jspb.BinaryConstants.TWO_TO_32));
93 while (highBits > 0 || lowBits > 127) {
95 lowBits = ((lowBits >>> 7) | (highBits << 25)) >>> 0;
96 highBits = highBits >>> 7;