Searched refs:m_contexts (Results 1 - 6 of 6) sorted by relevance

/external/deqp/modules/egl/
H A DteglMemoryStressTests.cpp76 int getAllocationCount (void) const { return (int)(m_pbuffers.size() + m_contexts.size()); }
77 int getContextCount (void) const { return (int)m_contexts.size(); }
102 vector<EGLContext> m_contexts; member in class:deqp::egl::__anon4240::MemoryAllocator
132 for (vector<EGLContext>::const_iterator iter = m_contexts.begin(); iter != m_contexts.end(); ++iter)
135 m_contexts.clear();
151 if (m_contexts.size() == 0 && m_pbuffers.size() == 0 && m_use)
216 if (m_use && m_contexts.size() > 0)
218 EGLContext context = m_rnd.choose<EGLContext>(m_contexts.begin(), m_contexts
[all...]
H A DteglMakeCurrentPerfTests.cpp98 vector<EGLContext> m_contexts; member in class:deqp::egl::MakeCurrentPerfCase
386 m_contexts.push_back(context);
393 if (m_contexts.size() > 0)
397 for (vector<EGLContext>::iterator iter = m_contexts.begin(); iter != m_contexts.end(); ++iter)
404 m_contexts.clear();
415 log << TestLog::Message << "Context count: " << m_contexts.size() << TestLog::EndMessage;
520 EGLContext context = m_contexts[m_rnd.getUint32() % m_contexts.size()];
H A DteglGLES2SharedRenderingPerfTests.cpp729 vector<TestContext*> m_contexts; member in class:deqp::egl::__anon4230::TestThread
750 : m_contexts (contexts)
764 m_contexts.clear();
787 for (int contextNdx = 0; contextNdx < (int)m_contexts.size(); contextNdx++)
788 m_contexts[contextNdx]->render();
820 vector<TestContext*> m_contexts; member in class:deqp::egl::__anon4230::SharedRenderingPerfCase
856 m_contexts.push_back(new TestContext(m_eglTestCtx, m_display, eglConfig, m_config, m_config.sharedContexts, (threadNdx == 0 ? DE_NULL : m_contexts[threadNdx-1])));
863 for (int threadNdx = 0; threadNdx < (int)m_contexts.size(); threadNdx++)
865 delete m_contexts[threadNd
[all...]
H A DteglGLES2SharingThreadedTests.cpp531 void addContext (SharedPtr<GLES2Context> context) { m_contexts.push_back(context); }
539 int getContextCount (void) const { return (int)m_contexts.size(); }
544 std::vector<SharedPtr<GLES2Context> > m_contexts; member in class:deqp::egl::GLES2ThreadTest::EGLResourceManager
558 SharedPtr<GLES2Context> context = m_contexts[index];
559 m_contexts.erase(m_contexts.begin() + index);
/external/v8/src/inspector/
H A Dv8-inspector-impl.cc209 ContextsByGroupMap::const_iterator contextGroupIt = m_contexts.find(groupId);
210 if (contextGroupIt == m_contexts.end()) return nullptr;
221 ContextsByGroupMap::iterator contextIt = m_contexts.find(info.contextGroupId);
222 if (contextIt == m_contexts.end())
223 contextIt = m_contexts
262 m_contexts.erase(contextGroupId);
359 m_contexts[contextGroupId]->erase(contextId);
360 if (m_contexts[contextGroupId]->empty()) m_contexts.erase(contextGroupId);
365 ContextsByGroupMap::iterator iter = m_contexts
[all...]
H A Dv8-inspector-impl.h136 ContextsByGroupMap m_contexts;

Completed in 193 milliseconds