Home
last modified time | relevance | path

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

/frameworks/native/libs/ui/include/ui/
DBufferHubDefs.h67 uint32_t highBits = state >> kMaxNumberOfClients; in isAnyClientGained() local
69 return highBits == lowBits && lowBits != 0U; in isAnyClientGained()
79 uint32_t highBits = state >> kMaxNumberOfClients; in isAnyClientPosted() local
81 uint32_t postedOrAcquired = highBits ^ lowBits; in isAnyClientPosted()
82 return postedOrAcquired & highBits; in isAnyClientPosted()
95 uint32_t highBits = state >> kMaxNumberOfClients; in isAnyClientAcquired() local
97 uint32_t postedOrAcquired = highBits ^ lowBits; in isAnyClientAcquired()
105 uint32_t highBits = clientBits & kHighBitsMask; in isClientAcquired() local
106 return highBits == 0U; in isClientAcquired()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/js/binary/
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 = 0;
114 jspb.utils.split64High = highBits;
130 var highBits = jspb.utils.split64High;
136 if (highBits == 0) {
[all …]
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;
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;