Home | History | Annotate | Download | only in Core

Lines Matching defs:MapType

97     typedef Eigen::Map<Derived, Unaligned>  MapType;
456 static inline MapType Map(Scalar* data)
457 { return MapType(data); }
460 static inline MapType Map(Scalar* data, Index size)
461 { return MapType(data, size); }
464 static inline MapType Map(Scalar* data, Index rows, Index cols)
465 { return MapType(data, rows, cols); }