Searched refs:bitsLow (Results 1 – 7 of 7) sorted by relevance
/third_party/protobuf/js/binary/ |
D | utils.js | 315 jspb.utils.joinUint64 = function(bitsLow, bitsHigh) { argument 316 return bitsHigh * jspb.BinaryConstants.TWO_TO_32 + (bitsLow >>> 0); 327 jspb.utils.joinInt64 = function(bitsLow, bitsHigh) { argument 331 bitsLow = (~bitsLow + 1) >>> 0; 333 if (bitsLow == 0) { 338 var result = jspb.utils.joinUint64(bitsLow, bitsHigh); 353 jspb.utils.toZigzag64 = function(bitsLow, bitsHigh, convert) { argument 364 bitsHigh = (bitsHigh << 1 | bitsLow >>> 31) ^ signFlipMask; 365 bitsLow = (bitsLow << 1) ^ signFlipMask; 366 return convert(bitsLow, bitsHigh); [all …]
|
D | decoder.js | 685 var bitsLow = this.readUint32(); 687 return jspb.utils.joinUint64(bitsLow, bitsHigh); 699 var bitsLow = this.readUint32(); 701 return jspb.utils.joinUnsignedDecimalString(bitsLow, bitsHigh); 757 var bitsLow = this.readUint32(); 759 return jspb.utils.joinInt64(bitsLow, bitsHigh); 771 var bitsLow = this.readUint32(); 773 return jspb.utils.joinSignedDecimalString(bitsLow, bitsHigh); 784 var bitsLow = this.readUint32(); 786 return jspb.utils.joinFloat32(bitsLow, bitsHigh); [all …]
|
D | utils_test.js | 64 function toHashString(bitsLow, bitsHigh) { argument 65 return String.fromCharCode((bitsLow >>> 0) & 0xFF, 66 (bitsLow >>> 8) & 0xFF, 67 (bitsLow >>> 16) & 0xFF, 68 (bitsLow >>> 24) & 0xFF,
|
D | decoder_test.js | 223 function hexJoin(bitsLow, bitsHigh) { argument 225 (bitsLow >>> 0).toString(16)}`; 286 function hexJoin(bitsLow, bitsHigh) { argument 288 (bitsLow >>> 0).toString(16)}`;
|
D | writer.js | 1498 lo(value[i]), hi(value[i]), function(bitsLow, bitsHigh) { argument 1499 encoder.writeSplitVarint64(bitsLow >>> 0, bitsHigh >>> 0);
|
/third_party/protobuf/js/compatibility_tests/v3.0.0/binary/ |
D | utils_test.js | 64 function toHashString(bitsLow, bitsHigh) { argument 65 return String.fromCharCode((bitsLow >>> 0) & 0xFF, 66 (bitsLow >>> 8) & 0xFF, 67 (bitsLow >>> 16) & 0xFF, 68 (bitsLow >>> 24) & 0xFF,
|
/third_party/protobuf/js/compatibility_tests/v3.1.0/binary/ |
D | utils_test.js | 64 function toHashString(bitsLow, bitsHigh) { argument 65 return String.fromCharCode((bitsLow >>> 0) & 0xFF, 66 (bitsLow >>> 8) & 0xFF, 67 (bitsLow >>> 16) & 0xFF, 68 (bitsLow >>> 24) & 0xFF,
|