/external/llvm-project/flang/include/flang/Common/ |
D | uint128.h | 33 constexpr UnsignedInt128(unsigned n) : low_{n} {} in UnsignedInt128() 34 constexpr UnsignedInt128(unsigned long n) : low_{n} {} in UnsignedInt128() 35 constexpr UnsignedInt128(unsigned long long n) : low_{n} {} in UnsignedInt128() 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_; } 55 constexpr explicit operator std::uint64_t() const { return low_; } in uint64_t() [all …]
|
/external/libchrome/base/ |
D | unguessable_token.h | 65 return low_; in GetLowForSerialization() 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_; 94 uint64_t low_ = 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 | 24 low_ = 0L; in Uint128() 65 low_ = input.readFixed64(); in Uint128() 102 private long low_; field in Uint128 107 return low_; in getLow() 125 if (low_ != 0L) { in writeTo() 126 output.writeFixed64(2, low_); in writeTo() 140 if (low_ != 0L) { in getSerializedSize() 142 .computeFixed64Size(2, low_); in getSerializedSize() 316 low_ = 0L; in clear() 341 result.low_ = low_; 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() 1814 range.ixLow_ = pcei.low_; in previousProcessed() 1836 int low_; field in StringSearch.CollationPCE.PCEI 1861 buffer_[bufferIndex_].low_ = ixLow; in put() 1878 int low_; field in StringSearch.CollationPCE.RCEI 1898 buffer_[bufferIndex_].low_ = ixLow; 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() 1830 range.ixLow_ = pcei.low_; in previousProcessed() 1849 int low_; field in StringSearch.CollationPCE.PCEI 1874 buffer_[bufferIndex_].low_ = ixLow; in put() 1891 int low_; field in StringSearch.CollationPCE.RCEI 1911 buffer_[bufferIndex_].low_ = ixLow; in put()
|
/external/ImageMagick/Magick++/lib/Magick++/ |
D | Image.h | 1202 void randomThreshold(const double low_,const double high_); 1203 void randomThresholdChannel(const ChannelType channel_,const double low_,
|
/external/fmtlib/include/fmt/ |
D | format.h | 837 uint64_t low_; 840 low_{low} {} 843 uint64_t low() const FMT_NOEXCEPT { return low_; } 847 unsigned char carry = _addcarry_u64(0, low_, n, &low_); 851 uint64_t sum = low_ + n; 852 high_ += (sum < low_ ? 1 : 0); 853 low_ = sum;
|
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()
|