/external/eigen/test/ |
jacobi.cpp | 20 Index cols = m.cols(); local 29 const MatrixType a(MatrixType::Random(rows, cols)); 49 Index p = internal::random<Index>(0, cols-1); 52 q = internal::random<Index>(0, cols-1);
|
stddeque.cpp | 21 Index cols = m.cols(); local 22 MatrixType x = MatrixType::Random(rows,cols), y = MatrixType::Random(rows,cols); 23 std::deque<MatrixType,Eigen::aligned_allocator<MatrixType> > v(10, MatrixType(rows,cols)), w(20, y);
|
stdlist.cpp | 21 Index cols = m.cols(); local 22 MatrixType x = MatrixType::Random(rows,cols), y = MatrixType::Random(rows,cols); 23 std::list<MatrixType,Eigen::aligned_allocator<MatrixType> > v(10, MatrixType(rows,cols)), w(20, y);
|
eigensolver_selfadjoint.cpp | 22 Index cols = m.cols(); local 32 MatrixType a = MatrixType::Random(rows,cols); 33 MatrixType a1 = MatrixType::Random(rows,cols); 37 MatrixType b = MatrixType::Random(rows,cols); 38 MatrixType b1 = MatrixType::Random(rows,cols); 85 MatrixType id = MatrixType::Identity(rows, cols);
|
mapstride.cpp | 56 Index rows = _m.rows(), cols = _m.cols(); local 58 MatrixType m = MatrixType::Random(rows,cols); 60 Index arraysize = 2*(rows+4)*(cols+4); 69 Map<MatrixType, Alignment, OuterStride<Dynamic> > map(array, rows, cols, OuterStride<Dynamic>(m.innerSize()+1)); 88 map(array, rows, cols, OuterStride<OuterStrideAtCompileTime>(m.innerSize()+4)); 101 Map<MatrixType, Alignment, Stride<Dynamic,Dynamic> > map(array, rows, cols, Stride<Dynamic,Dynamic>(2*m.innerSize()+1, 2));
|
/external/mesa3d/src/gallium/auxiliary/util/ |
u_linear.c | 42 size_t bytes = t->cols * t->block.size; 66 size_t bytes = t->cols * t->block.size; 93 t->cols = t->tile.width / t->block.width; 95 t->tile.size = t->cols * t->rows * t->block.size; 99 t->stride = t->cols * t->tiles_x * t->block.size;
|
u_linear.h | 62 unsigned cols; member in struct:pipe_tile_info 94 if (t->tile.size != t->block.size * t->cols * t->rows) 97 if (t->stride != t->block.size * t->cols * t->tiles_x)
|
/external/eigen/Eigen/src/SparseCore/ |
ConservativeSparseSparseProduct.h | 25 Index cols = rhs.outerSize(); local 43 for (Index j=0; j<cols; ++j) 139 ColMajorMatrix resCol(lhs.rows(),rhs.cols()); 154 RowMajorMatrix resRow(lhs.rows(), rhs.cols()); 167 RowMajorMatrix resRow(lhs.rows(), rhs.cols()); 179 RowMajorMatrix resRow(lhs.rows(), rhs.cols()); 194 ColMajorMatrix resCol(lhs.rows(), rhs.cols()); 207 ColMajorMatrix resCol(lhs.rows(), rhs.cols()); 220 ColMajorMatrix resCol(lhs.rows(), rhs.cols()); 233 RowMajorMatrix resRow(lhs.rows(),rhs.cols()); [all...] |
/external/eigen/debug/gdb/ |
printers.py | 60 self.cols = val['m_storage']['m_cols'] 62 self.cols = int(template_params[2]) 81 def __init__ (self, rows, cols, dataPtr, rowMajor): 83 self.cols = cols 97 if self.currentCol >= self.cols: 109 if self.currentCol >= self.cols: 116 if (self.cols == 1): #if it's a column vector 124 return self._iterator(self.rows, self.cols, self.data, self.rowMajor) 127 return "Eigen::%s<%s,%d,%d,%s> (data ptr: %s)" % (self.variety, self.innerType, self.rows, self.cols, "RowMajor" if self.rowMajor else "ColMajor", self.data [all...] |
/external/eigen/test/eigen2/ |
eigen2_sparse_basic.cpp | 49 const int cols = ref.cols(); local 53 double density = std::max(8./(rows*cols), 0.01); 58 SparseMatrixType m(rows, cols); 59 DenseMatrix refMat = DenseMatrix::Zero(rows, cols); 87 int j = ei_random<int>(0,cols-1); 89 int w = ei_random<int>(1,cols-j-1); 111 for(int c=0; c<cols; c++) 167 DenseMatrix m1(rows,cols); 169 SparseMatrixType m2(rows,cols); [all...] |
/external/opencv/cv/src/ |
cvundistort.cpp | 150 if( !CV_IS_MAT(A) || A->rows != 3 || A->cols != 3 || 154 if( !CV_IS_MAT(dist_coeffs) || (dist_coeffs->rows != 1 && dist_coeffs->cols != 1) || 155 (dist_coeffs->rows*dist_coeffs->cols*CV_MAT_CN(dist_coeffs->type) != 4 && 156 dist_coeffs->rows*dist_coeffs->cols*CV_MAT_CN(dist_coeffs->type) != 5) || 163 _k = cvMat( dist_coeffs->rows, dist_coeffs->cols, 213 if( !CV_IS_MAT(A) || A->rows != 3 || A->cols != 3 || 217 if( !CV_IS_MAT(dist_coeffs) || (dist_coeffs->rows != 1 && dist_coeffs->cols != 1) || 218 (dist_coeffs->rows*dist_coeffs->cols*CV_MAT_CN(dist_coeffs->type) != 4 && 219 dist_coeffs->rows*dist_coeffs->cols*CV_MAT_CN(dist_coeffs->type) != 5) || 226 _k = cvMat( dist_coeffs->rows, dist_coeffs->cols, [all...] |
/external/eigen/unsupported/test/ |
sparse_extra.cpp | 55 const Index cols = ref.cols(); local 59 double density = (std::max)(8./(rows*cols), 0.01); 64 SparseMatrixType m(rows, cols); 65 DenseMatrix refMat = DenseMatrix::Zero(rows, cols); 119 SparseMatrixType m1(rows,cols), m2(rows,cols);
|
/external/eigen/Eigen/src/Core/ |
MapBase.h | 62 using Base::cols; 80 inline Index cols() const { return m_cols.value(); } function in class:Eigen::MapBase 143 inline MapBase(PointerType data, Index rows, Index cols) 144 : m_data(data), m_rows(rows), m_cols(cols) 148 && cols >= 0 && (ColsAtCompileTime == Dynamic || ColsAtCompileTime == cols))); 182 using Base::cols; 229 inline MapBase(PointerType data, Index rows, Index cols) : Base(data, rows, cols) {}
|
Swap.h | 39 inline Index cols() const { return m_expression.cols(); } function in class:Eigen::SwapWrapper 77 && col >= 0 && col < cols()); 98 && col >= 0 && col < cols());
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/ |
u_linear.h | 62 unsigned cols; member in struct:pipe_tile_info 94 if (t->tile.size != t->block.size * t->cols * t->rows) 97 if (t->stride != t->block.size * t->cols * t->tiles_x)
|
/external/eigen/Eigen/src/Core/products/ |
TriangularMatrixMatrix_MKL.h | 104 Index cols = _cols; \ 127 rows, cols, depth, aa_tmp.data(), aStride, _rhs, rhsStride, res, resStride, alpha, blocking, 0); \ 144 n = (MKL_INT)cols; \ 150 Map<const MatrixRhs, 0, OuterStride<> > rhs(_rhs,depth,cols,OuterStride<>(rhsStride)); \ 181 Map<MatrixX##EIGPREFIX, 0, OuterStride<> > res_tmp(res,rows,cols,OuterStride<>(resStride)); \ 218 Index cols = IsLower ? diagSize : _cols; \ 224 if (cols != depth) { \ 228 if ((nthr==1) && (((std::max)(cols,depth)-diagSize)/(double)diagSize < 0.5)) { \ 236 Map<const MatrixRhs, 0, OuterStride<> > rhsMap(_rhs,depth,cols, OuterStride<>(rhsStride)); \ 241 rows, cols, depth, _lhs, lhsStride, aa_tmp.data(), aStride, res, resStride, alpha, blocking, 0); [all...] |
/external/eigen/Eigen/src/Householder/ |
BlockHouseholder.h | 26 const Index nbVecs = vectors.cols(); 27 eigen_assert(triFactor.rows() == nbVecs && triFactor.cols() == nbVecs && vectors.rows()>=nbVecs); 50 Index nbVecs = vectors.cols();
|
/external/eigen/demos/mix_eigen_and_c/ |
binary_library.h | 27 struct C_MatrixXd* MatrixXd_new(int rows, int cols); 31 void MatrixXd_resize (struct C_MatrixXd *m, int rows, int cols); 50 struct C_Map_MatrixXd* Map_MatrixXd_new(double *array, int rows, int cols);
|
/external/chromium_org/third_party/pexpect/ |
screen.py | 69 self.cols = c 76 self.w = [ [SPACE] * self.cols for c in range(self.rows)] 98 top_bot = '+' + '-'*self.cols + '+\n' 103 self.fill_region (1,1,self.rows,self.cols, ch) 109 cs = constrain (cs, 1, self.cols) 110 ce = constrain (ce, 1, self.cols) 158 c = constrain (c, 1, self.cols) 177 c = constrain (c, 1, self.cols) 178 for ci in range (self.cols, c, -1): 189 c = constrain (c, 1, self.cols) [all...] |
/external/ceres-solver/internal/ceres/ |
partitioned_matrix_view.cc | 55 num_col_blocks_f_ = bs->cols.size() - num_col_blocks_a; 74 for (int c = 0; c < bs->cols.size(); ++c) { 75 const Block& block = bs->cols[c]; 105 const int col_block_pos = bs->cols[col_block_id].position; 106 const int col_block_size = bs->cols[col_block_id].size; 129 const int col_block_pos = bs->cols[col_block_id].position; 130 const int col_block_size = bs->cols[col_block_id].size; 150 const int col_block_pos = bs->cols[col_block_id].position; 151 const int col_block_size = bs->cols[col_block_id].size; 174 const int col_block_pos = bs->cols[col_block_id].position [all...] |
/external/chromium-trace/trace-viewer/third_party/gl-matrix/jsdoc-template/static/ |
index.html | 8 <frameset cols="20%,80%">
|
/external/chromium_org/chrome/common/extensions/docs/examples/api/storage/stylizr/ |
options.html | 33 <textarea name="style_url" id="style_url" cols=80 rows=24
|
/external/chromium_org/third_party/WebKit/ManualTests/ |
textarea-caret-position-after-auto-spell-correct.html | 6 <textarea rows="6" cols="35">
|
/external/chromium_org/third_party/mesa/src/docs/ |
index.html | 13 <frameset cols="28%,72% " border="1" frameborder="yes">
|
/external/chromium_org/ui/base/l10n/ |
l10n_font_util.h | 18 // its localized size data and the given font. The width in cols is held in a
|