Home
last modified time | relevance | path

Searched refs:bitsHigh (Results 1 – 10 of 10) sorted by relevance

/external/cronet/third_party/protobuf/js/binary/
Dutils.js320 jspb.utils.joinUint64 = function(bitsLow, bitsHigh) { argument
321 return bitsHigh * jspb.BinaryConstants.TWO_TO_32 + (bitsLow >>> 0);
332 jspb.utils.joinInt64 = function(bitsLow, bitsHigh) { argument
334 var sign = (bitsHigh & 0x80000000);
337 bitsHigh = ~bitsHigh >>> 0;
339 bitsHigh = (bitsHigh + 1) >>> 0;
343 var result = jspb.utils.joinUint64(bitsLow, bitsHigh);
358 jspb.utils.toZigzag64 = function(bitsLow, bitsHigh, convert) { argument
368 var signFlipMask = bitsHigh >> 31;
369 bitsHigh = (bitsHigh << 1 | bitsLow >>> 31) ^ signFlipMask;
[all …]
Ddecoder.js687 var bitsHigh = this.readUint32();
688 return jspb.utils.joinUint64(bitsLow, bitsHigh);
701 var bitsHigh = this.readUint32();
702 return jspb.utils.joinUnsignedDecimalString(bitsLow, bitsHigh);
759 var bitsHigh = this.readUint32();
760 return jspb.utils.joinInt64(bitsLow, bitsHigh);
773 var bitsHigh = this.readUint32();
774 return jspb.utils.joinSignedDecimalString(bitsLow, bitsHigh);
786 var bitsHigh = 0;
787 return jspb.utils.joinFloat32(bitsLow, bitsHigh);
[all …]
Dutils_test.js64 function toHashString(bitsLow, bitsHigh) { argument
69 (bitsHigh >>> 0) & 0xFF,
70 (bitsHigh >>> 8) & 0xFF,
71 (bitsHigh >>> 16) & 0xFF,
72 (bitsHigh >>> 24) & 0xFF);
Ddecoder_test.js223 function hexJoin(bitsLow, bitsHigh) { argument
224 return `0x${(bitsHigh >>> 0).toString(16)}:0x${
286 function hexJoin(bitsLow, bitsHigh) { argument
287 return `0x${(bitsHigh >>> 0).toString(16)}:0x${
Dwriter.js1499 lo(value[i]), hi(value[i]), function(bitsLow, bitsHigh) { argument
1500 encoder.writeSplitVarint64(bitsLow >>> 0, bitsHigh >>> 0);
/external/pigweed/pw_tokenizer/ts/
Dprintf_decoder.ts48 var bitsLow = value.low, bitsHigh = value.high;
50 bitsLow = ((bitsLow >>> 1) | (bitsHigh << 31)) ^ signFlipMask;
51 bitsHigh = (bitsHigh >>> 1) ^ signFlipMask;
52 return new Long(bitsLow, bitsHigh, unsigned);
/external/cronet/third_party/protobuf/js/compatibility_tests/v3.1.0/binary/
Dutils_test.js64 function toHashString(bitsLow, bitsHigh) { argument
69 (bitsHigh >>> 0) & 0xFF,
70 (bitsHigh >>> 8) & 0xFF,
71 (bitsHigh >>> 16) & 0xFF,
72 (bitsHigh >>> 24) & 0xFF);
/external/cronet/third_party/protobuf/js/compatibility_tests/v3.0.0/binary/
Dutils_test.js64 function toHashString(bitsLow, bitsHigh) { argument
69 (bitsHigh >>> 0) & 0xFF,
70 (bitsHigh >>> 8) & 0xFF,
71 (bitsHigh >>> 16) & 0xFF,
72 (bitsHigh >>> 24) & 0xFF);
/external/cronet/third_party/protobuf/
DCHANGES.txt671 …nsignedDecimalString to work with negative bitsLow and low but non-zero bitsHigh parameter. (#8170)
/external/protobuf/
DCHANGES.txt856 …nsignedDecimalString to work with negative bitsLow and low but non-zero bitsHigh parameter. (#8170)