Home
last modified time | relevance | path

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

/third_party/gptfdisk/
Dsupport.cc236 ostringstream theValue; in BytesToIeee() local
245 theValue << sizeInIeee << " bytes"; in BytesToIeee()
255 theValue << sizeInIeee << "." << (uint32_t) decimalIeee << units; in BytesToIeee()
257 return theValue.str(); in BytesToIeee()
316 void ReverseBytes(void* theValue, int numBytes) { in ReverseBytes() argument
322 memcpy(tempValue, theValue, numBytes); in ReverseBytes()
324 ((char*) theValue)[i] = tempValue[numBytes - i - 1]; in ReverseBytes()
Dsupport.h80 void ReverseBytes(void* theValue, int numBytes); // Reverses byte-order of theValue
/third_party/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()
/third_party/skia/third_party/externals/icu/source/common/
Dunifiedcache.cpp462 const SharedObject* theValue, UErrorCode creationStatus) const { in _inProgress() argument
463 return (theValue == fNoValue && creationStatus == U_ZERO_ERROR); in _inProgress()
469 const SharedObject *theValue = in _isEvictable() local
473 if (_inProgress(theValue, theKey->fCreationStatus)) { in _isEvictable()
479 return (!theKey->fIsPrimary || (theValue->softRefCount == 1 && theValue->noHardReferences())); in _isEvictable()
Dunifiedcache.h545 UBool _inProgress(const SharedObject *theValue, UErrorCode creationStatus) const;
/third_party/flutter/skia/third_party/externals/icu/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;
/third_party/icu/icu4c/source/common/
Dunifiedcache.cpp462 const SharedObject* theValue, UErrorCode creationStatus) const { in _inProgress() argument
463 return (theValue == fNoValue && creationStatus == U_ZERO_ERROR); in _inProgress()
469 const SharedObject *theValue = in _isEvictable() local
473 if (_inProgress(theValue, theKey->fCreationStatus)) { in _isEvictable()
479 return (!theKey->fIsPrimary || (theValue->softRefCount == 1 && theValue->noHardReferences())); in _isEvictable()
Dunifiedcache.h545 UBool _inProgress(const SharedObject *theValue, UErrorCode creationStatus) const;
/third_party/node/deps/icu-small/source/common/
Dunifiedcache.cpp462 const SharedObject* theValue, UErrorCode creationStatus) const { in _inProgress() argument
463 return (theValue == fNoValue && creationStatus == U_ZERO_ERROR); in _inProgress()
469 const SharedObject *theValue = in _isEvictable() local
473 if (_inProgress(theValue, theKey->fCreationStatus)) { in _isEvictable()
479 return (!theKey->fIsPrimary || (theValue->softRefCount == 1 && theValue->noHardReferences())); in _isEvictable()
Dunifiedcache.h545 UBool _inProgress(const SharedObject *theValue, UErrorCode creationStatus) const;
/third_party/node/test/node-api/test_buffer/
Dtest_buffer.c123 napi_value theValue; in Init() local
126 napi_create_string_utf8(env, theText, sizeof(theText), &theValue)); in Init()
127 NAPI_CALL(env, napi_set_named_property(env, exports, "theText", theValue)); in Init()