HomeSort by relevance Sort by last modified time
    Searched refs:highBits (Results 1 - 7 of 7) sorted by null

  /cts/tests/tests/location/src/android/location/cts/asn1/base/
PacketBuilder.java 34 byte highBits = bytes[bytes.length - 1];
35 byte lowBits = (byte) ((highBits & 0xFF)
  /external/deqp/framework/delibs/deutil/
deFile.c 317 LONG highBits = (LONG)((offset >> 32) & 0xFFFFFFFFll);
329 return SetFilePointer(file->handle, lowBits, &highBits, method) != INVALID_SET_FILE_POINTER;
334 LONG highBits = 0;
335 LONG lowBits = SetFilePointer(file->handle, 0, &highBits, FILE_CURRENT);
337 return (deInt64)(((deUint64)highBits << 32) | (deUint64)lowBits);
342 DWORD highBits = 0;
343 DWORD lowBits = GetFileSize(file->handle, &highBits);
345 return (deInt64)(((deUint64)highBits << 32) | (deUint64)lowBits);
  /external/protobuf/js/binary/
encoder.js 81 * @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 >>> 7
    [all...]
utils.js 77 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 = 0
    [all...]
decoder.js 461 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/icu/icu4c/source/common/
putil.cpp 361 uint32_t highBits = *(uint32_t*)u_topNBytesOfDouble(&number,
366 return ((highBits & 0x7F080000L) == 0x7F080000L) &&
386 uint32_t highBits = *(uint32_t*)u_topNBytesOfDouble(&number,
391 return ((highBits & ~SIGN) == 0x70FF0000L) && (lowBits == 0x00000000L);
418 uint32_t highBits = *(uint32_t*)u_topNBytesOfDouble(&number,
420 return((highBits & SIGN) && uprv_isInfinite(number));
    [all...]
  /external/deqp/modules/gles31/functional/
es31fMultisampleTests.cpp     [all...]

Completed in 190 milliseconds