HomeSort by relevance Sort by last modified time
    Searched refs:m_storage (Results 1 - 25 of 27) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
Canvas2DContextAttributes.cpp 37 , m_storage(PersistentStorage)
60 return m_storage == PersistentStorage ? "persistent" : "discardable";
66 m_storage = PersistentStorage;
68 m_storage = DiscardableStorage;
73 return m_storage;
Canvas2DContextAttributes.h 60 Canvas2DContextStorage m_storage; member in class:blink::Canvas2DContextAttributes
  /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
rsgVariable.cpp 33 , m_storage (storage)
48 switch (m_storage)
rsgVariableValue.cpp 271 , m_storage(other.m_variable->getType())
273 m_storage.getValue(getType()) = other.getValue().value();
279 m_storage.setStorage(getType());
280 m_storage.getValue(getType()) = other.getValue().value();
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/chromium_org/third_party/WebKit/public/platform/
WebPrivatePtr.h 198 WebPrivatePtr() : m_storage(0) { }
205 BLINK_ASSERT(!m_storage);
208 bool isNull() const { return !m_storage; }
213 : m_storage(0)
237 ASSERT(m_storage);
243 ASSERT(m_storage);
250 PtrStorage<T>& storage() { return PtrStorage<T>::fromSlot(&m_storage); }
251 const PtrStorage<T>& storage() const { return PtrStorage<T>::fromSlot(&m_storage); }
265 void* m_storage; member in class:blink::WebPrivatePtr
  /external/deqp/modules/gles31/functional/
es31fProgramInterfaceDefinitionUtil.hpp 85 VariableSearchFilter (glu::ShaderType shaderType, glu::Storage storage) : m_shaderType(shaderType), m_storage(storage), m_null(false) { }
90 bool matchesFilter (const glu::VariableDeclaration& variable) const { return !m_null && (m_storage == glu::STORAGE_LAST || variable.storage == m_storage); }
91 bool matchesFilter (const glu::InterfaceBlock& block) const { return !m_null && (m_storage == glu::STORAGE_LAST || block.storage == m_storage); }
94 glu::Storage getStorageFilter (void) const { return m_storage; }
97 VariableSearchFilter (glu::ShaderType shaderType, glu::Storage storage, bool empty) : m_shaderType(shaderType), m_storage(storage), m_null(empty) { }
100 const glu::Storage m_storage; member in struct:deqp::gles31::Functional::ProgramInterfaceDefinition::VariableSearchFilter
es31fSynchronizationTests.cpp 147 const StorageType m_storage; member in class:deqp::gles31::Functional::__anon24953::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 251 , m_storage (storage)
257 const glu::Storage m_storage; member in class:deqp::gles31::Functional::__anon24905::ResourceDefinition::StorageQualifier
504 variable.storage = qualifier->m_storage;
509 interfaceBlock.storage = qualifier->m_storage;
    [all...]
es31fProgramInterfaceDefinitionUtil.cpp 50 const bool storageNonEmpty = (a.m_storage == b.m_storage) || (a.m_storage == glu::STORAGE_LAST) || (b.m_storage == glu::STORAGE_LAST);
54 (a.m_storage == glu::STORAGE_LAST) ? (b.m_storage) : (a.m_storage),
    [all...]
  /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...]
Array.h 57 using Base::m_storage;
166 m_storage.data()[0] = val0;
167 m_storage.data()[1] = val1;
168 m_storage.data()[2] = val2;
175 m_storage.data()[0] = val0;
176 m_storage.data()[1] = val1;
177 m_storage.data()[2] = val2;
178 m_storage.data()[3] = val3;
Matrix.h 253 m_storage.data()[0] = x;
254 m_storage.data()[1] = y;
255 m_storage.data()[2] = z;
262 m_storage.data()[0] = x;
263 m_storage.data()[1] = y;
264 m_storage.data()[2] = z;
265 m_storage.data()[3] = w;
347 using Base::m_storage;
  /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/opencv/
