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

  /external/eigen/Eigen/src/Core/
ArrayBase.h 17 /** \class ArrayBase
39 template<typename Derived> class ArrayBase
45 typedef ArrayBase StorageBaseType;
47 typedef ArrayBase Eigen_BaseClassForSpecializationOfGlobalMathFuncImpl;
89 #define EIGEN_CURRENT_STORAGE_BASE_CLASS Eigen::ArrayBase
107 Derived& operator=(const ArrayBase& other)
126 Derived& operator+=(const ArrayBase<OtherDerived>& other);
129 Derived& operator-=(const ArrayBase<OtherDerived>& other);
133 Derived& operator*=(const ArrayBase<OtherDerived>& other);
137 Derived& operator/=(const ArrayBase<OtherDerived>& other)
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
MachineRegisterInfo.cpp 107 void *ArrayBase = getNumVirtRegs() == 0 ? 0 : &VRegInfo[FirstVirtReg];
112 if (ArrayBase && &VRegInfo[FirstVirtReg] != ArrayBase)
  /external/bcc/src/python/bcc/
table.py 415 class ArrayBase(TableBase):
417 super(ArrayBase, self).__init__(*args, **kwargs)
437 return super(ArrayBase, self).__getitem__(key)
441 super(ArrayBase, self).__setitem__(key, leaf)
445 super(ArrayBase, self).__delitem__(key)
455 return ArrayBase.Iter(self, self.Key)
473 class Array(ArrayBase):
481 class ProgArray(ArrayBase):
512 class CgroupArray(ArrayBase):
526 class PerfEventArray(ArrayBase)
    [all...]

Completed in 213 milliseconds