HomeSort by relevance Sort by last modified time
    Searched defs:m_storage (Results 1 - 10 of 10) sorted by null

  /external/deqp/framework/randomshaders/
rsgVariable.hpp 58 Storage getStorage (void) const { return m_storage; }
63 void setStorage (Storage storage) { m_storage = storage; }
72 Storage m_storage; member in class:rsg::Variable
rsgVariableValue.hpp 348 VariableValue (const Variable* variable) : m_variable(variable), m_storage(m_variable->getType()) {}
352 ValueAccess getValue (void) { return m_storage.getValue(m_variable->getType()); }
353 ConstValueAccess getValue (void) const { return m_storage.getValue(m_variable->getType()); }
362 ValueStorage<1> m_storage; member in class:rsg::VariableValue
  /external/deqp/modules/gles31/functional/
es31fSynchronizationTests.cpp 147 const StorageType m_storage; member in class:deqp::gles31::Functional::__anon9813::InterInvocationTestCase
166 , m_storage (storage)
180 DE_ASSERT(m_storage < STORAGE_LAST);
195 if (m_useAtomic && m_storage == STORAGE_IMAGE && !m_context.getContextInfo().isExtensionSupported("GL_OES_shader_image_atomic"))
207 if (m_storage == STORAGE_BUFFER)
220 else if (m_storage == STORAGE_IMAGE)
295 m_testCtx.setTestResult(QP_TEST_RESULT_FAIL, (std::string((m_storage == STORAGE_BUFFER) ? ("buffer") : ("image")) + " content verification failed").c_str());
320 if (m_storage == STORAGE_BUFFER && !m_aliasingStorages)
325 else if (m_storage == STORAGE_BUFFER && m_aliasingStorages)
333 else if (m_storage == STORAGE_IMAGE && !m_aliasingStorages
    [all...]
es31fProgramInterfaceQueryTests.cpp 293 , m_storage (storage)
299 const glu::Storage m_storage; member in class:deqp::gles31::Functional::__anon9735::ResourceDefinition::StorageQualifier
596 variable.storage = qualifier->m_storage;
601 interfaceBlock.storage = qualifier->m_storage;
1662 const glu::Storage m_storage; member in class:deqp::gles31::InterfaceBlockBaseCase
4851 const glu::Storage m_storage; member in class:deqp::BufferBackedBlockInterfaceTestGroup
    [all...]
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/LinearMath/
btMatrixX.h 42 btAlignedObjectArray<T> m_storage; member in struct:btVectorX
49 m_storage.resize(numRows);
54 m_storage.resize(rows);
62 return m_storage.size();
116 if (m_storage.size())
118 // for (int i=0;i<m_storage.size();i++)
119 // m_storage[i]=0;
120 //memset(&m_storage[0],0,sizeof(T)*m_storage.size());
121 btSetZero(&m_storage[0],m_storage.size())
163 btAlignedObjectArray<T> m_storage; member in struct:btMatrixX
    [all...]
  /external/opencv/
cvjni.h 54 CvMemStorage *m_storage = 0; variable
  /external/eigen/Eigen/src/Core/
PlainObjectBase.h 126 DenseStorage<Scalar, Base::MaxSizeAtCompileTime, Base::RowsAtCompileTime, Base::ColsAtCompileTime, Options> m_storage; member in class:Eigen::PlainObjectBase
135 EIGEN_STRONG_INLINE Index rows() const { return m_storage.rows(); }
136 EIGEN_STRONG_INLINE Index cols() const { return m_storage.cols(); }
141 return m_storage.data()[colId + rowId * m_storage.cols()];
143 return m_storage.data()[rowId + colId * m_storage.rows()];
148 return m_storage.data()[index];
154 return m_storage.data()[colId + rowId * m_storage.cols()]
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/optional/
optional.hpp 346 new (m_storage.address()) internal_type(val) ;
356 boost_optional_detail::construct<value_type>(factory, m_storage.address());
365 factory.apply(m_storage.address()) ;
392 new (m_storage.address()) internal_type(expr) ;
427 new (m_storage.address()) internal_type(expr.get()) ;
457 union { void const* ap_pvoid; internal_type const* as_ptype; } caster = { m_storage.address() };
462 union { void* ap_pvoid; internal_type* as_ptype; } caster = { m_storage.address() };
466 internal_type const* get_object() const { return static_cast<internal_type const*>(m_storage.address()); }
467 internal_type * get_object() { return static_cast<internal_type *> (m_storage.address()); }
493 storage_type m_storage ; member in class:boost::optional_detail::optional_base
    [all...]
  /external/deqp/modules/glshared/
glsVertexArrayTests.hpp 185 virtual Array::Storage getStorageType (void) const { return m_storage; }
199 Storage m_storage; member in class:deqp::gls::ContextArray
glsDrawTest.cpp 906 DrawTestSpec::Storage getStorageType (void) const { return m_storage; }
913 DrawTestSpec::Storage m_storage; member in class:deqp::gls::__anon9876::AttributeArray
934 : m_storage (storage)
951 if (m_storage == DrawTestSpec::STORAGE_BUFFER)
960 if (m_storage == DrawTestSpec::STORAGE_BUFFER)
965 else if (m_storage == DrawTestSpec::STORAGE_USER)
976 if (m_storage == DrawTestSpec::STORAGE_BUFFER)
984 else if (m_storage == DrawTestSpec::STORAGE_USER)
    [all...]

Completed in 1144 milliseconds