HomeSort by relevance Sort by last modified time
    Searched refs:deUintptr (Results 1 - 25 of 53) sorted by null

1 2 3

  /external/deqp/framework/delibs/decpp/
deMemPool.cpp 34 deUintptr size = (deUintptr)strlen(string) + 1;
deMemPool.hpp 48 deUintptr getNumAllocatedBytes (bool recurse) const { return deMemPool_getNumAllocatedBytes(m_pool, recurse ? DE_TRUE : DE_FALSE); }
49 deUintptr getCapacity (bool recurse) const { return deMemPool_getCapacity(m_pool, recurse ? DE_TRUE : DE_FALSE); }
51 void* alloc (deUintptr numBytes);
52 void* alignedAlloc (deUintptr numBytes, deUint32 alignBytes);
86 inline void* MemPool::alloc (deUintptr numBytes)
88 // \todo [2013-02-07 pyry] Use deUintptr in deMemPool.
89 DE_ASSERT((deUintptr)(int)numBytes == numBytes);
96 inline void* MemPool::alignedAlloc (deUintptr numBytes, deUint32 alignBytes)
98 // \todo [2013-02-07 pyry] Use deUintptr in deMemPool.
99 DE_ASSERT((deUintptr)(int)numBytes == numBytes)
    [all...]
dePoolArray.hpp 67 void reserve (deUintptr capacity);
68 void resize (deUintptr size);
69 void resize (deUintptr size, const T& value);
71 deUintptr size (void) const { return m_numElements; }
107 deUintptr m_numElements; //!< Number of elements in the array.
108 deUintptr m_capacity; //!< Number of allocated elements in the array.
110 deUintptr m_pageTableCapacity; //!< Size of the page table.
118 PoolArrayIteratorBase (deUintptr ndx) : m_ndx(ndx) {}
143 const T& operator[] (deUintptr offs) const throw() { return (*m_array)[this->m_ndx+offs]; }
179 T& operator[] (deUintptr offs) const throw() { return (*m_array)[this->m_ndx+offs];
    [all...]
dePoolString.cpp 40 deUintptr oldEnd = size();
49 deUintptr oldEnd = size();
57 deUintptr oldEnd = size();
  /external/deqp/framework/delibs/dethread/
deMutex.h 30 typedef deUintptr deMutex;
deSemaphore.h 31 typedef deUintptr deSemaphore;
deThreadLocal.h 39 typedef deUintptr deThreadLocal;
deThread.h 31 typedef deUintptr deThread;
  /external/deqp/external/glslang/
osinclude.cpp 91 return (void*)(deUintptr)deThread_create(EnterGenericThread, (void*)entry, DE_NULL);
98 const deThread thread = (deThread)(deUintptr)((void**)threads)[ndx];
  /external/deqp/framework/opengl/
gluCallLogWrapper.inl 87 m_log << TestLog::Message << "glBindBuffersBase(" << toHex(target) << ", " << first << ", " << count << ", " << toHex(reinterpret_cast<deUintptr>(static_cast<const void*>(buffers))) << ");" << TestLog::EndMessage;
94 m_log << TestLog::Message << "glBindBuffersRange(" << toHex(target) << ", " << first << ", " << count << ", " << toHex(reinterpret_cast<deUintptr>(static_cast<const void*>(buffers))) << ", " << toHex(reinterpret_cast<deUintptr>(static_cast<const void*>(offsets))) << ", " << toHex(reinterpret_cast<deUintptr>(static_cast<const void*>(sizes))) << ");" << TestLog::EndMessage;
129 m_log << TestLog::Message << "glBindImageTextures(" << first << ", " << count << ", " << toHex(reinterpret_cast<deUintptr>(static_cast<const void*>(textures))) << ");" << TestLog::EndMessage;
157 m_log << TestLog::Message << "glBindSamplers(" << first << ", " << count << ", " << toHex(reinterpret_cast<deUintptr>(static_cast<const void*>(samplers))) << ");" << TestLog::EndMessage;
178 m_log << TestLog::Message << "glBindTextures(" << first << ", " << count << ", " << toHex(reinterpret_cast<deUintptr>(static_cast<const void*>(textures))) << ");" << TestLog::EndMessage;
206 m_log << TestLog::Message << "glBindVertexBuffers(" << first << ", " << count << ", " << toHex(reinterpret_cast<deUintptr>(static_cast<const void*>(buffers))) << ", " << toHex(reinterpret_cast<deUintptr>(static_cast<const void*>(offsets))) << ", " << toHex(reinterpret_cast<deUintptr>(static_cast<const void*>(strides))) << ");" << TestLog::EndMessage
    [all...]
gluDrawUtil.cpp 290 (const void*)(deUintptr)offset));
317 deMemcpy((deUint8*)dstBasePtr + (deUintptr)dstVA.pointer + ndx*dstStride, (const deUint8*)srcPtr.data + ndx*srcStride, elementSize);
320 deMemcpy((deUint8*)dstBasePtr + (deUintptr)dstVA.pointer, srcPtr.data, elementSize*dstVA.numElements);
  /external/deqp/framework/delibs/deutil/
