Home
last modified time | relevance | path

Searched refs:low_ (Results 1 – 7 of 7) sorted by relevance

/external/libchrome/base/
Dunguessable_token.h65 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()
Dunguessable_token.cc14 : 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/
DUint128.java24 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/icu4j/main/classes/collate/src/com/ibm/icu/text/
DStringSearch.java1813 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/icu/android_icu4j/src/main/java/android/icu/text/
DStringSearch.java1797 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/ImageMagick/Magick++/lib/Magick++/
DImage.h1202 void randomThreshold(const double low_,const double high_);
1203 void randomThresholdChannel(const ChannelType channel_,const double low_,
/external/ImageMagick/Magick++/lib/
DImage.cpp4004 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()