Home
last modified time | relevance | path

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

/external/gptfdisk/
Dsupport.cc230 ostringstream theValue; in BytesToIeee() local
239 theValue << sizeInIeee << " bytes"; in BytesToIeee()
249 theValue << sizeInIeee << "." << (uint32_t) decimalIeee << units; in BytesToIeee()
251 return theValue.str(); in BytesToIeee()
310 void ReverseBytes(void* theValue, int numBytes) { in ReverseBytes() argument
316 memcpy(tempValue, theValue, numBytes); in ReverseBytes()
318 ((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.java32 public NGram(String theValue, int theRefCount) in NGram() argument
34 value = theValue; in NGram()
38 public NGram(String theValue) in NGram() argument
40 this(theValue, 1); in NGram()
/external/icu/icu4c/source/common/
Dunifiedcache.cpp532 const SharedObject *theValue, UErrorCode creationStatus) { in _inProgress() argument
533 return (theValue == gNoValue && creationStatus == U_ZERO_ERROR); in _inProgress()
540 const SharedObject *theValue = in _isEvictable() local
544 if (_inProgress(theValue, theKey->fCreationStatus)) { in _isEvictable()
550 … return (!theKey->fIsMaster || (theValue->getSoftRefCount() == 1 && theValue->noHardReferences())); in _isEvictable()
Dunifiedcache.h394 const SharedObject *theValue, UErrorCode creationStatus);
/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()