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

  /external/eigen/debug/msvc/
eigen_autoexp_part.dat 33 x : ($c.m_storage.m_data.array)[0],
34 y : ($c.m_storage.m_data.array)[1],
35 z : ($c.m_storage.m_data.array)[2],
36 w : ($c.m_storage.m_data.array)[3]
46 #array(expr: $e.m_storage.m_data.array[$i], size: 4),
58 x : ($c.m_storage.m_data.array)[0],
59 y : ($c.m_storage.m_data.array)[1],
60 z : ($c.m_storage.m_data.array)[2]
70 #array(expr: $e.m_storage.m_data.array[$i], size: 3),
82 x : ($c.m_storage.m_data.array)[0],
    [all...]
  /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;
  /external/eigen/debug/gdb/
printers.py 55 self.rows = val['m_storage']['m_rows']
60 self.cols = val['m_storage']['m_cols']
75 self.data = self.val['m_storage']['m_data']
143 self.data = self.val['m_coeffs']['m_storage']['m_data']['array']
  /external/chromium_org/third_party/WebKit/Source/core/css/
StylePropertySet.h 156 void* m_storage; member in class:WebCore::ImmutableStylePropertySet
164 return reinterpret_cast<const CSSValue**>(const_cast<const void**>(&(this->m_storage)));
169 return reinterpret_cast<const StylePropertyMetadata*>(&reinterpret_cast<const char*>(&(this->m_storage))[m_arraySize * sizeof(CSSValue*)]);
  /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
  /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/cvaux/src/
enmin.cpp     [all...]
  /external/eigen/doc/
I03_InsideEigenExample.dox 90 the constructor that is called is Matrix::Matrix(int), in src/Core/Matrix.h. Besides some assertions, all it does is to construct the \a m_storage member, which is of type DenseStorage\<float, Dynamic, Dynamic, 1\>.
231 eigen_assert(m_storage.data()!=0 && "you cannot use operator= with a non initialized matrix (instead use set()");
400 internal::pstoret<Scalar, PacketScalar, StoreMode>(m_storage.data() + index, x);
453 return internal::ploadt<Scalar, LoadMode>(m_storage.data() + index);

Completed in 162 milliseconds