Home
last modified time | relevance | path

Searched refs:highBits (Results 1 – 8 of 8) sorted by relevance

/external/protobuf/js/binary/
Dencoder.js83 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) &&
[all …]
Dutils.js78 var highBits = Math.floor((value - lowBits) /
82 jspb.utils.split64High = highBits;
98 var highBits = Math.floor((value - lowBits) /
100 highBits = highBits >>> 0;
104 highBits = ~highBits >>> 0;
109 highBits++;
110 if (highBits > 0xFFFFFFFF) highBits = 0;
115 jspb.utils.split64High = highBits;
131 var highBits = jspb.utils.split64High;
137 if (highBits == 0) {
[all …]
Ddecoder.js462 var highBits = 0;
479 highBits |= (temp & 0x7F) >> 4;
482 this.tempHigh_ = highBits >>> 0;
489 highBits |= (temp & 0x7F) << (i * 7 + 3);
492 this.tempHigh_ = highBits >>> 0;
/external/deqp/framework/delibs/deutil/
DdeFile.c317 LONG highBits = (LONG)((offset >> 32) & 0xFFFFFFFFll); in deFile_seek() local
329 return SetFilePointer(file->handle, lowBits, &highBits, method) != INVALID_SET_FILE_POINTER; in deFile_seek()
334 LONG highBits = 0; in deFile_getPosition() local
335 LONG lowBits = SetFilePointer(file->handle, 0, &highBits, FILE_CURRENT); in deFile_getPosition()
337 return (deInt64)(((deUint64)highBits << 32) | (deUint64)lowBits); in deFile_getPosition()
342 DWORD highBits = 0; in deFile_getSize() local
343 DWORD lowBits = GetFileSize(file->handle, &highBits); in deFile_getSize()
345 return (deInt64)(((deUint64)highBits << 32) | (deUint64)lowBits); in deFile_getSize()
/external/exoplayer/tree/library/extractor/src/main/java/com/google/android/exoplayer2/extractor/
DVorbisUtil.java404 int highBits = 0; in readResidues() local
407 highBits = bitArray.readBits(5); in readResidues()
409 cascade[j] = highBits * 8 + lowBits; in readResidues()
/external/icu/icu4c/source/common/
Dputil.cpp353 uint32_t highBits = *(uint32_t*)u_topNBytesOfDouble(&number, in uprv_isNaN()
358 return ((highBits & 0x7F080000L) == 0x7F080000L) && in uprv_isNaN()
378 uint32_t highBits = *(uint32_t*)u_topNBytesOfDouble(&number, in uprv_isInfinite()
383 return ((highBits & ~SIGN) == 0x70FF0000L) && (lowBits == 0x00000000L); in uprv_isInfinite()
410 uint32_t highBits = *(uint32_t*)u_topNBytesOfDouble(&number, in uprv_isNegativeInfinity()
412 return((highBits & SIGN) && uprv_isInfinite(number)); in uprv_isNegativeInfinity()
/external/deqp/modules/gles31/functional/
Des31fMultisampleTests.cpp950 const GLbitfield highBits = rnd.getUint32(); in iterate() local
952 gl.sampleMaski(wordNdx, (mask & maskMask) | (highBits & ~maskMask)); in iterate()
962 const GLbitfield highBits = rnd.getUint32(); in iterate() local
964 gl.sampleMaski(wordNdx, (mask & maskMask) | (highBits & ~maskMask)); in iterate()
/external/pffft/
Dsse2neon.h1791 int16x4_t highBits = vget_high_s16(ret); \
1792 ret = vsetq_lane_s16(vget_lane_s16(highBits, (imm) & (0x3)), ret, 4); \
1793 ret = vsetq_lane_s16(vget_lane_s16(highBits, ((imm) >> 2) & 0x3), ret, \
1795 ret = vsetq_lane_s16(vget_lane_s16(highBits, ((imm) >> 4) & 0x3), ret, \
1797 ret = vsetq_lane_s16(vget_lane_s16(highBits, ((imm) >> 6) & 0x3), ret, \