Lines Matching refs:highBits
83 jspb.BinaryEncoder.prototype.writeSplitVarint64 = function(lowBits, highBits) { argument
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;
108 jspb.BinaryEncoder.prototype.writeSplitFixed64 = function(lowBits, highBits) { argument
110 goog.asserts.assert(highBits == Math.floor(highBits));
113 goog.asserts.assert((highBits >= 0) &&
114 (highBits < jspb.BinaryConstants.TWO_TO_32));
116 this.writeUint32(highBits);