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

1 2

  /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 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; }
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) {}
134 const T& operator[] (deUintptr offs) const throw() { return (*m_array)[this->m_ndx+offs]; }
170 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();
deCommandLine.cpp 259 for (const void* curValue = opt.namedValues; curValue != opt.namedValuesEnd; curValue = (const void*)((deUintptr)curValue + opt.namedValueStride))
293 for (const void* curValue = namedValues; curValue != namedValuesEnd; curValue = (const void*)((deUintptr)curValue + stride))
  /external/deqp/framework/delibs/debase/
deMemory.c 87 deUintptr origPtr = (deUintptr)deMalloc(numBytes + ptrSize + alignBytes);
90 deUintptr alignedPtr = (deUintptr)deAlignPtr((void*)(origPtr + ptrSize), alignBytes);
91 deUintptr ptrPtr = (alignedPtr - ptrSize);
93 *(deUintptr*)ptrPtr = origPtr;
125 deUintptr ptrPtr = (deUintptr)ptr - ptrSize;
126 deUintptr origPtr = *(deUintptr*)ptrPtr
    [all...]
deInt32.h 226 DE_INLINE deBool deIsAlignedPtr (const void* ptr, deUintptr align)
229 return (((deUintptr)ptr & (align-1)) == 0);
250 DE_INLINE void* deAlignPtr (void* ptr, deUintptr align)
252 deUintptr val = (deUintptr)ptr;
434 deUintptr val = (deUintptr)ptr;
deDefs.h 148 typedef UINT_PTR deUintptr;
152 typedef uintptr_t deUintptr;
164 typedef uintptr_t deUintptr;
296 #define DE_OFFSET_OF(STRUCT, MEMBER) ((int)(deUintptr)(deUint8*)&(((STRUCT*)0)->MEMBER))
deDefs.c 36 DE_STATIC_ASSERT(sizeof(deUintptr) == sizeof(void*));
  /external/deqp/framework/delibs/dethread/
deMutex.h 30 typedef deUintptr deMutex;
deSemaphore.h 31 typedef deUintptr deSemaphore;
deThread.h 31 typedef deUintptr deThread;
deThreadLocal.h 39 typedef deUintptr deThreadLocal;
deThreadTest.c 146 deThreadLocal_set(tls, (void*)(deUintptr)0xff);
152 DE_TEST_ASSERT((deUintptr)deThreadLocal_get(tls) == 0xff);
  /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);
227 deFile* deFile_createFromHandle (deUintptr handle)
290 return deFile_createFromHandle((deUintptr)handle);
deProcess.c 723 process->standardIn = deFile_createFromHandle((deUintptr)stdInWrite);
724 process->standardOut = deFile_createFromHandle((deUintptr)stdOutRead);
725 process->standardErr = deFile_createFromHandle((deUintptr)stdErrRead);
  /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/framework/delibs/depool/
deMemPool.c 464 int alignPadding = (int)((deUintptr)alignedPtr - (deUintptr)curPagePtr);
483 alignPadding = (int)((deUintptr)alignedPtr - (deUintptr)curPagePtr);
  /external/deqp/modules/egl/