cvjni.cpp 328 m_storage = cvCreateMemStorage(0);
367 if (m_storage) {
368 cvReleaseMemStorage(&m_storage);
369 m_storage = 0;
400 cvClearMemStorage(m_storage);
466 if (m_cascade == 0 || m_storage == 0) {
479 m_facesFound = mycvHaarDetectObjects(m_smallImage, m_cascade, m_storage, HAAR_SCALE,
565 if (m_cascade == 0 || m_storage == 0) {
578 m_facesFound = mycvHaarDetectObjects(m_smallImage, m_cascade, m_storage, HAAR_SCALE,
cvjni.h 54 CvMemStorage *m_storage = 0; variable
  /external/chromium_org/third_party/WebKit/Source/core/css/
StylePropertySet.h 169 void* m_storage; member in class:blink::ImmutableStylePropertySet
177 return reinterpret_cast<const RawPtrWillBeMember<CSSValue>*>(const_cast<const void**>(&(this->m_storage)));
182 return reinterpret_cast<const StylePropertyMetadata*>(&reinterpret_cast<const char*>(&(this->m_storage))[m_arraySize * sizeof(RawPtrWillBeMember<CSSValue>)]);
  /external/deqp/modules/egl/
teglImageTests.cpp 395 , m_storage (storage)
429 GLU_CHECK_CALL(glTexImage2D(GL_TEXTURE_2D, 0, m_storage, 64, 64, 0, m_storage, GL_UNSIGNED_BYTE, DE_NULL));
479 GLU_CHECK_CALL(glTexImage2D(faces[faceNdx], 0, m_storage, 64, 64, 0, m_storage, GL_UNSIGNED_BYTE, DE_NULL));
514 GLU_CHECK_CALL(glRenderbufferStorage(GL_RENDERBUFFER, m_storage, 64, 64));
545 GLenum m_storage; member in class:deqp::egl::Image::CreateImageGLES2
  /external/deqp/modules/glshared/
glsVertexArrayTests.cpp 469 : m_storage (storage)
484 if (m_storage == STORAGE_BUFFER)
493 if (m_storage == STORAGE_BUFFER)
498 else if (m_storage == STORAGE_USER)
514 if (m_storage == STORAGE_BUFFER)
522 else if (m_storage == STORAGE_USER)
538 if (m_storage == STORAGE_BUFFER)
546 else if (m_storage == STORAGE_USER)
566 if (m_storage == STORAGE_USER)
569 else if (m_storage == STORAGE_BUFFER
    [all...]
glsDrawTest.cpp 920 DrawTestSpec::Storage getStorageType (void) const { return m_storage; }
927 DrawTestSpec::Storage m_storage;
948 : m_storage (storage)
965 if (m_storage == DrawTestSpec::STORAGE_BUFFER)
974 if (m_storage == DrawTestSpec::STORAGE_BUFFER)
979 else if (m_storage == DrawTestSpec::STORAGE_USER)
990 if (m_storage == DrawTestSpec::STORAGE_BUFFER)
    [all...]
glsVertexArrayTests.hpp 184 virtual Array::Storage getStorageType (void) const { return m_storage; }
198 Storage m_storage; member in class:deqp::gls::ContextArray
  /external/chromium_org/third_party/WebKit/Source/platform/heap/
ThreadState.h 821 PageMemory* storage() const { return m_storage; }
842 PageMemory* m_storage; member in class:blink::BaseHeapPage
  /external/deqp/modules/gles2/stress/
es2sSpecialFloatTests.cpp 535 const Storage m_storage;
544 , m_storage (storage)
564 if (m_storage == STORAGE_BUFFER)
644 if (m_storage == STORAGE_BUFFER)
664 if (m_storage == STORAGE_BUFFER)
681 else if (m_storage == STORAGE_CLIENT)
    [all...]
  /external/opencv/cvaux/src/
enmin.cpp     [all...]

Completed in 1309 milliseconds

1 2