Home | History | Annotate | Download | only in public

Lines Matching defs:size_

91   int size_;
94 VectorMap() : data_(nullptr), size_(0) {}
95 VectorMap(Scalar* data, int size) : data_(data), size_(size) {}
96 VectorMap(const VectorMap& other) : data_(other.data_), size_(other.size_) {}
98 int size() const { return size_; }
105 assert(start + len <= size_);
120 int size_;
123 VectorDup() : data_(0), size_(0) {}
124 VectorDup(Scalar data, int size) : data_(data), size_(size) {}
125 VectorDup(const VectorDup& other) : data_(other.data_), size_(other.size_) {}
127 int size() const { return size_; }
132 assert(start + len <= size_);