Home
last modified time | relevance | path

Searched refs:theValue (Results 1 – 9 of 9) sorted by relevance

/external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/
DCondition.java33 public static <T> Condition<T> matched(final T theValue, final Description mismatch) { in matched() argument
34 return new Matched<T>(theValue, mismatch); in matched()
38 private final T theValue; field in Condition.Matched
41 private Matched(T theValue, Description mismatch) { in Matched() argument
42 this.theValue = theValue; in Matched()
48 if (matcher.matches(theValue)) { in matching()
52 matcher.describeMismatch(theValue, mismatch); in matching()
58 return next.apply(theValue, mismatch); in and()
/external/gptfdisk/
Dsupport.cc232 ostringstream theValue; in BytesToIeee() local
241 theValue << sizeInIeee << " bytes"; in BytesToIeee()
251 theValue << sizeInIeee << "." << (uint32_t) decimalIeee << units; in BytesToIeee()
253 return theValue.str(); in BytesToIeee()
312 void ReverseBytes(void* theValue, int numBytes) { in ReverseBytes() argument
318 memcpy(tempValue, theValue, numBytes); in ReverseBytes()
320 ((char*) theValue)[i] = tempValue[numBytes - i - 1]; in ReverseBytes()
Dsupport.h83 void ReverseBytes(void* theValue, int numBytes); // Reverses byte-order of theValue
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/charsetdet/sbcs/
DNGramList.java34 public NGram(String theValue, int theRefCount) in NGram() argument
36 value = theValue; in NGram()
40 public NGram(String theValue) in NGram() argument
42 this(theValue, 1); in NGram()
/external/icu/icu4c/source/common/
Dunifiedcache.cpp459 const SharedObject* theValue, UErrorCode creationStatus) const { in _inProgress() argument
460 return (theValue == fNoValue && creationStatus == U_ZERO_ERROR); in _inProgress()
466 const SharedObject *theValue = in _isEvictable() local
470 if (_inProgress(theValue, theKey->fCreationStatus)) { in _isEvictable()
476 return (!theKey->fIsMaster || (theValue->softRefCount == 1 && theValue->noHardReferences())); in _isEvictable()
Dunifiedcache.h545 UBool _inProgress(const SharedObject *theValue, UErrorCode creationStatus) const;
/external/webrtc/webrtc/modules/audio_device/mac/
Daudio_device_mac.h187 static void AtomicSet32(int32_t* theValue, int32_t newValue);
188 static int32_t AtomicGet32(int32_t* theValue);
Daudio_device_mac.cc57 void AudioDeviceMac::AtomicSet32(int32_t* theValue, int32_t newValue) { in AtomicSet32() argument
59 int32_t oldValue = *theValue; in AtomicSet32()
60 if (OSAtomicCompareAndSwap32Barrier(oldValue, newValue, theValue) == true) { in AtomicSet32()
66 int32_t AudioDeviceMac::AtomicGet32(int32_t* theValue) { in AtomicGet32() argument
68 int32_t value = *theValue; in AtomicGet32()
69 if (OSAtomicCompareAndSwap32Barrier(value, value, theValue) == true) { in AtomicGet32()
/external/swiftshader/third_party/LLVM/lib/Target/CellSPU/
DSPUISelLowering.cpp861 SDValue theValue = SN->getValue(); in LowerSTORE() local
864 && (theValue.getOpcode() == ISD::AssertZext in LowerSTORE()
865 || theValue.getOpcode() == ISD::AssertSext)) { in LowerSTORE()
868 theValue = theValue.getOperand(0); in LowerSTORE()
886 theValue); in LowerSTORE()