HomeSort by relevance Sort by last modified time
    Searched refs:cols (Results 176 - 200 of 787) sorted by null

1 2 3 4 5 6 78 91011>>

  /bionic/libc/kernel/uapi/linux/
virtio_console.h 31 __u16 cols; member in struct:virtio_console_config
  /external/chromium_org/third_party/skia/include/utils/
SkBoundaryPatch.h 41 bool evalPatch(SkPoint verts[], int rows, int cols);
  /external/chromium_org/third_party/skia/src/utils/
SkBoundaryPatch.cpp 44 bool SkBoundaryPatch::evalPatch(SkPoint verts[], int rows, int cols) {
45 if (rows < 2 || cols < 2) {
50 const SkScalar invC = SkScalarInvert(SkIntToScalar(cols - 1));
52 for (int y = 0; y < cols; y++) {
  /external/eigen/Eigen/src/Householder/
Householder.h 105 * this->cols() * essential.size() entries
123 Map<typename internal::plain_row_type<PlainObject>::type> tmp(workspace,cols());
124 Block<Derived, EssentialPart::SizeAtCompileTime, Derived::ColsAtCompileTime> bottom(derived(), 1, 0, rows()-1, cols());
142 * this->cols() * essential.size() entries
154 if(cols() == 1)
161 Block<Derived, Derived::RowsAtCompileTime, EssentialPart::SizeAtCompileTime> right(derived(), 0, 1, rows(), cols()-1);
  /external/eigen/doc/examples/
Tutorial_simple_example_dynamic_size.cpp 11 for (int j=0; j<m.cols(); ++j) // loop over columns
  /external/eigen/test/
conservative_resize.cpp 41 const Index cols = internal::random<Index>(1,50); local
43 m.conservativeResize(rows,cols);
44 VERIFY_IS_APPROX(m, n.block(0,0,rows,cols));
51 const Index cols = internal::random<Index>(50,75); local
53 m.conservativeResizeLike(MatrixType::Zero(rows,cols));
54 VERIFY_IS_APPROX(m.block(0,0,n.rows(),n.cols()), n);
55 VERIFY( rows<=50 || m.block(50,0,rows-50,cols).sum() == Scalar(0) );
56 VERIFY( cols<=50 || m.block(0,50,rows,cols-50).sum() == Scalar(0) );
product_symm.cpp 22 Index cols = size; local
24 MatrixType m1 = MatrixType::Random(rows, cols),
25 m2 = MatrixType::Random(rows, cols), m3;
29 Rhs1 rhs1 = Rhs1::Random(cols, othersize), rhs12(cols, othersize), rhs13(cols, othersize);
31 Rhs3 rhs3 = Rhs3::Random(cols, othersize), rhs32(cols, othersize), rhs33(cols, othersize);
product_trmm.cpp 14 int cols=internal::random<int>(1,EIGEN_TEST_MAX_SIZE),
24 TriMatrix mat(rows,cols), tri(rows,cols), triTr(cols,rows);
26 OnTheRight ge_right(cols,otherCols);
64 void trmv(int rows=internal::random<int>(1,EIGEN_TEST_MAX_SIZE), int cols=internal::random<int>(1,EIGEN_TEST_MAX_SIZE))
66 trmm<Scalar,Mode,TriOrder,ColMajor,ColMajor,1>(rows,cols,1);
70 void trmm(int rows=internal::random<int>(1,EIGEN_TEST_MAX_SIZE), int cols=internal::random<int>(1,EIGEN_TEST_MAX_SIZE), int otherCols = internal::random<int>(1,EIGEN_TEST_MAX_SIZE))
72 trmm<Scalar,Mode,TriOrder,OtherOrder,ResOrder,Dynamic>(rows,cols,otherCols);
sparse_product.cpp 17 Index c = internal::random<Index>(0,m2.cols()-1);
18 Index c1 = internal::random<Index>(0,m2.cols()-1);
28 Index c1 = internal::random<Index>(0,m2.cols()-1);
43 const Index cols = internal::random<Index>(1,n); local
48 double density = (std::max)(8./(rows*cols), 0.1);
62 DenseMatrix refMat3 = DenseMatrix::Zero(depth, cols);
63 DenseMatrix refMat3t = DenseMatrix::Zero(cols, depth);
64 DenseMatrix refMat4 = DenseMatrix::Zero(rows, cols);
65 DenseMatrix refMat4t = DenseMatrix::Zero(cols, rows);
66 DenseMatrix refMat5 = DenseMatrix::Random(depth, cols);
    [all...]
jacobisvd.cpp 22 Index cols = m.cols(); local
33 MatrixType sigma = MatrixType::Zero(rows,cols);
50 Index cols = m.cols(); local
51 Index diagSize = (std::min)(rows, cols);
73 Index cols = m.cols(); local
83 RhsType rhs = RhsType::Random(rows, internal::random<Index>(1, cols));
127 Index rank = RankAtCompileTime2==Dynamic ? internal::random<Index>(1,cols) : Index(RankAtCompileTime2)
    [all...]
sparse_basic.cpp 20 const Index cols = ref.cols(); local
24 double density = (std::max)(8./(rows*cols), 0.01);
31 SparseMatrixType m(rows, cols);
32 DenseMatrix refMat = DenseMatrix::Zero(rows, cols);
59 int j = internal::random<int>(0,cols-1);
61 int w = internal::random<int>(1,cols-j-1);
83 for(int c=0; c<cols; c++)
98 VERIFY_RAISES_ASSERT( m.coeffRef(0,m.cols()) = 0 );
103 DenseMatrix m1(rows,cols);
    [all...]
  /external/eigen/test/eigen2/
eigen2_sparse_vector.cpp 12 template<typename Scalar> void sparse_vector(int rows, int cols)
14 double densityMat = std::max(8./(rows*cols), 0.01);
22 SparseMatrixType m1(rows,cols);
24 DenseMatrix refM1 = DenseMatrix::Zero(rows, cols);
  /external/eigen/unsupported/Eigen/src/IterativeSolvers/
IncompleteLU.h 35 Index cols() const { return m_lu.cols(); } function in class:Eigen::IncompleteLU
41 int size = mat.cols();
84 eigen_assert(cols()==b.rows()
  /external/kernel-headers/original/uapi/linux/
virtio_console.h 47 __u16 cols; member in struct:virtio_console_config
  /external/libhevc/decoder/x86/
ihevcd_fmt_conv_ssse3_intr.c 63 WORD32 num_rows, num_cols, src_strd, dst_strd, cols, rows; local
66 cols = 0;
128 cols = num_cols >> 4;
143 for(j = 0; j < cols; j++)
219 for(j = 0; j < cols; j++)
250 pu1_u_dst += (cols << 4);
251 pu1_v_dst += (cols << 4);
252 pu1_u_src += 2 * (cols << 4);
253 pu1_v_src += 2 * (cols << 4);
  /external/skia/include/utils/
SkBoundaryPatch.h 41 bool evalPatch(SkPoint verts[], int rows, int cols);
  /external/skia/src/utils/
SkBoundaryPatch.cpp 44 bool SkBoundaryPatch::evalPatch(SkPoint verts[], int rows, int cols) {
45 if (rows < 2 || cols < 2) {
50 const SkScalar invC = SkScalarInvert(SkIntToScalar(cols - 1));
52 for (int y = 0; y < cols; y++) {
  /packages/apps/Terminal/src/com/android/terminal/
Terminal.java 128 public void resize(int rows, int cols, int scrollRows) {
129 if (nativeResize(mNativePtr, rows, cols, scrollRows) != 0) {
165 private static native long nativeInit(TerminalCallbacks callbacks, int rows, int cols);
169 private static native int nativeResize(long ptr, int rows, int cols, int scrollRows);
  /prebuilts/ndk/9/platforms/android-21/arch-arm/usr/include/linux/
virtio_console.h 31 __u16 cols; member in struct:virtio_console_config
  /prebuilts/ndk/9/platforms/android-21/arch-arm64/usr/include/linux/
virtio_console.h 31 __u16 cols; member in struct:virtio_console_config
  /prebuilts/ndk/9/platforms/android-21/arch-mips/usr/include/linux/
virtio_console.h 31 __u16 cols; member in struct:virtio_console_config
  /prebuilts/ndk/9/platforms/android-21/arch-mips64/usr/include/linux/
virtio_console.h 31 __u16 cols; member in struct:virtio_console_config
  /prebuilts/ndk/9/platforms/android-21/arch-x86/usr/include/linux/
virtio_console.h 31 __u16 cols; member in struct:virtio_console_config
  /prebuilts/ndk/9/platforms/android-21/arch-x86_64/usr/include/linux/
virtio_console.h 31 __u16 cols; member in struct:virtio_console_config
  /external/eigen/Eigen/src/Core/products/
TriangularMatrixMatrix.h 60 Index rows, Index cols, Index depth,
74 ::run(cols, rows, depth, rhs, rhsStride, lhs, lhsStride, res, resStride, alpha, blocking);
118 Index cols = _cols; local
127 std::size_t sizeB = kc*cols;
159 pack_rhs(blockB, &rhs(actual_k2,0), rhsStride, actual_kc, cols);
189 gebp_kernel(res+startBlock, resStride, blockA, blockB, actualPanelWidth, actualPanelWidth, cols, alpha,
199 gebp_kernel(res+startTarget, resStride, blockA, blockB, lengthTarget, actualPanelWidth, cols, alpha,
214 gebp_kernel(res+i2, resStride, blockA, blockB, actual_mc, actual_kc, cols, alpha, -1, -1, 0, 0, blockW);
259 Index cols = IsLower ? diagSize : _cols; local
268 std::size_t sizeB = kc*cols;
    [all...]

Completed in 487 milliseconds

1 2 3 4 5 6 78 91011>>