/external/llvm-project/flang/include/flang/Common/ |
D | uint128.h | 37 : low_{static_cast<std::uint64_t>(n)}, high_{-static_cast<std::uint64_t>( in UnsignedInt128() 40 : low_{static_cast<std::uint64_t>(n)}, high_{-static_cast<std::uint64_t>( in UnsignedInt128() 43 : low_{static_cast<std::uint64_t>(n)}, high_{-static_cast<std::uint64_t>( in UnsignedInt128() 51 constexpr UnsignedInt128 operator~() const { return {~high_, ~low_}; } 53 constexpr bool operator!() const { return !low_ && !high_; } 54 constexpr explicit operator bool() const { return low_ || high_; } 59 constexpr std::uint64_t high() const { return high_; } in high() 82 return {high_ & that.high_, low_ & that.low_}; 85 return {high_ | that.high_, low_ | that.low_}; 88 return {high_ ^ that.high_, low_ ^ that.low_}; [all …]
|
/external/libchrome/base/ |
D | unguessable_token.h | 59 return high_; in GetHighForSerialization() 68 bool is_empty() const { return high_ == 0 && low_ == 0; } in is_empty() 76 return std::tie(high_, low_) < std::tie(other.high_, other.low_); 80 return high_ == other.high_ && low_ == other.low_; 93 uint64_t high_ = 0; variable 104 return base::HashInts64(token.high_, token.low_); in operator()
|
D | unguessable_token.cc | 14 : high_(high), low_(low) {} in UnguessableToken() 17 return base::StringPrintf("%016" PRIX64 "%016" PRIX64, high_, low_); in ToString()
|
/external/grpc-grpc-java/services/src/generated/main/java/io/grpc/binarylog/v1alpha/ |
D | Uint128.java | 23 high_ = 0L; in Uint128() 60 high_ = input.readFixed64(); in Uint128() 93 private long high_; field in Uint128 98 return high_; in getHigh() 122 if (high_ != 0L) { in writeTo() 123 output.writeFixed64(1, high_); in writeTo() 136 if (high_ != 0L) { in getSerializedSize() 138 .computeFixed64Size(1, high_); in getSerializedSize() 314 high_ = 0L; in clear() 340 result.high_ = high_; in buildPartial() [all …]
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | StringSearch.java | 1797 pceBuffer_.put(result, rcei.low_, rcei.high_); in previousProcessed() 1815 range.ixHigh_ = pcei.high_; in previousProcessed() 1837 int high_; field in StringSearch.CollationPCE.PCEI 1862 buffer_[bufferIndex_].high_ = ixHigh; in put() 1879 int high_; field in StringSearch.CollationPCE.RCEI 1899 buffer_[bufferIndex_].high_ = ixHigh; in put()
|
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/ |
D | StringSearch.java | 1813 pceBuffer_.put(result, rcei.low_, rcei.high_); in previousProcessed() 1831 range.ixHigh_ = pcei.high_; in previousProcessed() 1850 int high_; field in StringSearch.CollationPCE.PCEI 1875 buffer_[bufferIndex_].high_ = ixHigh; in put() 1892 int high_; field in StringSearch.CollationPCE.RCEI 1912 buffer_[bufferIndex_].high_ = ixHigh; in put()
|
/external/ImageMagick/Magick++/lib/Magick++/ |
D | Image.h | 1202 void randomThreshold(const double low_,const double high_); 1204 const double high_);
|
/external/fmtlib/include/fmt/ |
D | format.h | 836 uint64_t high_; 839 uint128_wrapper(uint64_t high, uint64_t low) FMT_NOEXCEPT : high_{high}, 842 uint64_t high() const FMT_NOEXCEPT { return high_; } 848 _addcarry_u64(carry, high_, 0, &high_); 852 high_ += (sum < low_ ? 1 : 0);
|
D | format-inl.h | 1655 result.low_ = _umul128(x, y, &result.high_);
|
/external/ImageMagick/Magick++/lib/ |
D | Image.cpp | 4004 void Magick::Image::randomThreshold(const double low_,const double high_) in randomThreshold() argument 4007 (void) RandomThresholdImage(image(),low_,high_,exceptionInfo); in randomThreshold() 4012 const double low_,const double high_) in randomThresholdChannel() argument 4017 (void) RandomThresholdImage(image(),low_,high_,exceptionInfo); in randomThresholdChannel()
|