Searched defs:VectorDup (Results 1 – 2 of 2) sorted by relevance
112 VectorDup() : data_(0), size_(0) {} in VectorDup() function113 VectorDup(Scalar data, int size) : data_(data), size_(size) {} in VectorDup() function114 VectorDup(const VectorDup& other) : data_(other.data_), size_(other.size_) {} in VectorDup() function
52 template <typename tScalar, VectorShape tShape> class VectorDup; variable