HomeSort by relevance Sort by last modified time
    Searched defs:refPtr (Results 1 - 2 of 2) sorted by null

  /external/icu/icu4c/source/common/
sharedptr.h 60 explicit SharedPtr(T *adopted=NULL) : ptr(adopted), refPtr(NULL) {
62 refPtr = new AtomicInt();
63 if (refPtr == NULL) {
67 refPtr->value = 1;
76 ptr(other.ptr), refPtr(other.refPtr) {
77 if (refPtr != NULL) {
78 umtx_atomic_inc(&refPtr->value);
97 if (refPtr != NULL) {
98 if (umtx_atomic_dec(&refPtr->value) == 0)
    [all...]
  /external/deqp/modules/gles31/functional/
es31fOpaqueTypeIndexingTests.cpp 615 const deUint32* refPtr = &outData[lookupNdx*outLookupStride];
616 const deUint32* resPtr = refPtr + invocationNdx*4;
620 isOk = isOk && (refPtr[ndx] == resPtr[ndx]);
627 << tcu::formatArray(tcu::Format::HexIterator<deUint32>(refPtr), tcu::Format::HexIterator<deUint32>(refPtr+4))
    [all...]

Completed in 113 milliseconds