HomeSort by relevance Sort by last modified time
    Searched full:cols_ (Results 1 - 22 of 22) sorted by null

  /external/webrtc/webrtc/system_wrappers/include/
aligned_array.h 25 cols_(cols) {
30 head_row_[i] = static_cast<T*>(AlignedMalloc(cols_ * sizeof(**head_row_),
61 RTC_CHECK_LE(col, cols_);
66 RTC_CHECK_LE(col, cols_);
75 return cols_;
80 size_t cols_; member in class:webrtc::AlignedArray
  /external/ceres-solver/internal/ceres/
triplet_sparse_matrix.cc 50 cols_(NULL),
63 cols_(NULL),
79 cols_(NULL),
99 (cols_[i] < 0) || (cols_[i] >= num_cols_))
119 new_cols[i] = cols_[i];
124 cols_.reset(new_cols);
143 cols_.reset(new int[max_num_nonzeros_]);
150 cols_[i] = orig.cols_[i]
    [all...]
compressed_row_sparse_matrix.cc 78 cols_.resize(max_num_nonzeros, 0);
84 << " max_num_nonzeros: " << cols_.size()
86 cols_.size() * sizeof(int) + // NOLINT
87 cols_.size() * sizeof(double); // NOLINT
96 cols_.resize(m.num_nonzeros(), 0);
111 << " max_num_nonzeros: " << cols_.size()
114 cols_.size() * sizeof(int) + // NOLINT
115 cols_.size() * sizeof(double)); // NOLINT
122 cols_[i] = m.cols()[idx];
141 cols_.resize(num_rows)
    [all...]
triplet_sparse_matrix.h 72 // of rows_, cols_ and values_. If new_max_num_nonzeros is smaller
92 const int* cols() const { return cols_.get(); }
94 int* mutable_cols() { return cols_.get(); }
118 // stored at the location (rows_[i], cols_[i]). If the there are
119 // multiple entries with the same (rows_[i], cols_[i]), the values_
122 scoped_array<int> cols_; member in class:ceres::internal::TripletSparseMatrix
dynamic_compressed_row_sparse_matrix.cc 75 // Count the number of non-zeros and resize `cols_` and `values_`.
83 // Flatten `dynamic_cols_` into `cols_` and `dynamic_values_`
102 << "Ceres bug: final index into values_ and cols_ should be equal to "
compressed_row_sparse_matrix.h 106 const int* cols() const { return &cols_[0]; }
107 int* mutable_cols() { return &cols_[0]; }
164 vector<int> cols_; member in class:ceres::internal::CompressedRowSparseMatrix
  /external/gemmlowp/public/
map.h 40 int rows_, cols_, stride_; member in class:gemmlowp::MatrixMap
43 MatrixMap() : data_(nullptr), rows_(0), cols_(0), stride_(0) {}
45 : data_(data), rows_(rows), cols_(cols), stride_(stride) {}
49 cols_(other.cols_),
53 int cols() const { return cols_; }
68 assert(start_col + block_cols <= cols_);
  /external/gemmlowp/test/
test.h 60 using Map::cols_;
72 Resize(other.rows_, other.cols_);
78 return a.rows_ == b.rows_ && a.cols_ == b.cols_ &&
84 cols_ = cols;
90 int size() const { return rows_ * cols_; }
94 ConstMap const_map() const { return ConstMap(data_, rows_, cols_, stride_); }
  /external/opencv3/modules/flann/include/opencv2/flann/
matrix.h 60 Matrix(T* data_, size_t rows_, size_t cols_, size_t stride_ = 0) :
61 rows(rows_), cols(cols_), stride(stride_), data(data_)
95 UntypedMatrix(void* data_, long rows_, long cols_) :
96 rows(rows_), cols(cols_), data(data_)
  /external/opencv3/modules/cudastereo/src/
stereobp.cpp 140 int rows_, cols_;
189 cols_ = left.cols;
192 const int lowest_cols = cols_ / divisor;
199 datas_[0].create(rows_ * ndisp_, cols_, msg_type_);
219 cols_ = data.cols;
222 const int lowest_cols = cols_ / divisor;
238 u_.create(rows_ * ndisp_, cols_, msg_type_);
239 d_.create(rows_ * ndisp_, cols_, msg_type_);
240 l_.create(rows_ * ndisp_, cols_, msg_type_);
241 r_.create(rows_ * ndisp_, cols_, msg_type_)
    [all...]
  /external/opencv3/modules/core/src/
cuda_host_mem.cpp 179 void cv::cuda::HostMem::create(int rows_, int cols_, int type_)
183 (void) cols_;
195 if (rows == rows_ && cols == cols_ && type() == type_ && data)
201 CV_DbgAssert( rows_ >= 0 && cols_ >= 0 );
203 if (rows_ > 0 && cols_ > 0)
207 cols = cols_;
opengl.cpp 457 cv::ogl::Buffer::Buffer() : rows_(0), cols_(0), type_(0)
466 cv::ogl::Buffer::Buffer(int arows, int acols, int atype, unsigned int abufId, bool autoRelease) : rows_(0), cols_(0), type_(0)
478 cols_ = acols;
483 cv::ogl::Buffer::Buffer(Size asize, int atype, unsigned int abufId, bool autoRelease) : rows_(0), cols_(0), type_(0)
494 cols_ = asize.width;
499 cv::ogl::Buffer::Buffer(InputArray arr, Target target, bool autoRelease) : rows_(0), cols_(0), type_(0)
523 cols_ = mat.cols;
541 if (rows_ != arows || cols_ != acols || type_ != atype)
546 cols_ = acols;
559 cols_ = 0
    [all...]
cuda_gpu_mat.cpp 49 cv::cuda::GpuMat::GpuMat(int rows_, int cols_, int type_, void* data_, size_t step_) :
50 flags(Mat::MAGIC_VAL + (type_ & Mat::TYPE_MASK)), rows(rows_), cols(cols_),
  /external/opencv3/modules/core/include/opencv2/core/
cuda_types.hpp 112 __CV_CUDA_HOST_DEVICE__ PtrStepSz(int rows_, int cols_, T* data_, size_t step_)
113 : PtrStep<T>(data_, step_), cols(cols_), rows(rows_) {}
opengl.hpp 276 int cols_; member in class:cv::ogl::Buffer
397 int cols_; member in class:cv::ogl::Texture2D
542 cv::ogl::Buffer::Buffer(int arows, int acols, int atype, Target target, bool autoRelease) : rows_(0), cols_(0), type_(0)
548 cv::ogl::Buffer::Buffer(Size asize, int atype, Target target, bool autoRelease) : rows_(0), cols_(0), type_(0)
568 return cols_;
574 return Size(cols_, rows_);
580 return rows_ == 0 || cols_ == 0;
616 cv::ogl::Texture2D::Texture2D(int arows, int acols, Format aformat, bool autoRelease) : rows_(0), cols_(0), format_(NONE)
622 cv::ogl::Texture2D::Texture2D(Size asize, Format aformat, bool autoRelease) : rows_(0), cols_(0), format_(NONE)
642 return cols_;
    [all...]
cuda.inl.hpp 63 GpuMat::GpuMat(int rows_, int cols_, int type_, Allocator* allocator_)
66 if (rows_ > 0 && cols_ > 0)
67 create(rows_, cols_, type_);
79 GpuMat::GpuMat(int rows_, int cols_, int type_, Scalar s_, Allocator* allocator_)
82 if (rows_ > 0 && cols_ > 0)
84 create(rows_, cols_, type_);
399 HostMem::HostMem(int rows_, int cols_, int type_, AllocType alloc_type_)
402 if (rows_ > 0 && cols_ > 0)
403 create(rows_, cols_, type_);
  /external/opencv3/modules/photo/src/
fast_nlmeans_multi_denoising_invoker.hpp 68 int cols_; member in struct:FastNlMeansMultiDenoisingInvoker
112 cols_ = srcImgs[0].cols;
171 Array4d<int> up_col_dist_sums(cols_, temporal_window_size_, search_window_size_, search_window_size_);
175 for (int j = 0; j < cols_; j++)
  /external/opencv3/modules/videostab/include/opencv2/videostab/
motion_stabilizing.hpp 154 std::vector<int> rows_, cols_; member in class:cv::videostab::LpMotionStabilizer
160 cols_.push_back(col);
global_motion.hpp 163 std::vector<int> rows_, cols_; member in class:cv::videostab::MotionEstimatorL1
168 cols_.push_back(col);
  /external/opencv/cxcore/src/
cxsumpixels.cpp 726 icv##name##Cols_##flavor##_C1R( const arrtype* src, int srcstep, \
766 icv##name##Cols_##flavor##_C3R( const arrtype* src, int srcstep, \
    [all...]
  /external/opencv3/modules/videostab/src/
global_motion.cpp 566 cols_.clear();
629 CoinPackedMatrix A(true, &rows_[0], &cols_[0], &elems_[0], elems_.size());
motion_stabilizing.cpp 158 cols_.clear();
520 CoinPackedMatrix A(true, &rows_[0], &cols_[0], &elems_[0], elems_.size());

Completed in 410 milliseconds