HomeSort by relevance Sort by last modified time
    Searched refs:getCols (Results 1 - 25 of 36) sorted by null

1 2

  /external/opencv3/modules/cudev/include/opencv2/cudev/ptr2d/
traits.hpp 74 __host__ static int getCols(const Ptr2DSz& ptr)
97 __host__ int getCols(const Ptr2DSz& ptr)
99 return PtrTraits<Ptr2DSz>::getCols(ptr);
zip.hpp 121 const int cols = getCols(ptr0);
123 CV_Assert( getRows(ptr1) == rows && getCols(ptr1) == cols );
138 const int cols = getCols(ptr0);
140 CV_Assert( getRows(ptr1) == rows && getCols(ptr1) == cols );
141 CV_Assert( getRows(ptr2) == rows && getCols(ptr2) == cols );
156 const int cols = getCols(ptr0);
158 CV_Assert( getRows(ptr1) == rows && getCols(ptr1) == cols );
159 CV_Assert( getRows(ptr2) == rows && getCols(ptr2) == cols );
160 CV_Assert( getRows(ptr3) == rows && getCols(ptr3) == cols );
extrapolation.hpp 81 b.cols = getCols(src);
139 b.cols = getCols(src);
165 b.cols = getCols(src);
191 b.cols = getCols(src);
216 b.cols = getCols(src);
remap.hpp 119 const int cols = getCols(map);
134 const int cols = getCols(mapx);
136 CV_Assert( getRows(mapy) == rows && getCols(mapy) == cols );
transform.hpp 94 ptr.cols = getCols(src);
135 const int cols = getCols(src1);
137 CV_Assert( getRows(src2) == rows && getCols(src2) == cols );
mask.hpp 96 ptr.cols = getCols(mask) * channels;
resize.hpp 96 r.cols = cv::saturate_cast<int>(getCols(src) * fx);
deriv.hpp 91 s.cols = getCols(src);
131 s.cols = getCols(src);
178 s.cols = getCols(src);
224 s.cols = getCols(src);
271 s.cols = getCols(src);
317 s.cols = getCols(src);
386 ptr.cols = getCols(src);
lut.hpp 93 ptr.cols = getCols(src);
interpolation.hpp 87 i.cols = getCols(src);
145 i.cols = getCols(src);
224 i.cols = getCols(src);
284 i.cols = getCols(src);
378 i.cols = getCols(src);
  /external/opencv3/modules/cudev/include/opencv2/cudev/grid/
split_merge.hpp 69 const int cols = getCols(src);
71 CV_Assert( getRows(mask) == rows && getCols(mask) == cols );
88 const int cols = getCols(src);
90 CV_Assert( getRows(dst) == rows && getCols(dst) == cols );
91 CV_Assert( getRows(mask) == rows && getCols(mask) == cols );
106 const int cols = getCols(src);
123 const int cols = getCols(src);
125 CV_Assert( getRows(dst) == rows && getCols(dst) == cols );
140 const int cols = getCols(src);
142 CV_Assert( getRows(mask) == rows && getCols(mask) == cols )
    [all...]
integral.hpp 63 const int cols = getCols(src);
transpose.hpp 64 const int cols = getCols(src);
75 const int cols = getCols(src);
77 CV_Assert( getRows(dst) == cols && getCols(dst) == rows );
copy.hpp 67 const int cols = getCols(src);
69 CV_Assert( getRows(mask) == rows && getCols(mask) == cols );
80 const int cols = getCols(src);
82 CV_Assert( getRows(dst) == rows && getCols(dst) == cols );
83 CV_Assert( getRows(mask) == rows && getCols(mask) == cols );
92 const int cols = getCols(src);
103 const int cols = getCols(src);
105 CV_Assert( getRows(dst) == rows && getCols(dst) == cols );
116 const int cols = getCols(src);
118 CV_Assert( getRows(mask) == rows && getCols(mask) == cols )
    [all...]
transform.hpp 67 const int cols = getCols(src);
69 CV_Assert( getRows(mask) == rows && getCols(mask) == cols );
80 const int cols = getCols(src);
82 CV_Assert( getRows(dst) == rows && getCols(dst) == cols );
83 CV_Assert( getRows(mask) == rows && getCols(mask) == cols );
92 const int cols = getCols(src);
103 const int cols = getCols(src);
105 CV_Assert( getRows(dst) == rows && getCols(dst) == cols );
114 const int cols = getCols(src1);
116 CV_Assert( getRows(src2) == rows && getCols(src2) == cols )
    [all...]
histogram.hpp 66 const int cols = getCols(src);
68 CV_Assert( getRows(mask) == rows && getCols(mask) == cols );
86 const int cols = getCols(src);
pyramids.hpp 65 const int cols = getCols(src);
82 const int cols = getCols(src);
reduce.hpp 74 const int cols = getCols(src);
76 CV_Assert( getRows(mask) == rows && getCols(mask) == cols );
96 const int cols = getCols(src);
112 const int cols = getCols(src);
114 CV_Assert( getRows(mask) == rows && getCols(mask) == cols );
130 const int cols = getCols(src);
146 const int cols = getCols(src);
148 CV_Assert( getRows(mask) == rows && getCols(mask) == cols );
164 const int cols = getCols(src);
181 const int cols = getCols(src)
    [all...]
reduce_to_vec.hpp 149 const int cols = getCols(src);
151 CV_Assert( getRows(mask) == rows && getCols(mask) == cols );
166 const int cols = getCols(src);
181 const int cols = getCols(src);
183 CV_Assert( getRows(mask) == rows && getCols(mask) == cols );
198 const int cols = getCols(src);
  /external/opencv3/modules/cudev/include/opencv2/cudev/expr/
expr.hpp 87 __host__ static int getCols(const Expr<Body>& expr)
89 return PtrTraits<Body>::getCols(expr.body);
  /external/llvm/include/llvm/CodeGen/
RegAllocPBQP.h 46 UnsafeCols(new bool[M.getCols() - 1]()) {
48 unsigned* ColCounts = new unsigned[M.getCols() - 1]();
52 for (unsigned j = 1; j < M.getCols(); ++j) {
63 *std::max_element(ColCounts, ColCounts + M.getCols() - 1);
  /packages/apps/Terminal/src/com/android/terminal/
Terminal.java 154 public int getCols() {
TerminalView.java 290 mCols = mTerm.getCols();
  /packages/apps/Terminal/jni/
com_android_terminal_Terminal.cpp 131 dimen_t getCols() const;
537 dimen_t Terminal::getCols() const {
613 while ((size_t) pos.col < term->getCols()) {
662 return term->getCols();
  /external/llvm/include/llvm/CodeGen/PBQP/
Graph.h 418 getNodeCosts(N2Id).getLength() == Costs.getCols() &&
444 getNodeCosts(N2Id).getLength() == Costs->getCols() &&

Completed in 130 milliseconds

1 2