Home
last modified time | relevance | path

Searched refs:cout (Results 1 – 25 of 766) sorted by relevance

12345678910>>...31

/external/gptfdisk/
Dgpttext.cc76 cout << "Found valid MBR and GPT. Which do you want to use?\n"; in UseWhichPartitions()
82 cout << "Using GPT and creating fresh protective MBR.\n"; in UseWhichPartitions()
90 cout << "Found valid MBR and corrupt GPT. Which do you want to use? (Using the\n" in UseWhichPartitions()
99 cout << "Found invalid MBR and corrupt GPT. What do you want to do? (Using the\n" in UseWhichPartitions()
126 cout << "Specified partition doesn't have a disklabel partition type " in XFormDisklabel()
165 cout << "Current partition table size is " << numParts << ".\n"; in ResizePartitionTable()
174 cout << "Caution: The partition table size should officially be 16KB or larger,\n" in ResizePartitionTable()
207 cout << "partition " << partNum + 1 << " is in use.\n"; in CreatePartition()
218 cout << "Information: Moved requested sector from " << origSector << " to " in CreatePartition()
222 cout << "Use 'l' on the experts' menu to adjust alignment\n"; in CreatePartition()
[all …]
Dgptpart.cc300 cout.fill(' ');
301 cout.width(4);
302 cout << partNum + 1 << " ";
303 cout.width(14);
304 cout << firstLBA << " ";
305 cout.width(14);
306 cout << lastLBA << " ";
307 cout << sizeInIeee << " ";
310 cout << " ";
311 cout.fill('0');
[all …]
Dgpt.cc180 cout << "\nProblem: The CRC for the main GPT header is invalid. The main GPT header may\n" in Verify()
187 cout << "\nProblem: The CRC for the main partition table is invalid. This table may be\n" in Verify()
194 cout << "\nProblem: The CRC for the backup GPT header is invalid. The backup GPT header\n" in Verify()
201 cout << "\nCaution: The CRC for the backup partition table is invalid. This table may\n" in Verify()
209 cout << "\nProblem: The main header's self-pointer doesn't point to itself. This problem\n" in Verify()
216 cout << "\nProblem: The secondary header's self-pointer indicates that it doesn't reside\n" in Verify()
225 cout << "\nProblem: main GPT header's current LBA pointer (" << mainHeader.currentLBA in Verify()
231 cout << "\nProblem: main GPT header's backup LBA pointer (" << mainHeader.backupLBA in Verify()
238 cout << "\nProblem: main GPT header's first usable LBA pointer (" << mainHeader.firstUsableLBA in Verify()
244 cout << "\nProblem: main GPT header's last usable LBA pointer (" << mainHeader.lastUsableLBA in Verify()
[all …]
/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()
67 cout << "Line: " << __LINE__ 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()
95 cout << "Line: " << __LINE__ << ", animationDelay default (" in main()
105 cout << "Line: " << __LINE__ in main()
114 cout << "Line: " << __LINE__ in main()
127 cout << "Line: " << __LINE__ in main()
[all …]
Dexceptions.cpp23 cout << "Checking for working exceptions (may crash) ... "; in main()
24 cout.flush(); in main()
42 cout << "Throwing 'Magick::WarningResourceLimit' exception" << endl; in main()
43 cout.flush(); in main()
48 cout << "Successfully caught 'Magick::WarningResourceLimit' exception" << endl; in main()
49 cout.flush(); in main()
66 cout << "Throwing library 'Magick::Exception' exception" << endl; in main()
67 cout.flush(); in main()
72 cout << "Successfully caught library 'Magick::Exception' exception" << endl; in main()
73 cout.flush(); in main()
[all …]
/external/eigen/test/
Dfastmath.cpp14 std::cout << b; in check()
16 std::cout << " OK "; in check()
18 std::cout << " BAD "; in check()
37cout << "std::isfinite(" << m(3) << ") = "; check((std::isfinite)(m(3)),false); std::cout << " ; … in check_inf_nan()
38cout << "std::isinf(" << m(3) << ") = "; check((std::isinf)(m(3)),false); std::cout << " ; … in check_inf_nan()
39cout << "std::isnan(" << m(3) << ") = "; check((std::isnan)(m(3)),true); std::cout << " ; … in check_inf_nan()
40 std::cout << "allFinite: "; check(m.allFinite(), 0); std::cout << "\n"; in check_inf_nan()
41 std::cout << "hasNaN: "; check(m.hasNaN(), 1); std::cout << "\n"; in check_inf_nan()
42 std::cout << "\n"; in check_inf_nan()
56cout << "std::isfinite(" << m(4) << ") = "; check((std::isfinite)(m(4)),false); std::cout << " ; … in check_inf_nan()
[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 …]
/external/nos/test/system-test-harness/src/
Dutil.cc96 std::cout << "UltraDebug UART not found" << std::endl; in find_uart()
98 std::cout << "USING: " << return_value << std::endl; in find_uart()
133 std::cout << "CLOSING TEST HARNESS" << std::endl; in ~TestHarness()
232 std::cout << "SPI_TX: "; in SendSpi()
235 std::cout << "\nSPI_TX: "; in SendSpi()
237 print_bin(std::cout, c); in SendSpi()
240 std::cout << "\n"; in SendSpi()
241 std::cout.flush(); in SendSpi()
289 std::cout << "RX: "; in GetAhdlc()
300 std::cout << "\n"; in GetAhdlc()
[all …]
/external/gemmlowp/meta/
Dstreams.h125 std::cout << "RowMajor(" << std::string(typeid(InType).name()) in Pack()
158 std::cout << "RowMajor(" << typeid(InType).name() << ")" << std::endl; in Debug()
159 std::cout << " dims: " << lanes_count << "x" << pack_size << " + " 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()
167 std::cout << " count: " << params.count << std::endl; in Debug()
[all …]
/external/eigen/bench/
Dcheck_cache_queries.cpp13 std::cout << "The code " << CODE << " gives " \
20 cout << "Eigen's L1 = " << internal::queryL1CacheSize() << endl; in main()
21 cout << "Eigen's L2/L3 = " << internal::queryTopLevelCacheSize() << endl; in main()
24 cout << "Eigen's L1, L2, L3 = " << l1 << " " << l2 << " " << l3 << endl; in main()
38 cout << endl; in main()
39 cout << "vendor id = " << string_char << endl; in main()
40 cout << endl; in main()
44 cout << "Eigen's intel codes L1, L2, L3 = " << l1 << " " << l2 << " " << l3 << endl; in main()
48 cout << "Eigen's intel direct L1, L2, L3 = " << l1 << " " << l2 << " " << l3 << endl; in main()
51 cout << "Eigen's amd L1, L2, L3 = " << l1 << " " << l2 << " " << l3 << endl; in main()
[all …]
Ddense_solvers.cpp117 cout << sizes[k](0) << "x" << sizes[k](1) << "...\n"; in main()
121 cout.width(32); in main()
122 cout << "solver/size"; in main()
123 cout << " "; in main()
128 cout.width(10); cout << ss.str(); cout << " "; in main()
130 cout << endl; in main()
135 cout.width(32); cout << labels[i]; cout << " "; in main()
139 cout.width(10); in main()
140 if(r(k)>=1e6) cout << "-"; in main()
141 else cout << r(k); in main()
[all …]
/external/eigen/doc/snippets/
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 …]
/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 …std::cout << "Allocated " << ptrs.size () << " { 32, 48, 72, 108, 162 ... } byte chunks" << std::… in exhaustion_test2()
113 std::cout << "----" << std::endl; in exhaustion_test2()
118 …std::cout << "Allocated " << ptrs.size () << " { 32, 48, 72, 108, 162 ... } byte chunks" << std::… in exhaustion_test2()
[all …]
/external/webrtc/webrtc/modules/audio_coding/neteq/test/
Daudio_classifier_test.cc25 std::cout << "Usage: " << argv[0] << in main()
28 std::cout << "Where channels can be 1 (mono) or 2 (interleaved stereo),"; in main()
29 std::cout << " outputs can be 1 (classification (boolean)) or 2"; in main()
30 std::cout << " (classification and music probability (float))," in main()
32 std::cout << "and the sampling frequency is assumed to be 48 kHz." 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()
[all …]
/external/eigen/bench/spbench/
Dspbenchsolver.cpp5 cout<< " \nbenchsolver : performs a benchmark of all the solvers available in Eigen \n\n"; in bench_printhelp()
6 cout<< " MATRIX FOLDER : \n"; in bench_printhelp()
7cout<< " The matrices for the benchmark should be collected in a folder specified with an environm… in bench_printhelp()
8 cout<< " The matrices are stored using the matrix market coordinate format \n"; in bench_printhelp()
9 cout<< " The matrix and associated right-hand side (rhs) files are named respectively \n"; in bench_printhelp()
10cout<< " as MatrixName.mtx and MatrixName_b.mtx. If the rhs does not exist, a random one is genera… in bench_printhelp()
11 cout<< " If a matrix is SPD, the matrix should be named as MatrixName_SPD.mtx \n"; in bench_printhelp()
12 cout<< " If a true solution exists, it should be named as MatrixName_x.mtx; \n" ; in bench_printhelp()
13cout<< " it will be used to compute the norm of the error relative to the computed solutions\n\n"; in bench_printhelp()
14 cout<< " OPTIONS : \n"; in bench_printhelp()
[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()
112cout << " <TH ALIGN=CENTER> <a href=""#mean_marker""> in cache <BR> mean perf <BR> Mflops </a><… in main()
113 cout << " <TH ALIGN=CENTER> in cache <BR> % best </TH>" << endl ; in main()
114cout << " <TH ALIGN=CENTER> <a href=""#mean_marker""> out of cache <BR> mean perf <BR> Mflops <… 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/tensorflow/tensorflow/tools/graph_transforms/
Dsummarize_graph_main.cc58 std::cout << "(name=" << node->name(); in PrintNodeInfo()
59 std::cout << ", type=" << DataTypeString(dtype) << "(" << dtype << ")"; in PrintNodeInfo()
60 std::cout << ", shape=" << shape_description << ") "; in PrintNodeInfo()
111 std::cout << "To use with tensorflow/tools/benchmark:benchmark_model try " in PrintBenchmarkUsage()
114 std::cout << "bazel run tensorflow/tools/benchmark:benchmark_model --"; in PrintBenchmarkUsage()
115 std::cout << " --graph=" << graph_path; in PrintBenchmarkUsage()
116 std::cout << " --show_flops"; in PrintBenchmarkUsage()
117 std::cout << " --input_layer=" << input_layer_value; in PrintBenchmarkUsage()
118 std::cout << " --input_layer_type=" << input_layer_type_value; in PrintBenchmarkUsage()
119 std::cout << " --input_layer_shape=" << input_layer_shape_value; in PrintBenchmarkUsage()
[all …]
/external/eigen/unsupported/bench/
Dbench_svd.cpp42 cout << " Only compute Singular Values" <<endl; in bench_svd()
60cout << "Sample " << k << " : " << REPEAT << " computations : Jacobi : " << fixed << timerJacobi.… in bench_svd()
61 cout << " || " << " BDC : " << timerBDC.value() << "s " <<endl <<endl; in bench_svd()
64cout << "KO : BDC is " << timerJacobi.value() / timerBDC.value() << " times faster than Jacobi" … in bench_svd()
66cout << "OK : BDC is " << timerJacobi.value() / timerBDC.value() << " times faster than Jacobi" … 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()
91cout << "Sample " << k << " : " << REPEAT << " computations : Jacobi : " << fixed << timerJacobi.… in bench_svd()
92 cout << " || " << " BDC : " << timerBDC.value() << "s " <<endl <<endl; in bench_svd()
[all …]
/external/protobuf/gtest/test/
Dgtest_env_var_test_.cc43 using ::std::cout;
55 cout << GTEST_FLAG(break_on_failure); in PrintFlag()
60 cout << GTEST_FLAG(catch_exceptions); in PrintFlag()
65 cout << GTEST_FLAG(color); in PrintFlag()
70 cout << GTEST_FLAG(death_test_style); in PrintFlag()
75 cout << GTEST_FLAG(death_test_use_fork); in PrintFlag()
80 cout << GTEST_FLAG(filter); in PrintFlag()
85 cout << GTEST_FLAG(output); in PrintFlag()
90 cout << GTEST_FLAG(print_time); in PrintFlag()
95 cout << GTEST_FLAG(repeat); in PrintFlag()
[all …]
/external/v8/testing/gtest/test/
Dgtest_env_var_test_.cc43 using ::std::cout;
55 cout << GTEST_FLAG(break_on_failure); in PrintFlag()
60 cout << GTEST_FLAG(catch_exceptions); in PrintFlag()
65 cout << GTEST_FLAG(color); in PrintFlag()
70 cout << GTEST_FLAG(death_test_style); in PrintFlag()
75 cout << GTEST_FLAG(death_test_use_fork); in PrintFlag()
80 cout << GTEST_FLAG(filter); in PrintFlag()
85 cout << GTEST_FLAG(output); in PrintFlag()
90 cout << GTEST_FLAG(print_time); in PrintFlag()
95 cout << GTEST_FLAG(repeat); in PrintFlag()
[all …]
/external/vulkan-validation-layers/tests/gtest-1.7.0/test/
Dgtest_env_var_test_.cc43 using ::std::cout;
55 cout << GTEST_FLAG(break_on_failure); in PrintFlag()
60 cout << GTEST_FLAG(catch_exceptions); in PrintFlag()
65 cout << GTEST_FLAG(color); in PrintFlag()
70 cout << GTEST_FLAG(death_test_style); in PrintFlag()
75 cout << GTEST_FLAG(death_test_use_fork); in PrintFlag()
80 cout << GTEST_FLAG(filter); in PrintFlag()
85 cout << GTEST_FLAG(output); in PrintFlag()
90 cout << GTEST_FLAG(print_time); in PrintFlag()
95 cout << GTEST_FLAG(repeat); in PrintFlag()
[all …]
/external/google-breakpad/src/testing/gtest/test/
Dgtest_env_var_test_.cc43 using ::std::cout;
55 cout << GTEST_FLAG(break_on_failure); in PrintFlag()
60 cout << GTEST_FLAG(catch_exceptions); in PrintFlag()
65 cout << GTEST_FLAG(color); in PrintFlag()
70 cout << GTEST_FLAG(death_test_style); in PrintFlag()
75 cout << GTEST_FLAG(death_test_use_fork); in PrintFlag()
80 cout << GTEST_FLAG(filter); in PrintFlag()
85 cout << GTEST_FLAG(output); in PrintFlag()
90 cout << GTEST_FLAG(print_time); in PrintFlag()
95 cout << GTEST_FLAG(repeat); in PrintFlag()
[all …]
/external/googletest/googletest/test/
Dgtest_env_var_test_.cc43 using ::std::cout;
55 cout << GTEST_FLAG(break_on_failure); in PrintFlag()
60 cout << GTEST_FLAG(catch_exceptions); in PrintFlag()
65 cout << GTEST_FLAG(color); in PrintFlag()
70 cout << GTEST_FLAG(death_test_style); in PrintFlag()
75 cout << GTEST_FLAG(death_test_use_fork); in PrintFlag()
80 cout << GTEST_FLAG(filter); in PrintFlag()
85 cout << GTEST_FLAG(output); in PrintFlag()
90 cout << GTEST_FLAG(print_time); in PrintFlag()
95 cout << GTEST_FLAG(repeat); in PrintFlag()
[all …]
/external/xmlrpcpp/test/
DHelloClient.cpp21 std::cout << "\nMethods:\n " << result << "\n\n"; in main()
23 std::cout << "Error calling 'listMethods'\n\n"; in main()
29 std::cout << "Help for 'Hello' method: " << result << "\n\n"; in main()
31 std::cout << "Error calling 'methodHelp'\n\n"; in main()
35 std::cout << result << "\n\n"; in main()
37 std::cout << "Error calling 'Hello'\n\n"; in main()
42 std::cout << result << "\n\n"; in main()
44 std::cout << "Error calling 'HelloName'\n\n"; in main()
51 std::cout << "numbers.size() is " << numbers.size() << std::endl; in main()
53 std::cout << "Sum = " << double(result) << "\n\n"; in main()
[all …]

12345678910>>...31