HomeSort by relevance Sort by last modified time
    Searched refs:refPtr (Results 1 - 7 of 7) 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/gles2/functional/
es2fBufferTestUtil.cpp 75 bool compareByteArrays (tcu::TestLog& log, const deUint8* resPtr, const deUint8* refPtr, int numBytes)
88 if (resPtr[ndx] != refPtr[ndx])
103 << " expected " << tcu::formatArray(tcu::Format::HexIterator<deUint8>(refPtr+diffSpanStart), tcu::Format::HexIterator<deUint8>(refPtr+diffSpanStart+printLen)) << "\n"
123 << " expected " << tcu::formatArray(tcu::Format::HexIterator<deUint8>(refPtr+diffSpanStart), tcu::Format::HexIterator<deUint8>(refPtr+diffSpanStart+printLen)) << "\n"
407 bool VertexArrayVerifier::verify (deUint32 buffer, const deUint8* refPtr, int offset, int numBytes)
464 renderQuadGridReference(reference, numQuads, numCols, refPtr + offset + curOffset);
568 bool IndexArrayVerifier::verify (deUint32 buffer, const deUint8* refPtr, int offset, int numBytes)
624 execVertexFetch(&fetchedPos[0], &positions[0], refPtr+offset+curOffset, numBytesToVerify)
    [all...]
es2fBufferTestUtil.hpp 51 bool compareByteArrays (tcu::TestLog& log, const deUint8* resPtr, const deUint8* refPtr, int numBytes);
  /external/deqp/modules/glshared/
glsBufferTestUtil.cpp 72 bool compareByteArrays (tcu::TestLog& log, const deUint8* resPtr, const deUint8* refPtr, int numBytes)
85 if (resPtr[ndx] != refPtr[ndx])
100 << " expected " << tcu::formatArray(tcu::Format::HexIterator<deUint8>(refPtr+diffSpanStart), tcu::Format::HexIterator<deUint8>(refPtr+diffSpanStart+printLen)) << "\n"
120 << " expected " << tcu::formatArray(tcu::Format::HexIterator<deUint8>(refPtr+diffSpanStart), tcu::Format::HexIterator<deUint8>(refPtr+diffSpanStart+printLen)) << "\n"
567 bool VertexArrayVerifier::verify (deUint32 buffer, const deUint8* refPtr, int offset, int numBytes)
633 renderQuadGridReference(reference, numQuads, numCols, refPtr + offset + curOffset);
756 bool IndexArrayVerifier::verify (deUint32 buffer, const deUint8* refPtr, int offset, int numBytes)
820 execVertexFetch(&fetchedPos[0], &positions[0], refPtr+offset+curOffset, numBytesToVerify)
    [all...]
glsBufferTestUtil.hpp 55 bool compareByteArrays (tcu::TestLog& log, const deUint8* resPtr, const deUint8* refPtr, int numBytes);
  /external/chromium_org/third_party/WebKit/Source/platform/
CrossThreadCopier.h 41 #include "wtf/RefPtr.h"
80 typedef typename WTF::RemoveTemplate<T, RefPtr>::Type TypeWithoutRefPtr;
85 COMPILE_ASSERT((WTF::IsSameType<RefPtr<RefCountedType>, T>::value
91 static Type copy(const T& refPtr)
93 return refPtr;
172 WTF::IsSubclassOfTemplate<typename WTF::RemoveTemplate<T, RefPtr>::Type, ThreadSafeRefCounted>::value
  /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 120 milliseconds