Home | History | Annotate | Download | only in wtf

Lines Matching refs:m_data

38     : m_data(0)
43 : m_data(0)
51 m_data = 0;
55 allocateMemory(numElements * elementByteSize, policy, m_data);
60 : m_data(data)
64 if (!m_data) {
67 // Allow null data if size is 0 bytes, make sure m_data is valid pointer.
69 allocateMemory(0, ZeroInitialize, m_data);
75 freeMemory(m_data, m_sizeInBytes);
81 if (m_data && m_deallocationObserver)
83 m_data = 0;
90 ASSERT(!other.m_data);
91 other.m_data = m_data;
99 other.freeMemory(other.m_data, other.m_sizeInBytes);
100 allocateMemory(m_sizeInBytes, DontInitialize, other.m_data);
101 if (!other.m_data)
103 memcpy(other.m_data, m_data, m_sizeInBytes);