deFile.h 73 deFile* deFile_createFromHandle (deUintptr handle);
deFile.c 52 deFile* deFile_createFromHandle (deUintptr handle)
104 return deFile_createFromHandle((deUintptr)fd);
228 deFile* deFile_createFromHandle (deUintptr handle)
291 return deFile_createFromHandle((deUintptr)handle);
deProcess.c 354 process->standardIn = deFile_createFromHandle((deUintptr)pipeIn[1]);
355 process->standardOut = deFile_createFromHandle((deUintptr)pipeOut[0]);
356 process->standardErr = deFile_createFromHandle((deUintptr)pipeErr[0]);
726 process->standardIn = deFile_createFromHandle((deUintptr)stdInWrite);
727 process->standardOut = deFile_createFromHandle((deUintptr)stdOutRead);
728 process->standardErr = deFile_createFromHandle((deUintptr)stdErrRead);
  /external/deqp/framework/delibs/debase/
deDefs.h 174 typedef UINT_PTR deUintptr;
178 typedef uintptr_t deUintptr;
190 typedef uintptr_t deUintptr;
333 #define DE_OFFSET_OF(STRUCT, MEMBER) ((deUint32)(deUintptr)(deUint8*)&(((STRUCT*)0)->MEMBER))
deMemory.c 129 const deUintptr hdrAddr = (deUintptr)ptr - hdrSize;
168 void* const alignedPtr = deAlignPtr((void*)((deUintptr)basePtr + sizeof(AlignedAllocHeader)), alignBytes);
deInt32.h 317 DE_INLINE deBool deIsAlignedPtr (const void* ptr, deUintptr align)
320 return (((deUintptr)ptr & (align-1)) == 0);
353 DE_INLINE void* deAlignPtr (void* ptr, deUintptr align)
355 deUintptr val = (deUintptr)ptr;
608 deUintptr val = (deUintptr)ptr;
deDefs.c 36 DE_STATIC_ASSERT(sizeof(deUintptr) == sizeof(void*));
  /external/deqp/modules/gles31/functional/
es31fIndirectComputeDispatchTests.cpp 131 deUintptr m_bufferSize;
395 SingleDispatchCase (Context& context, const char* name, const char* description, GenBuffer genBuffer, deUintptr bufferSize, deUintptr offset, const UVec3& workGroupSize, const UVec3& numWorkGroups)
467 deUintptr bufferSize;
468 deUintptr offset;
  /external/deqp/external/vulkancts/framework/vulkan/
vkNullDriver.cpp 126 return Handle((deUint64)(deUintptr)obj);
132 freeHandle<Object>(reinterpret_cast<Object*>((deUintptr)handle.getInternal()), pAllocator);
359 CommandBuffer* const impl = new CommandBuffer(m_device, VkCommandPool(reinterpret_cast<deUintptr>(this)), level);
424 DescriptorSet* const impl = new DescriptorSet(m_device, VkDescriptorPool(reinterpret_cast<deUintptr>(this)), setLayout);
436 return VkDescriptorSet(reinterpret_cast<deUintptr>(impl));
441 DescriptorSet* const impl = reinterpret_cast<DescriptorSet*>((deUintptr)set.getInternal());
532 *pDevices = reinterpret_cast<VkPhysicalDevice>((void*)(deUintptr)1u);
    [all...]
vkPrograms.cpp 201 (deUintptr)binary.getSize(),
vkTypeUtil.inl 123 inline VkSpecializationMapEntry makeSpecializationMapEntry (deUint32 constantID, deUint32 offset, deUintptr size)
132 inline VkSpecializationInfo makeSpecializationInfo (deUint32 mapEntryCount, const VkSpecializationMapEntry* pMapEntries, deUintptr dataSize, const void* pData)
395 inline VkDescriptorUpdateTemplateEntryKHR makeDescriptorUpdateTemplateEntryKHR (deUint32 dstBinding, deUint32 dstArrayElement, deUint32 descriptorCount, VkDescriptorType descriptorType, deUintptr offset, deUintptr stride)
  /external/deqp/framework/delibs/depool/
deMemPool.c 464 size_t alignPadding = (size_t)((deUintptr)alignedPtr - (deUintptr)curPagePtr);
483 alignPadding = (size_t)((deUintptr)alignedPtr - (deUintptr)curPagePtr);
  /external/deqp/external/vulkancts/modules/vulkan/compute/
vktComputeIndirectComputeDispatchTests.cpp 102 const deUintptr bufferSize,
113 const deUintptr m_bufferSize;
123 const deUintptr bufferSize,
148 const deUintptr m_bufferSize;
161 const deUintptr bufferSize,
378 const deUintptr m_bufferSize;
440 const deUintptr bufferSize,
  /external/deqp/external/vulkancts/modules/vulkan/pipeline/
vktPipelineCacheTests.cpp 201 codeSize, // deUintptr codeSize;
568 0u, // deUintptr initialDataSize;
    [all...]

Completed in 425 milliseconds

1 2 3