/external/e2fsprogs/tests/f_h_reindex/ |
D | expect.1 | 5 Problem in HTREE directory inode 16001: block #1 has bad max hash 6 Problem in HTREE directory inode 16001: block #2 has bad min hash 7 Problem in HTREE directory inode 16001: block #2 has bad max hash 8 Problem in HTREE directory inode 16001: block #3 has bad min hash 9 Problem in HTREE directory inode 16001: block #3 has bad max hash 10 Problem in HTREE directory inode 16001: block #4 has bad min hash 11 Problem in HTREE directory inode 16001: block #4 has bad max hash 12 Problem in HTREE directory inode 16001: block #5 has bad min hash 13 Problem in HTREE directory inode 16001: block #5 has bad max hash 14 Problem in HTREE directory inode 16001: block #6 has bad min hash [all …]
|
/external/ceres-solver/internal/ceres/ |
D | problem.cc | 40 Problem::Problem() : problem_impl_(new internal::ProblemImpl) {} in Problem() function in ceres::Problem 41 Problem::Problem(const Problem::Options& options) in Problem() function in ceres::Problem 43 Problem::~Problem() {} in ~Problem() 45 ResidualBlockId Problem::AddResidualBlock( in AddResidualBlock() 54 ResidualBlockId Problem::AddResidualBlock( in AddResidualBlock() 63 ResidualBlockId Problem::AddResidualBlock( in AddResidualBlock() 72 ResidualBlockId Problem::AddResidualBlock( in AddResidualBlock() 81 ResidualBlockId Problem::AddResidualBlock( in AddResidualBlock() 90 ResidualBlockId Problem::AddResidualBlock( in AddResidualBlock() 99 ResidualBlockId Problem::AddResidualBlock( in AddResidualBlock() [all …]
|
D | problem_test.cc | 119 TEST(Problem, AddResidualWithNullCostFunctionDies) { in TEST() argument 122 Problem problem; in TEST() 131 TEST(Problem, AddResidualWithIncorrectNumberOfParameterBlocksDies) { in TEST() argument 134 Problem problem; in TEST() 145 TEST(Problem, AddResidualWithDifferentSizesOnTheSameVariableDies) { in TEST() argument 148 Problem problem; in TEST() 156 TEST(Problem, AddResidualWithDuplicateParametersDies) { in TEST() argument 159 Problem problem; in TEST() 169 TEST(Problem, AddResidualWithIncorrectSizesOfParameterBlockDies) { in TEST() argument 172 Problem problem; in TEST() [all …]
|
D | c_api.cc | 47 using ceres::Problem; 57 return reinterpret_cast<ceres_problem_t*>(new Problem); in ceres_create_problem() 61 delete reinterpret_cast<Problem*>(problem); in ceres_free_problem() 151 Problem* ceres_problem = reinterpret_cast<Problem*>(problem); in ceres_problem_add_residual_block() 175 Problem* problem = reinterpret_cast<Problem*>(c_problem); in ceres_solve()
|
D | problem_impl.h | 68 explicit ProblemImpl(const Problem::Options& options); 131 bool Evaluate(const Problem::EvaluateOptions& options, 169 const Problem::Options options_;
|
D | system_test.cc | 154 ->Evaluate(Problem::EvaluateOptions(), in RunSolversAndCheckTheyMatch() 227 Problem* mutable_problem() { return &problem_; } in mutable_problem() 278 Problem problem_; 329 Problem* mutable_problem() { return &problem_; } in mutable_problem() 469 Problem problem_;
|
/external/chromium_org/courgette/ |
D | courgette_tool.cc | 41 void Problem(const char* format, ...) { in Problem() function 53 Problem("Can't read %s file.", kind); in ReadOrFail() 57 Problem("Can't read %s file.", kind); in ReadOrFail() 68 Problem("Can't write output."); in WriteSinkToFile() 70 Problem("Incomplete write."); in WriteSinkToFile() 83 Problem("Can't parse input."); in Disassemble() 91 Problem("Can't encode program."); in Disassemble() 98 Problem("Can't serialize encoded program."); in Disassemble() 104 Problem("Can't combine serialized encoded program streams."); in Disassemble() 166 Problem("Can't parse program input."); in DisassembleAndAdjust() [all …]
|
D | courgette_minimal_tool.cc | 29 void Problem(const char* message) { in Problem() function 46 if (status == courgette::C_READ_OPEN_ERROR) Problem("Can't open file."); 47 if (status == courgette::C_WRITE_OPEN_ERROR) Problem("Can't open file."); 48 if (status == courgette::C_READ_ERROR) Problem("Can't read from file."); 49 if (status == courgette::C_WRITE_ERROR) Problem("Can't write to file."); 50 Problem("patch failed.");
|
/external/e2fsprogs/tests/f_h_badnode/ |
D | expect.1 | 3 Problem in HTREE directory inode 12929: block #531 has bad max hash 4 Problem in HTREE directory inode 12929: block #993 referenced twice 5 Problem in HTREE directory inode 12929: block #1061 has bad min hash 6 Problem in HTREE directory inode 12929: block #1062 has invalid depth (2) 7 Problem in HTREE directory inode 12929: block #1062 has bad max hash 8 Problem in HTREE directory inode 12929: block #1062 not referenced
|
/external/e2fsprogs/tests/f_h_badroot/ |
D | expect.1 | 20 Problem in HTREE directory inode 80065: block #0 has an unordered hash table 23 Problem in HTREE directory inode 86737: block #0 has invalid limit (511) 26 Problem in HTREE directory inode 93409: block #0 has invalid count (234) 29 Problem in HTREE directory inode 73393: block #1 has bad min hash 30 Problem in HTREE directory inode 73393: block #2 has bad max hash
|
/external/ceres-solver/include/ceres/ |
D | problem.h | 120 class Problem { 167 Problem(); 168 explicit Problem(const Options& options); 170 ~Problem(); 428 CERES_DISALLOW_COPY_AND_ASSIGN(Problem);
|
D | covariance.h | 42 class Problem; variable 397 Problem* problem);
|
D | solver.h | 46 class Problem; variable 817 Problem* problem, 823 Problem* problem,
|
/external/ceres-solver/examples/ |
D | helloworld_numeric_diff.cc | 40 using ceres::Problem; 61 Problem problem; in main()
|
D | helloworld.cc | 41 using ceres::Problem; 65 Problem problem; in main()
|
D | helloworld_analytic_diff.cc | 41 using ceres::Problem; 90 Problem problem; in main()
|
D | quadratic.cc | 41 using ceres::Problem; 76 Problem problem; in main()
|
D | quadratic_auto_diff.cc | 43 using ceres::Problem; 68 Problem problem; in main()
|
D | quadratic_numeric_diff.cc | 42 using ceres::Problem; 70 Problem problem; in main()
|
D | robust_curve_fitting.cc | 119 using ceres::Problem; 145 Problem problem; in main()
|
D | data_fitting.cc | 36 using ceres::Problem; 145 Problem problem; in main()
|
D | curve_fitting.cc | 36 using ceres::Problem; 143 Problem problem; in main()
|
D | denoising.cc | 91 Problem* problem, in CreateProblem() 139 void SolveProblem(Problem* problem, PGMImage<double>* solution) { in SolveProblem() 209 ceres::Problem problem; in main()
|
/external/ceres-solver/docs/source/ |
D | modeling.rst | 78 by the :class:`Problem` when added with 79 :func:`Problem::AddResidualBlock`. 875 Problem problem; 1137 :class:`Problem` 1140 .. class:: Problem 1142 :class:`Problem` holds the robustified non-linear least squares 1144 the :func:`Problem::AddResidualBlock` and 1145 :func:`Problem::AddParameterBlock` methods. 1156 Problem problem; 1160 :func:`Problem::AddResidualBlock` as the name implies, adds a [all …]
|
/external/bison/lib/ |
D | argmatch.h | 61 # define invalid_arg(Context, Value, Problem) \ argument 62 argmatch_invalid (Context, Value, Problem)
|