Home
last modified time | relevance | path

Searched refs:m_allocated (Results 1 – 4 of 4) sorted by relevance

/external/opencv3/modules/imgcodecs/src/
Dbitstrm.cpp65 if( !m_allocated ) in allocate()
70 m_allocated = true; in allocate()
81 m_allocated = false; in RBaseStream()
136 m_allocated = false; in open()
151 if( !m_allocated ) in close()
158 if( m_allocated ) in release()
161 m_allocated = false; in release()
Dbitstrm.hpp79 bool m_allocated; member in cv::RBaseStream
/external/deqp/modules/glshared/
DglsMemoryStressCase.cpp828 m_allocated.reserve(m_iterationCount); in MemoryStressCase()
880 m_allocated.push_back(allocator.getObjectCount()); in iterate()
905 int min = m_allocated[0]; in iterate()
906 int max = m_allocated[0]; in iterate()
910 for (int allocNdx = 0; allocNdx < (int)m_allocated.size(); allocNdx++) in iterate()
912 min = deMin32(m_allocated[allocNdx], min); in iterate()
913 max = deMax32(m_allocated[allocNdx], max); in iterate()
DglsMemoryStressCase.hpp71 std::vector<int> m_allocated; member in deqp::gls::MemoryStressCase