/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()
|
/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/external/vulkancts/framework/vulkan/ |
D | vkNullDriver.cpp | 125 return Handle((deUint64)(deUintptr)obj); in allocateNonDispHandle() 131 freeHandle<Object>(reinterpret_cast<Object*>((deUintptr)handle.getInternal()), pAllocator); in freeNonDispHandle() 349 …st impl = new DescriptorSet(m_device, VkDescriptorPool(reinterpret_cast<deUintptr>(this)), setLayo… in allocate() 361 return VkDescriptorSet(reinterpret_cast<deUintptr>(impl)); in allocate() 366 DescriptorSet* const impl = reinterpret_cast<DescriptorSet*>((deUintptr)set.getInternal()); in free() 462 *pDevices = reinterpret_cast<VkPhysicalDevice>((void*)(deUintptr)1u); in enumeratePhysicalDevices() 594 …DescriptorPool* const poolImpl = reinterpret_cast<DescriptorPool*>((deUintptr)pAllocateInfo->descr… in allocateDescriptorSets() 605 delete reinterpret_cast<DescriptorSet*>((deUintptr)pDescriptorSets[freeNdx].getInternal()); in allocateDescriptorSets() 612 delete reinterpret_cast<DescriptorSet*>((deUintptr)pDescriptorSets[freeNdx].getInternal()); in allocateDescriptorSets() 623 …DescriptorPool* const poolImpl = reinterpret_cast<DescriptorPool*>((deUintptr)descriptorPool.getIn… in freeDescriptorSets() [all …]
|
D | vkStructTypes.inl | 187 deUintptr minMemoryMapAlignment; 556 deUintptr codeSize; 565 deUintptr initialDataSize; 573 deUintptr size; 580 deUintptr dataSize;
|
D | vkPrograms.cpp | 202 (deUintptr)binary.getSize(), in createShaderModule()
|
/external/deqp/framework/delibs/debase/ |
D | deInt32.h | 256 DE_INLINE deBool deIsAlignedPtr (const void* ptr, deUintptr align) in deIsAlignedPtr() 259 return (((deUintptr)ptr & (align-1)) == 0); in deIsAlignedPtr() 280 DE_INLINE void* deAlignPtr (void* ptr, deUintptr align) in deAlignPtr() 282 deUintptr val = (deUintptr)ptr; in deAlignPtr() 541 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 330 #define DE_OFFSET_OF(STRUCT, MEMBER) ((int)(deUintptr)(deUint8*)&(((STRUCT*)0)->MEMBER))
|
D | deMemory.c | 129 const deUintptr hdrAddr = (deUintptr)ptr - hdrSize; in getAlignedAllocHeader() 168 …void* const alignedPtr = deAlignPtr((void*)((deUintptr)basePtr + sizeof(AlignedAllocHeader)), … in deAlignedMalloc()
|
D | deDefs.c | 36 DE_STATIC_ASSERT(sizeof(deUintptr) == sizeof(void*));
|
/external/deqp/external/glslang/ |
D | osinclude.cpp | 84 return (void*)(deUintptr)deThread_create(EnterGenericThread, (void*)entry, DE_NULL); in OS_CreateThread() 91 const deThread thread = (deThread)(deUintptr)((void**)threads)[ndx]; in OS_WaitForAllThreads()
|
/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/deutil/ |
D | deFile.c | 52 deFile* deFile_createFromHandle (deUintptr handle) in deFile_createFromHandle() 104 return deFile_createFromHandle((deUintptr)fd); in deFile_create() 228 deFile* deFile_createFromHandle (deUintptr handle) in deFile_createFromHandle() 291 return deFile_createFromHandle((deUintptr)handle); in deFile_create()
|
D | deProcess.c | 354 process->standardIn = deFile_createFromHandle((deUintptr)pipeIn[1]); in deProcess_start() 355 process->standardOut = deFile_createFromHandle((deUintptr)pipeOut[0]); in deProcess_start() 356 process->standardErr = deFile_createFromHandle((deUintptr)pipeErr[0]); in deProcess_start() 726 process->standardIn = deFile_createFromHandle((deUintptr)stdInWrite); in deProcess_start() 727 process->standardOut = deFile_createFromHandle((deUintptr)stdOutRead); in deProcess_start() 728 process->standardErr = deFile_createFromHandle((deUintptr)stdErrRead); in deProcess_start()
|
D | deFile.h | 73 deFile* deFile_createFromHandle (deUintptr handle);
|
/external/deqp/external/vulkancts/modules/vulkan/compute/ |
D | vktComputeIndirectComputeDispatchTests.cpp | 102 const deUintptr bufferSize, in DispatchCaseDesc() 113 const deUintptr m_bufferSize; 123 const deUintptr bufferSize, 148 const deUintptr m_bufferSize; 161 const deUintptr bufferSize, in IndirectDispatchInstanceBufferUpload() 378 const deUintptr m_bufferSize; 440 const deUintptr bufferSize, in IndirectDispatchInstanceBufferGenerate()
|
/external/deqp/framework/delibs/depool/ |
D | deMemPool.c | 464 size_t alignPadding = (size_t)((deUintptr)alignedPtr - (deUintptr)curPagePtr); in deMemPool_allocInternal() 483 alignPadding = (size_t)((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;
|
/external/deqp/framework/qphelper/ |
D | qpCrashHandler.c | 149 deUintptr crashAddress; 219 g_crashHandler->crashAddress = (deUintptr)info->ExceptionRecord->ExceptionAddress; in unhandledExceptionFilter()
|