Lines Matching refs:m_data_buffer

41 Value::Value() : m_value(), m_compiler_type(), m_data_buffer() {}  in Value()
44 : m_value(scalar), m_compiler_type(), m_data_buffer() {} in Value()
48 m_data_buffer() { in Value()
55 m_context_type(v.m_context_type), m_data_buffer() { in Value()
59 (rhs_value == (uintptr_t)v.m_data_buffer.GetBytes())) { in Value()
60 m_data_buffer.CopyData(v.m_data_buffer.GetBytes(), in Value()
61 v.m_data_buffer.GetByteSize()); in Value()
63 m_value = (uintptr_t)m_data_buffer.GetBytes(); in Value()
77 (rhs_value == (uintptr_t)rhs.m_data_buffer.GetBytes())) { in operator =()
78 m_data_buffer.CopyData(rhs.m_data_buffer.GetBytes(), in operator =()
79 rhs.m_data_buffer.GetByteSize()); in operator =()
81 m_value = (uintptr_t)m_data_buffer.GetBytes(); in operator =()
89 m_data_buffer.CopyData(bytes, len); in SetBytes()
90 m_value = (uintptr_t)m_data_buffer.GetBytes(); in SetBytes()
95 m_data_buffer.AppendData(bytes, len); in AppendBytes()
96 m_value = (uintptr_t)m_data_buffer.GetBytes(); in AppendBytes()
139 size_t curr_size = m_data_buffer.GetByteSize(); in AppendDataToHostBuffer()
149 rhs.m_value.GetAsMemoryData(m_data_buffer.GetBytes() + curr_size, in AppendDataToHostBuffer()
164 ::memcpy(m_data_buffer.GetBytes() + curr_size, src, src_len); in AppendDataToHostBuffer()
175 m_data_buffer.SetByteSize(len); in ResizeData()
176 m_value = (uintptr_t)m_data_buffer.GetBytes(); in ResizeData()
177 return m_data_buffer.GetByteSize(); in ResizeData()
287 if (m_data_buffer.GetByteSize()) { in GetData()
288 data.SetData(m_data_buffer.GetBytes(), m_data_buffer.GetByteSize(), in GetData()
584 if ((uintptr_t)addr != (uintptr_t)m_data_buffer.GetBytes()) { in ResolveValue()
590 if ((uintptr_t)addr != (uintptr_t)m_data_buffer.GetBytes()) { in ResolveValue()
613 m_data_buffer.Clear(); in Clear()