Lines Matching defs:memory
69 //! Raw memory storage for values used in test cases.
144 //! Get the integer value of 'size' bytes at 'memory' location.
145 deUint64 memoryAsInteger (const void* memory, const deUint32 size)
149 deMemcpy(&value, memory, size);
153 inline std::string memoryAsHexString (const void* memory, const deUint32 size)
155 const deUint8* memoryBytePtr = static_cast<const deUint8*>(memory);
169 //! Check if expected values exist in the memory.
170 bool verifyValues (tcu::TestLog& log, const void* memory, const std::vector<OffsetValue>& expectedValues)
177 const char* const valuePtr = static_cast<const char*>(memory) + it->offset;
225 // Reserve memory for the worst case in m_data.
667 // No barrier needed, flushed memory is automatically visible