HomeSort by relevance Sort by last modified time
    Searched full:endl (Results 251 - 275 of 1422) sorted by null

<<11121314151617181920>>

  /external/eigen/doc/examples/
tut_arithmetic_matrix_mul.cpp 11 std::cout << "Here is mat*mat:\n" << mat*mat << std::endl; member in class:std
12 std::cout << "Here is mat*u:\n" << mat*u << std::endl; member in class:std
13 std::cout << "Here is u^T*mat:\n" << u.transpose()*mat << std::endl; member in class:std
14 std::cout << "Here is u^T*v:\n" << u.transpose()*v << std::endl; member in class:std
15 std::cout << "Here is u*v^T:\n" << u*v.transpose() << std::endl; member in class:std
16 std::cout << "Let's multiply mat by itself" << std::endl; member in class:std
18 std::cout << "Now mat is mat:\n" << mat << std::endl; member in class:std
TemplateKeyword_flexible.cpp 17 std::cout << "m2 before copy:" << std::endl; member in class:std
18 std::cout << m2 << std::endl << std::endl; member in class:std
20 std::cout << "m2 after copy:" << std::endl; member in class:std
21 std::cout << m2 << std::endl << std::endl; member in class:std
TutorialLinAlgExSolveColPivHouseholderQR.cpp 13 cout << "Here is the matrix A:\n" << A << endl; local
14 cout << "Here is the vector b:\n" << b << endl; local
16 cout << "The solution is:\n" << x << endl; local
TutorialLinAlgExSolveLDLT.cpp 12 cout << "Here is the matrix A:\n" << A << endl; local
13 cout << "Here is the right hand side b:\n" << b << endl; local
15 cout << "The solution is:\n" << x << endl; local
TutorialLinAlgSVDSolve.cpp 10 cout << "Here is the matrix A:\n" << A << endl; local
12 cout << "Here is the right hand side b:\n" << b << endl; local
14 << A.jacobiSvd(ComputeThinU | ComputeThinV).solve(b) << endl;
TutorialLinAlgSelfAdjointEigenSolver.cpp 11 cout << "Here is the matrix A:\n" << A << endl; local
14 cout << "The eigenvalues of A are:\n" << eigensolver.eigenvalues() << endl;
17 << eigensolver.eigenvectors() << endl;
Tutorial_ArrayClass_accessors.cpp 16 cout << m << endl << endl; local
23 cout << m << endl; local
tut_arithmetic_dot_cross.cpp 11 cout << "Dot product: " << v.dot(w) << endl;
13 cout << "Dot product via a matrix product: " << dp << endl; local
14 cout << "Cross product:\n" << v.cross(w) << endl;
TutorialLinAlgRankRevealing.cpp 13 cout << "Here is the matrix A:\n" << A << endl; local
15 cout << "The rank of A is " << lu_decomp.rank() << endl;
17 << lu_decomp.kernel() << endl;
19 << lu_decomp.image(A) << endl; // yes, have to pass the original A
Tutorial_ReductionsVisitorsBroadcasting_maxnorm.cpp 15 std::cout << "Maximum sum at position " << maxIndex << std::endl; member in class:std
17 std::cout << "The corresponding vector is: " << std::endl; member in class:std
18 std::cout << mat.col( maxIndex ) << std::endl; member in class:std
19 std::cout << "And its sum is is: " << maxNorm << std::endl; member in class:std
tut_matrix_resize.cpp 11 << m.rows() << "x" << m.cols() << std::endl; member in class:std
12 std::cout << "It has " << m.size() << " coefficients" << std::endl; member in class:std
15 std::cout << "The vector v is of size " << v.size() << std::endl; member in class:std
17 << v.rows() << "x" << v.cols() << std::endl; member in class:std
  /test/vts/compilation_tools/vtsc/test/golden/DRIVER/
BluetoothHalV1.driver.cpp 15 cout << "Function: " << __func__ << " '" << func_name << "'" << endl; local
18 cout << "use hmi " << (uint64_t)hmi_ << endl; local
22 cerr << "both device_ and hmi_ are NULL." << endl; local
26 cout << "match" << endl; local
29 cout << "hit2." << device_ << endl; local
31 cerr << "api not set." << endl; local
34 cout << "Call an API." << endl; local
38 cout << "time " << (*measured)[0] << endl;
39 cout << "called" << endl; local
42 cerr << "func not found" << endl; local
49 cout << "Function: " << __func__ << " '" << func_name << "'" << endl; local
52 cout << "use hmi " << (uint64_t)hmi_ << endl; local
56 cerr << "both device_ and hmi_ are NULL." << endl; local
59 cerr << "attribute not found" << endl; local
    [all...]
  /frameworks/native/libs/ui/tools/
