Searched refs:highBits (Results 1 – 7 of 7) sorted by relevance
/external/protobuf/js/binary/ |
D | encoder.js | 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) && [all …]
|
D | utils.js | 78 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 …]
|
D | decoder.js | 462 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/ |
D | deFile.c | 317 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/ |
D | VorbisUtil.java | 404 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/ |
D | putil.cpp | 349 uint32_t highBits = *(uint32_t*)u_topNBytesOfDouble(&number, in uprv_isNaN() 354 return ((highBits & 0x7F080000L) == 0x7F080000L) && in uprv_isNaN() 374 uint32_t highBits = *(uint32_t*)u_topNBytesOfDouble(&number, in uprv_isInfinite() 379 return ((highBits & ~SIGN) == 0x70FF0000L) && (lowBits == 0x00000000L); in uprv_isInfinite() 406 uint32_t highBits = *(uint32_t*)u_topNBytesOfDouble(&number, in uprv_isNegativeInfinity() 408 return((highBits & SIGN) && uprv_isInfinite(number)); in uprv_isNegativeInfinity()
|
/external/deqp/modules/gles31/functional/ |
D | es31fMultisampleTests.cpp | 950 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()
|