Lines Matching refs:bufferPtr
783 deUint32 *bufferPtr = reinterpret_cast<deUint32*>(m_vertexNumBufferAlloc->getHostPtr());
784 deMemset(bufferPtr, 0, (size_t)m_vertexNumBufferSize);
786 initVertexIds(bufferPtr, (size_t)(m_vertexNumBufferSize / sizeof(deUint32)));
1017 const deUint64* bufferPtr = reinterpret_cast<const deUint64*>(vertexBuffer);
1018 return bufferPtr[vertexIndex] == *reinterpret_cast<const deUint64 *>(value);
1022 const deUint32* bufferPtr = reinterpret_cast<const deUint32*>(vertexBuffer);
1023 return bufferPtr[vertexIndex] == *reinterpret_cast<const deUint32 *>(value);
1030 const deInt64* bufferPtr = reinterpret_cast<const deInt64*>(vertexBuffer);
1031 return bufferPtr[vertexIndex] == *reinterpret_cast<const deInt64 *>(value);
1035 const deInt32* bufferPtr = reinterpret_cast<const deInt32*>(vertexBuffer);
1036 return bufferPtr[vertexIndex] == *reinterpret_cast<const deInt32 *>(value);
1041 const float* bufferPtr = reinterpret_cast<const float*>(vertexBuffer);
1043 return areEqual(bufferPtr[vertexIndex], *reinterpret_cast<const float *>(value));
1047 const deUint32* bufferPtr = reinterpret_cast<const deUint32*>(vertexBuffer);
1048 const deUint32 packedValue = bufferPtr[vertexIndex / 4];