teglImageTests.cpp 440 EGLImageKHR image = CHECK_EXT_CALL_ERR(eglCreateImageKHR(context.getEglDisplay(), context.getEglContext(), EGL_GL_TEXTURE_2D_KHR, (EGLClientBuffer)(deUintptr)tex, attribs), EGL_SUCCESS);
489 EGLImageKHR image = CHECK_EXT_CALL_ERR(eglCreateImageKHR(context.getEglDisplay(), context.getEglContext(), m_target, (EGLClientBuffer)(deUintptr)tex, attribs), EGL_SUCCESS);
517 EGLImageKHR image = CHECK_EXT_CALL_ERR(eglCreateImageKHR(context.getEglDisplay(), context.getEglContext(), EGL_GL_RENDERBUFFER_KHR, (EGLClientBuffer)(deUintptr)rbo, DE_NULL), EGL_SUCCESS);
608 EGLImageKHR image = CHECK_EXT_CALL_ERR(eglCreateImageKHR(context.getEglDisplay(), context.getEglContext(), EGL_GL_TEXTURE_2D_KHR, (EGLClientBuffer)(deUintptr)srcTex, attribs), EGL_SUCCESS);
teglImageFormatTests.cpp 502 img = m_eglExt.eglCreateImageKHR(m_display.getEGLDisplay(), m_context->getEGLContext(), EGL_GL_TEXTURE_2D_KHR, (EGLClientBuffer)(deUintptr)srcTex, attrib);
508 case GL_TEXTURE_CUBE_MAP_POSITIVE_X: img = m_eglExt.eglCreateImageKHR(m_display.getEGLDisplay(), m_context->getEGLContext(), EGL_GL_TEXTURE_CUBE_MAP_POSITIVE_X_KHR, (EGLClientBuffer)(deUintptr)srcTex, attrib); break;
509 case GL_TEXTURE_CUBE_MAP_NEGATIVE_X: img = m_eglExt.eglCreateImageKHR(m_display.getEGLDisplay(), m_context->getEGLContext(), EGL_GL_TEXTURE_CUBE_MAP_NEGATIVE_X_KHR, (EGLClientBuffer)(deUintptr)srcTex, attrib); break;
510 case GL_TEXTURE_CUBE_MAP_POSITIVE_Y: img = m_eglExt.eglCreateImageKHR(m_display.getEGLDisplay(), m_context->getEGLContext(), EGL_GL_TEXTURE_CUBE_MAP_POSITIVE_Y_KHR, (EGLClientBuffer)(deUintptr)srcTex, attrib); break;
511 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Y: img = m_eglExt.eglCreateImageKHR(m_display.getEGLDisplay(), m_context->getEGLContext(), EGL_GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_KHR, (EGLClientBuffer)(deUintptr)srcTex, attrib); break;
512 case GL_TEXTURE_CUBE_MAP_POSITIVE_Z: img = m_eglExt.eglCreateImageKHR(m_display.getEGLDisplay(), m_context->getEGLContext(), EGL_GL_TEXTURE_CUBE_MAP_POSITIVE_Z_KHR, (EGLClientBuffer)(deUintptr)srcTex, attrib); break;
513 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Z: img = m_eglExt.eglCreateImageKHR(m_display.getEGLDisplay(), m_context->getEGLContext(), EGL_GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_KHR, (EGLClientBuffer)(deUintptr)srcTex, attrib); break;
678 EGLImageKHR img = m_eglExt.eglCreateImageKHR(m_display.getEGLDisplay(), m_context->getEGLContext(), EGL_GL_RENDERBUFFER_KHR, (EGLClientBuffer)(deUintptr)renderBuffer, attrib);
    [all...]
  /external/deqp/framework/qphelper/
qpCrashHandler.c 141 deUintptr crashAddress;
211 g_crashHandler->crashAddress = (deUintptr)info->ExceptionRecord->ExceptionAddress;
  /external/deqp/framework/opengl/
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/modules/gles2/functional/
es2fBufferTestUtil.cpp 461 glVertexAttribPointer (m_byteVecLoc, 3, GL_UNSIGNED_BYTE, GL_TRUE, 0, (const glw::GLvoid*)(deUintptr)(offset + curOffset));
620 glDrawElements (GL_LINE_STRIP, numBytesToVerify, GL_UNSIGNED_BYTE, (void*)(deUintptr)(offset+curOffset));
  /external/deqp/modules/gles2/performance/
es2pStateChangeCallTests.cpp 907 (void*)(deUintptr)(0x0FF),
908 (void*)(deUintptr)(0x0EF)

Completed in 530 milliseconds

1 2