Home | History | Annotate | Download | only in robustness

Lines Matching defs:bufferPtr

708 		deUint32 *bufferPtr = reinterpret_cast<deUint32*>(m_vertexNumBufferAlloc->getHostPtr());
709 deMemset(bufferPtr, 0, (size_t)m_vertexNumBufferSize);
711 initVertexIds(bufferPtr, (size_t)(m_vertexNumBufferSize / sizeof(deUint32)));
935 const deUint32* bufferPtr = reinterpret_cast<const deUint32*>(vertexBuffer);
937 return bufferPtr[vertexIndex] == *reinterpret_cast<const deUint32 *>(value);
941 const deInt32* bufferPtr = reinterpret_cast<const deInt32*>(vertexBuffer);
943 return bufferPtr[vertexIndex] == *reinterpret_cast<const deInt32 *>(value);
947 const float* bufferPtr = reinterpret_cast<const float*>(vertexBuffer);
949 return areEqual(bufferPtr[vertexIndex], *reinterpret_cast<const float *>(value));
953 const deUint32* bufferPtr = reinterpret_cast<const deUint32*>(vertexBuffer);
954 const deUint32 packedValue = bufferPtr[vertexIndex / 4];