/external/deqp/framework/delibs/decpp/ |
D | dePoolArray.hpp | 64 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 …]
|
D | deMemPool.hpp | 48 …deUintptr getNumAllocatedBytes (bool recurse) const { return deMemPool_getNumAllocatedBytes(m_poo… in getNumAllocatedBytes() 49 …deUintptr 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()
|
D | dePoolString.cpp | 40 deUintptr oldEnd = size(); in append() 49 deUintptr oldEnd = size(); in append() 57 deUintptr oldEnd = size(); in append()
|
D | deMemPool.cpp | 34 deUintptr size = (deUintptr)strlen(string) + 1; in copyToPool()
|
D | deCommandLine.cpp | 265 ….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/ |
D | deMemory.c | 87 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()
|
D | deInt32.h | 226 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()
|
D | deDefs.h | 174 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))
|
D | deDefs.c | 36 DE_STATIC_ASSERT(sizeof(deUintptr) == sizeof(void*));
|
/external/deqp/framework/opengl/ |
D | gluCallLogWrapper.inl | 87 …et) << ", " << first << ", " << count << ", " << toHex(reinterpret_cast<deUintptr>(static_cast<con… 94 …deUintptr>(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… 206 …deUintptr>(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 …]
|
D | gluDrawUtil.cpp | 290 (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/ |
D | deFile.c | 52 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()
|
D | deFile.h | 73 deFile* deFile_createFromHandle (deUintptr handle);
|
D | deProcess.c | 723 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/ |
D | es31fIndirectComputeDispatchTests.cpp | 131 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/ |
D | deMemPool.c | 464 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/ |
D | deSemaphore.h | 31 typedef deUintptr deSemaphore;
|
D | deMutex.h | 30 typedef deUintptr deMutex;
|
D | deThreadLocal.h | 39 typedef deUintptr deThreadLocal;
|
D | deThread.h | 31 typedef deUintptr deThread;
|
D | deThreadTest.c | 146 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/ |
D | qpCrashHandler.c | 141 deUintptr crashAddress; 211 g_crashHandler->crashAddress = (deUintptr)info->ExceptionRecord->ExceptionAddress; in unhandledExceptionFilter()
|
/external/deqp/modules/gles2/performance/ |
D | es2pStateChangeCallTests.cpp | 907 (void*)(deUintptr)(0x0FF), in init() 908 (void*)(deUintptr)(0x0EF) in init()
|
/external/deqp/modules/glshared/ |
D | glsFragOpInteractionCase.cpp | 94 …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/ |
D | sglrReferenceContext.hpp | 811 … { return m_pixelPackBufferBinding ? (void*)((deUintptr)m_pixelPackBufferBinding->getData()+(deU… in getPixelPackPtr() 812 …rn m_pixelUnpackBufferBinding ? (const void*)((deUintptr)m_pixelUnpackBufferBinding->getData()+(de… in getPixelUnpackPtr()
|