Lines Matching refs:valuePtr
142 bool isValueZero (const void* valuePtr, size_t valueSizeInBytes)
144 const deUint8* bytePtr = reinterpret_cast<const deUint8*>(valuePtr);
155 bool isValueWithinBuffer (const void* buffer, VkDeviceSize bufferSize, const void* valuePtr, size_t valueSizeInBytes)
164 if (!deMemCmp(&byteBuffer[i], valuePtr, valueSizeInBytes))
171 bool isValueWithinBufferOrZero (const void* buffer, VkDeviceSize bufferSize, const void* valuePtr, size_t valueSizeInBytes)
173 return isValueWithinBuffer(buffer, bufferSize, valuePtr, valueSizeInBytes) || isValueZero(valuePtr, valueSizeInBytes);
256 void logValue (std::ostringstream& logMsg, const void* valuePtr, VkFormat valueFormat, size_t valueSize)
260 logMsg << *reinterpret_cast<const deUint32*>(valuePtr);
264 logMsg << *reinterpret_cast<const deInt32*>(valuePtr);
268 logMsg << *reinterpret_cast<const float*>(valuePtr);
272 const deUint8* bytePtr = reinterpret_cast<const deUint8*>(valuePtr);