Home
last modified time | relevance | path

Searched refs:deUintptr (Results 1 – 25 of 36) sorted by relevance

12

/external/deqp/framework/delibs/decpp/
DdePoolArray.hpp64 void reserve (deUintptr capacity);
65 void resize (deUintptr size);
66 void resize (deUintptr size, const T& value);
68 deUintptr size (void) const { return m_numElements; } in size()
98 deUintptr m_numElements; //!< Number of elements in the array.
99 deUintptr m_capacity; //!< Number of allocated elements in the array.
101 deUintptr m_pageTableCapacity; //!< Size of the page table.
109 PoolArrayIteratorBase (deUintptr ndx) : m_ndx(ndx) {} in PoolArrayIteratorBase()
134 const T& operator[] (deUintptr offs) const throw() { return (*m_array)[this->m_ndx+offs]; } in operator []()
170 T& operator[] (deUintptr offs) const throw() { return (*m_array)[this->m_ndx+offs]; } in operator []()
[all …]
DdeMemPool.hpp48deUintptr getNumAllocatedBytes (bool recurse) const { return deMemPool_getNumAllocatedBytes(m_poo… in getNumAllocatedBytes()
49deUintptr getCapacity (bool recurse) const { return deMemPool_getCapacity(m_pool, recurse ? DE… in getCapacity()
51 void* alloc (deUintptr numBytes);
52 void* alignedAlloc (deUintptr numBytes, deUint32 alignBytes);
86 inline void* MemPool::alloc (deUintptr numBytes) in alloc()
89 DE_ASSERT((deUintptr)(int)numBytes == numBytes); in alloc()
96 inline void* MemPool::alignedAlloc (deUintptr numBytes, deUint32 alignBytes) in alignedAlloc()
99 DE_ASSERT((deUintptr)(int)numBytes == numBytes); in alignedAlloc()
DdePoolString.cpp40 deUintptr oldEnd = size(); in append()
49 deUintptr oldEnd = size(); in append()
57 deUintptr oldEnd = size(); in append()
DdeMemPool.cpp34 deUintptr size = (deUintptr)strlen(string) + 1; in copyToPool()
DdeCommandLine.cpp265 ….namedValues; curValue != opt.namedValuesEnd; curValue = (const void*)((deUintptr)curValue + opt.n… in help()
299 …ue = namedValues; curValue != namedValuesEnd; curValue = (const void*)((deUintptr)curValue + strid… in findNamedValueMatch()
/external/deqp/framework/delibs/debase/
DdeMemory.c87 deUintptr origPtr = (deUintptr)deMalloc(numBytes + ptrSize + alignBytes); in deAlignedMalloc()
90 deUintptr alignedPtr = (deUintptr)deAlignPtr((void*)(origPtr + ptrSize), alignBytes); in deAlignedMalloc()
91 deUintptr ptrPtr = (alignedPtr - ptrSize); in deAlignedMalloc()
93 *(deUintptr*)ptrPtr = origPtr; in deAlignedMalloc()
125 deUintptr ptrPtr = (deUintptr)ptr - ptrSize; in deAlignedFree()
126 deUintptr origPtr = *(deUintptr*)ptrPtr; in deAlignedFree()
DdeInt32.h226 DE_INLINE deBool deIsAlignedPtr (const void* ptr, deUintptr align) in deIsAlignedPtr()
229 return (((deUintptr)ptr & (align-1)) == 0); in deIsAlignedPtr()
250 DE_INLINE void* deAlignPtr (void* ptr, deUintptr align) in deAlignPtr()
252 deUintptr val = (deUintptr)ptr; in deAlignPtr()
453 deUintptr val = (deUintptr)ptr; in dePointerHash()
DdeDefs.h174 typedef UINT_PTR deUintptr; typedef
178 typedef uintptr_t deUintptr; typedef
190 typedef uintptr_t deUintptr; typedef
322 #define DE_OFFSET_OF(STRUCT, MEMBER) ((int)(deUintptr)(deUint8*)&(((STRUCT*)0)->MEMBER))
DdeDefs.c36 DE_STATIC_ASSERT(sizeof(deUintptr) == sizeof(void*));
/external/deqp/framework/opengl/
DgluCallLogWrapper.inl87 …et) << ", " << first << ", " << count << ", " << toHex(reinterpret_cast<deUintptr>(static_cast<con…
94deUintptr>(static_cast<const void*>(buffers))) << ", " << toHex(reinterpret_cast<deUintptr>(static…
129 …eTextures(" << first << ", " << count << ", " << toHex(reinterpret_cast<deUintptr>(static_cast<con…
157 …dSamplers(" << first << ", " << count << ", " << toHex(reinterpret_cast<deUintptr>(static_cast<con…
178 …dTextures(" << first << ", " << count << ", " << toHex(reinterpret_cast<deUintptr>(static_cast<con…
206deUintptr>(static_cast<const void*>(buffers))) << ", " << toHex(reinterpret_cast<deUintptr>(static…
373 …fferStr(buffer) << ", " << drawbuffer << ", " << toHex(reinterpret_cast<deUintptr>(static_cast<con…
380 …fferStr(buffer) << ", " << drawbuffer << ", " << toHex(reinterpret_cast<deUintptr>(static_cast<con…
387 …fferStr(buffer) << ", " << drawbuffer << ", " << toHex(reinterpret_cast<deUintptr>(static_cast<con…
436 …< toHex(buffer) << ", " << drawbuffer << ", " << toHex(reinterpret_cast<deUintptr>(static_cast<con…
[all …]
DgluDrawUtil.cpp290 (const void*)(deUintptr)offset)); in appendAttributeNonStrided()
317 …deMemcpy((deUint8*)dstBasePtr + (deUintptr)dstVA.pointer + ndx*dstStride, (const deUint8*)srcPtr.d… in copyToLayout()
320 …deMemcpy((deUint8*)dstBasePtr + (deUintptr)dstVA.pointer, srcPtr.data, elementSize*dstVA.numElemen… in copyToLayout()
/external/deqp/framework/delibs/deutil/
DdeFile.c52 deFile* deFile_createFromHandle (deUintptr handle) in deFile_createFromHandle()
104 return deFile_createFromHandle((deUintptr)fd); in deFile_create()
227 deFile* deFile_createFromHandle (deUintptr handle) in deFile_createFromHandle()
290 return deFile_createFromHandle((deUintptr)handle); in deFile_create()
DdeFile.h73 deFile* deFile_createFromHandle (deUintptr handle);
DdeProcess.c723 process->standardIn = deFile_createFromHandle((deUintptr)stdInWrite); in deProcess_start()
724 process->standardOut = deFile_createFromHandle((deUintptr)stdOutRead); in deProcess_start()
725 process->standardErr = deFile_createFromHandle((deUintptr)stdErrRead); in deProcess_start()
/external/deqp/modules/gles31/functional/
Des31fIndirectComputeDispatchTests.cpp131 deUintptr m_bufferSize;
395 …st char* name, const char* description, GenBuffer genBuffer, deUintptr bufferSize, deUintptr offse… in SingleDispatchCase()
467 deUintptr bufferSize; in init()
468 deUintptr offset; in init()
/external/deqp/framework/delibs/depool/
DdeMemPool.c464 int alignPadding = (int)((deUintptr)alignedPtr - (deUintptr)curPagePtr); in deMemPool_allocInternal()
483 alignPadding = (int)((deUintptr)alignedPtr - (deUintptr)curPagePtr); in deMemPool_allocInternal()
/external/deqp/framework/delibs/dethread/
DdeSemaphore.h31 typedef deUintptr deSemaphore;
DdeMutex.h30 typedef deUintptr deMutex;
DdeThreadLocal.h39 typedef deUintptr deThreadLocal;
DdeThread.h31 typedef deUintptr deThread;
DdeThreadTest.c146 deThreadLocal_set(tls, (void*)(deUintptr)0xff); in deThread_selfTest()
152 DE_TEST_ASSERT((deUintptr)deThreadLocal_get(tls) == 0xff); in deThread_selfTest()
/external/deqp/framework/qphelper/
DqpCrashHandler.c141 deUintptr crashAddress;
211 g_crashHandler->crashAddress = (deUintptr)info->ExceptionRecord->ExceptionAddress; in unhandledExceptionFilter()
/external/deqp/modules/gles2/performance/
Des2pStateChangeCallTests.cpp907 (void*)(deUintptr)(0x0FF), in init()
908 (void*)(deUintptr)(0x0EF) in init()
/external/deqp/modules/glshared/
DglsFragOpInteractionCase.cpp94 …ar->getName(), numComps, numVertices, 0 /* computed later */, (const float*)(deUintptr)curOffset)); in computeVertexLayout()
139 (const void*)((deUintptr)entry.pointer.data+(deUintptr)data.getBasePtr()))); in getEntryWithPointer()
/external/deqp/framework/opengl/simplereference/
DsglrReferenceContext.hpp811 … { return m_pixelPackBufferBinding ? (void*)((deUintptr)m_pixelPackBufferBinding->getData()+(deU… in getPixelPackPtr()
812 …rn m_pixelUnpackBufferBinding ? (const void*)((deUintptr)m_pixelUnpackBufferBinding->getData()+(de… in getPixelUnpackPtr()

12