lutgen.cpp 37 cout << "lutgen -d SIZE -s SOURCE -t TARGET <lut file>" << endl; local
38 cout << endl; local
39 cout << "Generate a 3D LUT to convert between two color spaces." << endl; local
40 cout << endl; local
41 cout << "If <lut file> ends in .inc, data is generated without the array declaration." << endl; local
42 cout << endl; local
43 cout << "Options:" << endl; local
44 cout << " --help, -h" << endl; local
45 cout << " print this message" << endl; local
46 cout << " --dimension=, -d" << endl; local
47 cout << " the dimension of the 3D LUT. Example: 17 for a 17x17x17 LUT. 32 by default" << endl; local
48 cout << " --source=COLORSPACE, -s" << endl; local
49 cout << " the source color space, see below for available names. DisplayP3 by default" << endl; local
50 cout << " --target=COLORSPACE, -t" << endl; local
51 cout << " the target color space, see below for available names. extendedSRGB by default" << endl; local
52 cout << endl; local
53 cout << "Colorspace names:" << endl; local
54 cout << " sRGB" << endl; local
55 cout << " linearSRGB" << endl; local
56 cout << " extendedSRGB" << endl; local
57 cout << " linearExtendedSRGB" << endl; local
58 cout << " NTSC" << endl; local
59 cout << " BT709" << endl; local
60 cout << " BT2020" << endl; local
61 cout << " AdobeRGB" << endl; local
62 cout << " ProPhotoRGB" << endl; local
63 cout << " DisplayP3" << endl; local
64 cout << " DCIP3" << endl; local
65 cout << " ACES" << endl; local
66 cout << " ACEScg" << endl; local
148 outputStream << "\/\/ 3D LUT stored as an RGB16F texture, in GL order" << endl; local
149 outputStream << "\/\/ Size is " << gSize << "x" << gSize << "x" << gSize << endl; local
158 outputStream << "const size_t LUT_" << src << "_TO_" << dst << "_SIZE = " << gSize << endl; local
161 outputStream << "\/\/ From " << src << " to " << dst << endl; local
167 if (x % 4 == 0) outputStream << endl << " "; local
183 outputStream << endl << "}; \/\/ end LUT" << endl; local
186 outputStream << endl; local
190 cerr << "Could not write to file: " << filename << endl; local
    [all...]
  /external/eigen/doc/snippets/
Tutorial_Map_using.cpp 13 cout << "m1: " << m1 << endl; variable
14 cout << "m2: " << m2 << endl; variable
15 cout << "Squared euclidean distance: " << (m1-m2).squaredNorm() << endl;
17 (m1-m2map).squaredNorm() << endl;
19 cout << "Updated m2: " << m2 << endl; variable
20 cout << "m2 coefficient 2, constant accessor: " << m2mapconst(2) << endl;
GeneralizedEigenSolver.cpp 5 cout << "The (complex) numerators of the generalzied eigenvalues are: " << ges.alphas().transpose() << endl;
6 cout << "The (real) denominatore of the generalzied eigenvalues are: " << ges.betas().transpose() << endl;
7 cout << "The (complex) generalzied eigenvalues are (alphas./beta): " << ges.eigenvalues().transpose() << endl;
tut_arithmetic_redux_minmax.cpp 4 cout << "Here is the matrix m:\n" << m << endl; variable
10 cout << "Here is the vector v: " << v << endl; variable
12 << ") is at position " << i << endl; variable
Cwise_scalar_power_array.cpp 2 cout << "10^[" << e << "] = " << pow(10,e) << endl;
Map_outer_stride.cpp 3 cout << Map<MatrixXi, 0, OuterStride<> >(array, 3, 3, OuterStride<>(4)) << endl;
Map_simple.cpp 3 cout << Map<Matrix3i>(array) << endl;
MatrixBase_cast.cpp 3 cout << md + mf.cast<double>() << endl;
MatrixBase_operatorNorm.cpp 3 << ones.operatorNorm() << endl;
Matrix_resize_NoChange_int.cpp 3 cout << "m: " << m.rows() << " rows, " << m.cols() << " cols" << endl;
Matrix_resize_int_NoChange.cpp 3 cout << "m: " << m.rows() << " rows, " << m.cols() << " cols" << endl;
SelfAdjointView_operatorNorm.cpp 3 << ones.selfadjointView<Lower>().operatorNorm() << endl;
  /external/zlib/src/contrib/iostream/
test.cpp 12 os << "Hello, Mommy" << endl; local
15 os << "hello, hello, hi, ho!" << endl; local
18 << "I'm compressing again" << endl;

Completed in 840 milliseconds

<<11121314151617181920>>