Searched refs:highBits (Results 1 – 4 of 4) sorted by relevance
67 uint32_t highBits = state >> kMaxNumberOfClients; in isAnyClientGained() local69 return highBits == lowBits && lowBits != 0U; in isAnyClientGained()79 uint32_t highBits = state >> kMaxNumberOfClients; in isAnyClientPosted() local81 uint32_t postedOrAcquired = highBits ^ lowBits; in isAnyClientPosted()82 return postedOrAcquired & highBits; in isAnyClientPosted()95 uint32_t highBits = state >> kMaxNumberOfClients; in isAnyClientAcquired() local97 uint32_t postedOrAcquired = highBits ^ lowBits; in isAnyClientAcquired()105 uint32_t highBits = clientBits & kHighBitsMask; in isClientAcquired() local106 return highBits == 0U; in isClientAcquired()
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;114 jspb.utils.split64High = highBits;130 var highBits = jspb.utils.split64High;136 if (highBits == 0) {[all …]
83 jspb.BinaryEncoder.prototype.writeSplitVarint64 = function(lowBits, highBits) { argument85 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;
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;