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