HomeSort by relevance Sort by last modified time
    Searched defs:cols_ (Results 1 - 8 of 8) 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/
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
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
  /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/opencv3/modules/core/include/opencv2/core/
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...]
  /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/
global_motion.hpp 163 std::vector<int> rows_, cols_; member in class:cv::videostab::MotionEstimatorL1
168 cols_.push_back(col);
motion_stabilizing.hpp 154 std::vector<int> rows_, cols_; member in class:cv::videostab::LpMotionStabilizer
160 cols_.push_back(col);

Completed in 214 milliseconds