Home
last modified time | relevance | path

Searched refs:endl (Results 1 – 25 of 814) sorted by relevance

12345678910>>...33

/external/ImageMagick/Magick++/tests/
Dattributes.cpp40 cout << "Line: " << __LINE__ << ", textAntiAlias default not true" << endl; in main()
48 cout << "Line: " << __LINE__ << ", textAntiAlias not false" << endl; in main()
56 cout << "Line: " << __LINE__ << ", textAntiAlias not true" << endl; in main()
68 << ", adjoin default not 'true' as expected" << endl; in main()
76 cout << "Line: " << __LINE__ << ", adjoin failed set to 'false'" << endl; in main()
84 cout << "Line: " << __LINE__ << ", adjoin failed set to 'true'" << endl; in main()
97 << ") not 0 as expected" << endl; in main()
106 << ", failed to set animationDelay to 0" << endl; in main()
115 << ", failed to set animationDelay to 100" << endl; in main()
130 << ") not 0 as expected" << endl; in main()
[all …]
/external/ImageMagick/Magick++/demo/
Ddemo.cpp43 cout << "Read images ..." << endl; in main()
57 cout << "Creating thumbnails..." << endl; in main()
73 cout << " add noise ..." << endl; in main()
78 cout << " add noise (blue) ..." << endl; in main()
83 cout << " annotate ..." << endl; in main()
94 cout << " blur ..." << endl; in main()
100 cout << " blur red channel ..." << endl; in main()
106 cout << " border ..." << endl; in main()
113 cout << " channel ..." << endl; in main()
119 cout << " charcoal ..." << endl; in main()
[all …]
/external/eigen/doc/examples/
DTutorialInplaceLU.cpp3 init() { std::cout << "[" << "init" << "]" << std::endl; } in init()
17 cout << "Here is the input matrix A before decomposition:\n" << A << endl; in main()
18 cout << "[init]" << endl; in main()
20 cout << "[declaration]" << endl; in main()
22 cout << "Here is the input matrix A after decomposition:\n" << A << endl; in main()
23 cout << "[declaration]" << endl; in main()
25 cout << "[matrixLU]" << endl; in main()
26 cout << "Here is the matrix storing the L and U factors:\n" << lu.matrixLU() << endl; in main()
27 cout << "[matrixLU]" << endl; in main()
29 cout << "[solve]" << endl; in main()
[all …]
DTutorial_ArrayClass_interop_matrix.cpp19 cout << "-- Matrix m*n: --" << endl << result << endl << endl; in main()
21 cout << "-- Array m*n: --" << endl << result << endl << endl; in main()
23 cout << "-- With cwiseProduct: --" << endl << result << endl << endl; in main()
25 cout << "-- Array m + 4: --" << endl << result << endl << endl; in main()
/external/gemmlowp/meta/
Dstreams.h127 << leftovers << std::endl; in Pack()
131 std::cerr << "FATAL: RowMajorWithSum::Pack not implemented." << std::endl; in Pack()
158 std::cout << "RowMajor(" << typeid(InType).name() << ")" << std::endl; in Debug()
160 << leftovers << std::endl; in Debug()
161 std::cout << " scratch: " << Scratch(params) << std::endl; in Debug()
162 std::cout << " unpacked advance: " << UnpackedAdvance(params) << std::endl; in Debug()
163 std::cout << " packed advance: " << PackedAdvance(params) << std::endl; in Debug()
164 std::cout << " unpacked stride: " << UnpackedStride(params) << std::endl; in Debug()
165 std::cout << " packed stride: " << PackedStride(params) << std::endl; in Debug()
166 std::cout << " params:" << std::endl; in Debug()
[all …]
Dquantized_mul_kernels.h47 << "x" << k << std::endl; in Multiply()
52 << "implemented." << std::endl; in Multiply()
63 << std::endl; in Debug()
64 std::cout << " params:" << std::endl; in Debug()
66 << params.kernel.multiplicative_offset << std::endl; in Debug()
68 << std::endl; in Debug()
69 std::cout << " kernel.shift: " << params.kernel.shift << std::endl; in Debug()
70 std::cout << " kernel.count: " << params.kernel.count << std::endl; in Debug()
72 << std::endl; in Debug()
96 << "x" << k << std::endl; in Multiply()
[all …]
/external/eigen/doc/snippets/
DComplexEigenSolver_compute.cpp2 cout << "Here is a random 4x4 matrix, A:" << endl << A << endl << endl;
6 cout << "The eigenvalues of A are:" << endl << ces.eigenvalues() << endl;
7 cout << "The matrix of eigenvectors, V, is:" << endl << ces.eigenvectors() << endl << endl;
10 cout << "Consider the first eigenvalue, lambda = " << lambda << endl;
12 cout << "If v is the corresponding eigenvector, then lambda * v = " << endl << lambda * v << endl;
13 cout << "... and A * v = " << endl << A * v << endl << endl;
15 cout << "Finally, V * D * V^(-1) = " << endl
16 << ces.eigenvectors() * ces.eigenvalues().asDiagonal() * ces.eigenvectors().inverse() << endl;
DSelfAdjointEigenSolver_SelfAdjointEigenSolver_MatrixType.cpp3 cout << "Here is a random symmetric 5x5 matrix, A:" << endl << A << endl << endl;
6 cout << "The eigenvalues of A are:" << endl << es.eigenvalues() << endl;
7 cout << "The matrix of eigenvectors, V, is:" << endl << es.eigenvectors() << endl << endl;
10 cout << "Consider the first eigenvalue, lambda = " << lambda << endl;
12 cout << "If v is the corresponding eigenvector, then lambda * v = " << endl << lambda * v << endl;
13 cout << "... and A * v = " << endl << A * v << endl << endl;
17 cout << "Finally, V * D * V^(-1) = " << endl << V * D * V.inverse() << endl;
DSelfAdjointEigenSolver_SelfAdjointEigenSolver_MatrixType2.cpp3 cout << "Here is a random symmetric matrix, A:" << endl << A << endl;
6 cout << "and a random postive-definite matrix, B:" << endl << B << endl << endl;
9 cout << "The eigenvalues of the pencil (A,B) are:" << endl << es.eigenvalues() << endl;
10 cout << "The matrix of eigenvectors, V, is:" << endl << es.eigenvectors() << endl << endl;
13 cout << "Consider the first eigenvalue, lambda = " << lambda << endl;
15 cout << "If v is the corresponding eigenvector, then A * v = " << endl << A * v << endl;
16 cout << "... and lambda * B * v = " << endl << lambda * B * v << endl << endl;
DEigenSolver_EigenSolver_MatrixType.cpp2 cout << "Here is a random 6x6 matrix, A:" << endl << A << endl << endl;
5 cout << "The eigenvalues of A are:" << endl << es.eigenvalues() << endl;
6 cout << "The matrix of eigenvectors, V, is:" << endl << es.eigenvectors() << endl << endl;
9 cout << "Consider the first eigenvalue, lambda = " << lambda << endl;
11 cout << "If v is the corresponding eigenvector, then lambda * v = " << endl << lambda * v << endl;
12 cout << "... and A * v = " << endl << A.cast<complex<double> >() * v << endl << endl;
16 cout << "Finally, V * D * V^(-1) = " << endl << V * D * V.inverse() << endl;
DHouseholderSequence_HouseholderSequence.cpp2 cout << "The matrix v is:" << endl;
3 cout << v << endl;
6 cout << "The first Householder vector is: v_0 = " << v0.transpose() << endl;
8 cout << "The second Householder vector is: v_1 = " << v1.transpose() << endl;
10 cout << "The third Householder vector is: v_2 = " << v2.transpose() << endl;
13 cout << "The Householder coefficients are: h = " << h.transpose() << endl;
16 cout << "The first Householder reflection is represented by H_0 = " << endl;
17 cout << H0 << endl;
19 cout << "The second Householder reflection is represented by H_1 = " << endl;
20 cout << H1 << endl;
[all …]
DDirectionWise_hnormalized.cpp4 cout << "The matrix M is:" << endl << M << endl << endl;
5 cout << "M.colwise().hnormalized():" << endl << M.colwise().hnormalized() << endl << endl;
6 cout << "P*M:" << endl << P*M << endl << endl;
7 cout << "(P*M).colwise().hnormalized():" << endl << (P*M).colwise().hnormalized() << endl << endl;
DJacobiSVD_basic.cpp2 cout << "Here is the matrix m:" << endl << m << endl;
4 cout << "Its singular values are:" << endl << svd.singularValues() << endl;
5 …"Its left singular vectors are the columns of the thin U matrix:" << endl << svd.matrixU() << endl;
6 …Its right singular vectors are the columns of the thin V matrix:" << endl << svd.matrixV() << endl;
8 cout << "Now consider this rhs vector:" << endl << rhs << endl;
9 cout << "A least-squares solution of m*x = rhs is:" << endl << svd.solve(rhs) << endl;
DVectorwiseOp_homogeneous.cpp4 cout << "The matrix M is:" << endl << M << endl << endl;
5 cout << "M.colwise().homogeneous():" << endl << M.colwise().homogeneous() << endl << endl;
6 cout << "P * M.colwise().homogeneous():" << endl << P * M.colwise().homogeneous() << endl << endl;
7 …().homogeneous().hnormalized(): " << endl << (P * M.colwise().homogeneous()).colwise().hnormalized…
/external/eigen/bench/
Dbenchmark-blocking-sizes.cpp234 cout << "contents of /proc/cpuinfo:" << endl; in print_cpuinfo()
239 cout << line << endl; in print_cpuinfo()
243 cout << endl; in print_cpuinfo()
245 cout << "output of sysctl hw:" << endl; in print_cpuinfo()
247 cout << endl; in print_cpuinfo()
279 cerr << "usage: " << argv[0] << " <action> [options...]" << endl << endl; in show_usage_and_exit()
280 cerr << "available actions:" << endl << endl; in show_usage_and_exit()
282 cerr << " " << (*it)->invokation_name() << endl; in show_usage_and_exit()
284 cerr << endl; in show_usage_and_exit()
285 cerr << "options:" << endl << endl; in show_usage_and_exit()
[all …]
Danalyze-blocking-sizes.cpp92 cerr << "couldn't open input file: " << filename << endl; in inputfile_t()
135 cerr << "ill-formed input file: " << filename << endl; in inputfile_t()
136 cerr << "offending line:" << endl << line << endl; in inputfile_t()
163 cerr << "ill-formed input file: " << filename << endl; in inputfile_t()
164 cerr << "offending line:" << endl << line << endl; in inputfile_t()
185 cerr << "Unrecognized input file " << filename << endl; in inputfile_t()
189 cerr << "didn't find any measurements in input file: " << filename << endl; in inputfile_t()
241 cerr << "Unexpected ordering of entries in " << filename << endl; in import_input_file_range_one_product_size()
242 …Expected all entries for product size " << hex << product_size << dec << " to be grouped)" << endl; in import_input_file_range_one_product_size()
273 << endl; in check_all_files_in_same_exact_order()
[all …]
/external/libcxxabi/test/
Dtest_fallback_malloc.pass.cpp73 std::cout << "Constant exhaustion tests" << std::endl; in exhaustion_test1()
77 std::cout << "Allocated " << ptrs.size () << " 32 byte chunks" << std::endl; in exhaustion_test1()
82 std::cout << "----" << std::endl; in exhaustion_test1()
86 std::cout << "Allocated " << ptrs.size () << " 32 byte chunks" << std::endl; in exhaustion_test1()
90 std::cout << "----" << std::endl; in exhaustion_test1()
94 std::cout << "Allocated " << ptrs.size () << " 32 byte chunks" << std::endl; in exhaustion_test1()
104 std::cout << "Growing exhaustion tests" << std::endl; in exhaustion_test2()
108 …:cout << "Allocated " << ptrs.size () << " { 32, 48, 72, 108, 162 ... } byte chunks" << std::endl; in exhaustion_test2()
113 std::cout << "----" << std::endl; in exhaustion_test2()
118 …:cout << "Allocated " << ptrs.size () << " { 32, 48, 72, 108, 162 ... } byte chunks" << std::endl; in exhaustion_test2()
[all …]
/external/eigen/bench/btl/data/
Dmean.cxx109 cout << "<TABLE BORDER CELLPADDING=2>" << endl ; in main()
110 cout << " <TR>" << endl ; in main()
111 cout << " <TH ALIGN=CENTER> " << argv[1] << " </TH>" << endl ; in main()
112 …TH ALIGN=CENTER> <a href=""#mean_marker""> in cache <BR> mean perf <BR> Mflops </a></TH>" << endl ; in main()
113 cout << " <TH ALIGN=CENTER> in cache <BR> % best </TH>" << endl ; in main()
114 …LIGN=CENTER> <a href=""#mean_marker""> out of cache <BR> mean perf <BR> Mflops </a></TH>" << endl ; in main()
115 cout << " <TH ALIGN=CENTER> out of cache <BR> % best </TH>" << endl ; in main()
116 cout << " <TH ALIGN=CENTER> details </TH>" << endl ; in main()
117 cout << " <TH ALIGN=CENTER> comments </TH>" << endl ; in main()
118 cout << " </TR>" << endl ; in main()
[all …]
/external/eigen/unsupported/doc/examples/
DPolynomialSolver1.cpp13 cout << "Roots: " << roots.transpose() << endl; in main()
18 cout << "Complex roots: " << psolve.roots().transpose() << endl; in main()
23 cout << "Real roots: " << mapRR.transpose() << endl; in main()
25 cout << endl; in main()
26 cout << "Illustration of the convergence problem with the QR algorithm: " << endl; in main()
27 cout << "---------------------------------------------------------------" << endl; in main()
31 cout << "Hard case polynomial defined by floats: " << hardCase_polynomial.transpose() << endl; in main()
33 cout << "Complex roots: " << psolvef.roots().transpose() << endl; in main()
36 …< "Norms of the evaluations of the polynomial at the roots: " << evals.transpose() << endl << endl; in main()
38 cout << "Using double's almost always solves the problem for small degrees: " << endl; in main()
[all …]
/external/eigen/unsupported/bench/
Dbench_svd.cpp42 cout << " Only compute Singular Values" <<endl; in bench_svd()
61 cout << " || " << " BDC : " << timerBDC.value() << "s " <<endl <<endl; in bench_svd()
64 …< "KO : BDC is " << timerJacobi.value() / timerBDC.value() << " times faster than Jacobi" <<endl; in bench_svd()
66 …< "OK : BDC is " << timerJacobi.value() / timerBDC.value() << " times faster than Jacobi" <<endl; in bench_svd()
69 cout << " =================" <<endl; in bench_svd()
70 std::cout<< std::endl; in bench_svd()
73 cout << " Computes rotaion matrix" <<endl; in bench_svd()
92 cout << " || " << " BDC : " << timerBDC.value() << "s " <<endl <<endl; in bench_svd()
95 …< "KO : BDC is " << timerJacobi.value() / timerBDC.value() << " times faster than Jacobi" <<endl; in bench_svd()
97 …< "OK : BDC is " << timerJacobi.value() / timerBDC.value() << " times faster than Jacobi" <<endl; in bench_svd()
[all …]
/external/lzma/CPP/7zip/UI/Console/
DMain.cpp180 *g_ErrStream << endl << "ERROR: " << message << endl; in ShowMessageAndThrowException()
249 so << NError::MyFormatMessage(pc.Codes[i]) << endl; in PrintWarningsPaths()
251 so << "----------------" << endl; in PrintWarningsPaths()
266 *se << endl; in WarningsCheck()
267 *se << "Scan WARNINGS for files and folders:" << endl << endl; in WarningsCheck()
270 *se << endl; in WarningsCheck()
315 *so << kEverythingIsOk << endl; in WarningsCheck()
322 *se << endl; in WarningsCheck()
323 *se << "WARNINGS for files:" << endl << endl; in WarningsCheck()
328 *se << endl; in WarningsCheck()
[all …]
DUpdateCallbackConsole.cpp65 *_se << endl; in OpenResult()
67 *_se << arc.Path << endl; in OpenResult()
79 *_se << "ERRORS:" << endl << er.ErrorMessage << endl; in OpenResult()
84 *_se << endl; in OpenResult()
95 *_so << endl; in OpenResult()
97 *_so << arc.Path << endl; in OpenResult()
109 *_so << "WARNINGS:" << endl << er.WarningMessage << endl; in OpenResult()
114 *_so << endl; in OpenResult()
137 *_so << endl; in OpenResult()
146 *_se << kError << name << endl; in OpenResult()
[all …]
DExtractCallbackConsole.cpp63 *_se << endl << kError << NError::MyFormatMessage(systemError) << endl << in ScanError()
64 fs2us(path) << endl << endl; in ScanError()
123 *_so << s << endl; in PrintStat()
213 *_so << kTab << "Path: " << path << endl; in PrintFileInfo()
218 *_so << kTab << "Size: " << s << endl; in PrintFileInfo()
226 *_so << kTab << "Modified: " << temp << endl; in PrintFileInfo()
243 *_so << endl << "Would you like to replace the existing file:\n"; in AskOverwrite()
264 *_so << endl; in AskOverwrite()
306 *_so << endl; in PrepareOperation()
343 *_se << kError << message << endl; in MessageError()
[all …]
/external/webrtc/webrtc/modules/audio_coding/neteq/test/
Daudio_classifier_test.cc27 << std::endl << std::endl; in main()
31 << std::endl; in main()
33 << std::endl; in main()
40 std::cout << "Disallowed number of channels " << channels << std::endl; in main()
46 std::cout << "Disallowed number of outputs " << outputs << std::endl; in main()
56 std::cout << "Input file: " << input_filename << std::endl; in main()
57 std::cout << "Output file: " << output_filename << std::endl; in main()
61 std::cout << "Cannot open input file " << input_filename << std::endl; in main()
67 std::cout << "Cannot open output file " << output_filename << std::endl; in main()
78 std::cout << "Error writing." << std::endl; in main()
[all …]
/external/icu/icu4c/source/tools/tzcode/
Dtz2icu.cpp497 cerr << os.str() << "; using 0" << endl; in readzoneinfo()
509 cerr << "Warning: unused abbreviation: " << ii << endl; in readzoneinfo()
613 cerr << "Error: Invalid directory: " << dirname << endl; in scandir()
629 << e.what() << endl; in scandir()
654 cerr << "Error: Invalid directory: " << dir << endl; in scandir()
658 cerr << "Error: Directory name too long" << endl; in scandir()
680 << e.what() << endl; in scandir()
693 << e.what() << endl; in scandir()
1024 os << ":table {" << endl; in print()
1026 os << ":array {" << endl; in print()
[all …]

12345678910>>...33