Lines Matching refs:lowBits
80 * @param {number} lowBits The low 32 bits of the int.
83 jspb.BinaryEncoder.prototype.writeSplitVarint64 = function(lowBits, highBits) {
84 goog.asserts.assert(lowBits == Math.floor(lowBits));
86 goog.asserts.assert((lowBits >= 0) &&
87 (lowBits < jspb.BinaryConstants.TWO_TO_32));
93 while (highBits > 0 || lowBits > 127) {
94 this.buffer_.push((lowBits & 0x7f) | 0x80);
95 lowBits = ((lowBits >>> 7) | (highBits << 25)) >>> 0;
98 this.buffer_.push(lowBits);
105 * @param {number} lowBits The low 32 bits of the int.
108 jspb.BinaryEncoder.prototype.writeSplitFixed64 = function(lowBits, highBits) {
109 goog.asserts.assert(lowBits == Math.floor(lowBits));
111 goog.asserts.assert((lowBits >= 0) &&
112 (lowBits < jspb.BinaryConstants.TWO_TO_32));
115 this.writeUint32(lowBits);