Searched refs:highBits (Results 1 - 6 of 6) sorted by relevance

/external/protobuf/js/binary/
H A Dencoder.js81 * @param {number} highBits The high 32 bits of the int.
83 jspb.BinaryEncoder.prototype.writeSplitVarint64 = function(lowBits, highBits) {
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 >>>
[all...]
H A Dutils.js77 var highBits = Math.floor((value - lowBits) /
81 jspb.utils.split64High = highBits;
97 var highBits = Math.floor((value - lowBits) /
99 highBits = highBits >>> 0;
103 highBits = ~highBits >>> 0;
108 highBits++;
109 if (highBits > 0xFFFFFFFF) highBits
[all...]
H A Ddecoder.js461 var highBits = 0;
478 highBits |= (temp & 0x7F) >> 4;
481 this.tempHigh_ = highBits >>> 0;
488 highBits |= (temp & 0x7F) << (i * 7 + 3);
491 this.tempHigh_ = highBits >>> 0;
/external/deqp/framework/delibs/deutil/
H A DdeFile.c317 LONG highBits = (LONG)((offset >> 32) & 0xFFFFFFFFll); local
329 return SetFilePointer(file->handle, lowBits, &highBits, method) != INVALID_SET_FILE_POINTER;
334 LONG highBits = 0; local
335 LONG lowBits = SetFilePointer(file->handle, 0, &highBits, FILE_CURRENT);
337 return (deInt64)(((deUint64)highBits << 32) | (deUint64)lowBits);
342 DWORD highBits = 0; local
343 DWORD lowBits = GetFileSize(file->handle, &highBits);
345 return (deInt64)(((deUint64)highBits << 32) | (deUint64)lowBits);
/external/icu/icu4c/source/common/
H A Dputil.cpp344 uint32_t highBits = *(uint32_t*)u_topNBytesOfDouble(&number,
349 return ((highBits & 0x7F080000L) == 0x7F080000L) &&
369 uint32_t highBits = *(uint32_t*)u_topNBytesOfDouble(&number,
374 return ((highBits & ~SIGN) == 0x70FF0000L) && (lowBits == 0x00000000L);
401 uint32_t highBits = *(uint32_t*)u_topNBytesOfDouble(&number,
403 return((highBits & SIGN) && uprv_isInfinite(number));
/external/deqp/modules/gles31/functional/
H A Des31fMultisampleTests.cpp950 const GLbitfield highBits = rnd.getUint32(); local
952 gl.sampleMaski(wordNdx, (mask & maskMask) | (highBits & ~maskMask));
962 const GLbitfield highBits = rnd.getUint32(); local
964 gl.sampleMaski(wordNdx, (mask & maskMask) | (highBits & ~maskMask));

Completed in 183 milliseconds