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

  /external/eigen/Eigen/src/Core/
PlainObjectBase.h 110 DenseStorage<Scalar, Base::MaxSizeAtCompileTime, Base::RowsAtCompileTime, Base::ColsAtCompileTime, Options> m_storage; member in class:Eigen::PlainObjectBase
119 EIGEN_STRONG_INLINE Index rows() const { return m_storage.rows(); }
120 EIGEN_STRONG_INLINE Index cols() const { return m_storage.cols(); }
125 return m_storage.data()[col + row * m_storage.cols()];
127 return m_storage.data()[row + col * m_storage.rows()];
132 return m_storage.data()[index];
138 return m_storage.data()[col + row * m_storage.cols()]
    [all...]
Array.h 57 using Base::m_storage;
166 m_storage.data()[0] = x;
167 m_storage.data()[1] = y;
168 m_storage.data()[2] = z;
175 m_storage.data()[0] = x;
176 m_storage.data()[1] = y;
177 m_storage.data()[2] = z;
178 m_storage.data()[3] = w;
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 160 void* m_storage; member in class:WebCore::ImmutableStylePropertySet
168 return reinterpret_cast<const CSSValue**>(const_cast<const void**>(&(this->m_storage)));
173 return reinterpret_cast<const StylePropertyMetadata*>(&reinterpret_cast<const char*>(&(this->m_storage))[m_arraySize * sizeof(CSSValue*)]);
  /external/chromium_org/third_party/WebKit/Source/heap/
Heap.h 127 : m_storage(storage)
146 PageMemory* storage() const { return m_storage; }
150 PageMemory* m_storage; member in class:WebCore::BaseHeapPage
151 // The BaseHeapPage contains three pointers (vtable, m_storage,
  /external/opencv/cvaux/src/
enmin.cpp     [all...]

Completed in 223 milliseconds