Lines Matching refs:lowBits
83 jspb.BinaryEncoder.prototype.writeSplitVarint64 = function(lowBits, highBits) { argument
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);
108 jspb.BinaryEncoder.prototype.writeSplitFixed64 = function(lowBits, highBits) { argument
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);