Home
last modified time | relevance | path

Searched refs:problem (Results 1 – 25 of 965) sorted by relevance

12345678910>>...39

/external/ceres-solver/internal/ceres/
Dproblem_test.cc122 Problem problem; in TEST() local
123 problem.AddParameterBlock(x, 3); in TEST()
124 problem.AddParameterBlock(y, 4); in TEST()
125 problem.AddParameterBlock(z, 5); in TEST()
127 EXPECT_DEATH_IF_SUPPORTED(problem.AddResidualBlock(NULL, NULL, x), in TEST()
134 Problem problem; in TEST() local
135 problem.AddParameterBlock(x, 3); in TEST()
136 problem.AddParameterBlock(y, 4); in TEST()
137 problem.AddParameterBlock(z, 5); in TEST()
141 problem.AddResidualBlock(new UnaryCostFunction(2, 3), NULL, x, y), in TEST()
[all …]
Dsolver_impl_test.cc77 ProblemImpl problem; in TEST() local
82 problem.AddParameterBlock(&x, 1); in TEST()
83 problem.AddParameterBlock(&y, 1); in TEST()
84 problem.AddParameterBlock(&z, 1); in TEST()
85 problem.AddResidualBlock(new UnaryCostFunction(), NULL, &x); in TEST()
86 problem.AddResidualBlock(new BinaryCostFunction(), NULL, &x, &y); in TEST()
87 problem.AddResidualBlock(new TernaryCostFunction(), NULL, &x, &y, &z); in TEST()
96 Program program(*problem.mutable_program()); in TEST()
108 ProblemImpl problem; in TEST() local
111 problem.AddParameterBlock(&x, 1); in TEST()
[all …]
Devaluator_test.cc110 void EvaluateAndCompare(ProblemImpl *problem, in EvaluateAndCompare()
118 CreateEvaluator(problem->mutable_program())); in EvaluateAndCompare()
166 EvaluateAndCompare(&problem, in CheckAllEvaluationCombinations()
181 ProblemImpl problem; member
190 problem.AddResidualBlock(new ParameterIgnoringCostFunction<1, 3, 2, 3, 4>, in TEST_P()
218 problem.AddParameterBlock(x, 2); in TEST_P()
219 problem.AddParameterBlock(y, 3); in TEST_P()
220 problem.AddParameterBlock(z, 4); in TEST_P()
228 problem.AddResidualBlock(new ParameterIgnoringCostFunction<1, 3, 4, 3, 2>, in TEST_P()
263 problem.AddParameterBlock(a, 2); in TEST_P()
[all …]
Dlinear_least_squares_problems.cc84 LinearLeastSquaresProblem* problem = new LinearLeastSquaresProblem; in LinearLeastSquaresProblem0() local
87 problem->b.reset(new double[3]); in LinearLeastSquaresProblem0()
88 problem->D.reset(new double[2]); in LinearLeastSquaresProblem0()
90 problem->x.reset(new double[2]); in LinearLeastSquaresProblem0()
91 problem->x_D.reset(new double[2]); in LinearLeastSquaresProblem0()
113 problem->A.reset(A); in LinearLeastSquaresProblem0()
115 problem->b[0] = 8; in LinearLeastSquaresProblem0()
116 problem->b[1] = 18; in LinearLeastSquaresProblem0()
117 problem->b[2] = -18; in LinearLeastSquaresProblem0()
119 problem->x[0] = 2.0; in LinearLeastSquaresProblem0()
[all …]
Dc_api_test.cc143 ceres_problem_t* problem = ceres_create_problem(); in TEST() local
146 problem, in TEST()
157 ceres_solve(problem); in TEST()
162 ceres_free_problem(problem); in TEST()
197 ceres_problem_t* problem = ceres_create_problem(); in TEST() local
200 problem, in TEST()
211 ceres_solve(problem); in TEST()
217 ceres_free_problem(problem); in TEST()
Diterative_schur_complement_solver_test.cc62 scoped_ptr<LinearLeastSquaresProblem> problem( in SetUpProblem() local
65 CHECK_NOTNULL(problem.get()); in SetUpProblem()
66 A_.reset(down_cast<BlockSparseMatrix*>(problem->A.release())); in SetUpProblem()
67 b_.reset(problem->b.release()); in SetUpProblem()
68 D_.reset(problem->D.release()); in SetUpProblem()
72 num_eliminate_blocks_ = problem->num_eliminate_blocks; in SetUpProblem()
Dc_api.cc60 void ceres_free_problem(ceres_problem_t* problem) { in ceres_free_problem() argument
61 delete reinterpret_cast<Problem*>(problem); in ceres_free_problem()
142 ceres_problem_t* problem, in ceres_problem_add_residual_block() argument
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() local
186 ceres::Solve(options, problem, &summary); in ceres_solve()
Dblock_sparse_matrix_test.cc48 scoped_ptr<LinearLeastSquaresProblem> problem( in SetUp() local
50 CHECK_NOTNULL(problem.get()); in SetUp()
51 A_.reset(down_cast<BlockSparseMatrix*>(problem->A.release())); in SetUp()
53 problem.reset(CreateLinearLeastSquaresProblemFromId(1)); in SetUp()
54 CHECK_NOTNULL(problem.get()); in SetUp()
55 B_.reset(down_cast<TripletSparseMatrix*>(problem->A.release())); in SetUp()
/external/eclipse-windowbuilder/propertysheet/.settings/
Dorg.eclipse.jdt.core.prefs15 org.eclipse.jdt.core.compiler.problem.annotationSuperInterface=warning
16 org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
17 org.eclipse.jdt.core.compiler.problem.autoboxing=ignore
18 org.eclipse.jdt.core.compiler.problem.comparingIdentical=warning
19 org.eclipse.jdt.core.compiler.problem.deadCode=warning
20 org.eclipse.jdt.core.compiler.problem.deprecation=warning
21 org.eclipse.jdt.core.compiler.problem.deprecationInDeprecatedCode=disabled
22 org.eclipse.jdt.core.compiler.problem.deprecationWhenOverridingDeprecatedMethod=disabled
23 org.eclipse.jdt.core.compiler.problem.discouragedReference=warning
24 org.eclipse.jdt.core.compiler.problem.emptyStatement=ignore
[all …]
/external/openssh/
Dauth-krb5.c61 krb5_error_code problem; in krb5_init() local
64 problem = krb5_init_context(&authctxt->krb5_ctx); in krb5_init()
65 if (problem) in krb5_init()
66 return (problem); in krb5_init()
78 krb5_error_code problem; in auth_krb5_password() local
89 problem = krb5_init(authctxt); in auth_krb5_password()
90 if (problem) in auth_krb5_password()
93 problem = krb5_parse_name(authctxt->krb5_ctx, client, in auth_krb5_password()
95 if (problem) in auth_krb5_password()
99 problem = krb5_cc_gen_new(authctxt->krb5_ctx, &krb5_mcc_ops, &ccache); in auth_krb5_password()
[all …]
Dgss-serv-krb5.c66 krb5_error_code problem; in ssh_gssapi_krb5_init() local
71 problem = krb5_init_context(&krb_context); in ssh_gssapi_krb5_init()
72 if (problem) { in ssh_gssapi_krb5_init()
119 krb5_error_code problem; in ssh_gssapi_krb5_storecreds() local
133 if ((problem = krb5_cc_gen_new(krb_context, &krb5_fcc_ops, &ccache))) { in ssh_gssapi_krb5_storecreds()
135 krb5_get_err_text(krb_context, problem)); in ssh_gssapi_krb5_storecreds()
139 if ((problem = ssh_krb5_cc_gen(krb_context, &ccache))) { in ssh_gssapi_krb5_storecreds()
141 krb5_get_err_text(krb_context, problem)); in ssh_gssapi_krb5_storecreds()
146 if ((problem = krb5_parse_name(krb_context, in ssh_gssapi_krb5_storecreds()
149 krb5_get_err_text(krb_context, problem)); in ssh_gssapi_krb5_storecreds()
[all …]
/external/e2fsprogs/po/
De2fsprogs.pot7 #. The strings in e2fsck's problem.c can be very hard to translate,
12 #. the @-expansion, for the strings in the problem.c file.
22 #. The second expansion which is done for e2fsck's problem.c messages is
590 #: e2fsck/problem.c:50
594 #: e2fsck/problem.c:51
598 #: e2fsck/problem.c:52
602 #: e2fsck/problem.c:53
606 #: e2fsck/problem.c:54
610 #: e2fsck/problem.c:55
614 #: e2fsck/problem.c:56
[all …]
Dzh_CN.po5 #. The strings in e2fsck's problem.c can be very hard to translate,
10 #. the @-expansion, for the strings in the problem.c file.
20 #. The second expansion which is done for e2fsck's problem.c messages is
590 #: e2fsck/problem.c:50
595 #: e2fsck/problem.c:51
599 #: e2fsck/problem.c:52
603 #: e2fsck/problem.c:53
607 #: e2fsck/problem.c:54
611 #: e2fsck/problem.c:55
615 #: e2fsck/problem.c:56
[all …]
Dsv.po8 #. The strings in e2fsck's problem.c can be very hard to translate,
13 #. the @-expansion, for the strings in the problem.c file.
23 #. The second expansion which is done for e2fsck's problem.c messages is
607 #: e2fsck/problem.c:50
611 #: e2fsck/problem.c:51
615 #: e2fsck/problem.c:52
619 #: e2fsck/problem.c:53
623 #: e2fsck/problem.c:54
627 #: e2fsck/problem.c:55
631 #: e2fsck/problem.c:56
[all …]
Dde.po8 #. The strings in e2fsck's problem.c can be very hard to translate,
13 #. the @-expansion, for the strings in the problem.c file.
23 #. The second expansion which is done for e2fsck's problem.c messages is
593 #: e2fsck/problem.c:50
597 #: e2fsck/problem.c:51
601 #: e2fsck/problem.c:52
605 #: e2fsck/problem.c:53
609 #: e2fsck/problem.c:54
613 #: e2fsck/problem.c:55
617 #: e2fsck/problem.c:56
[all …]
/external/chromium/chrome/browser/resources/gpu_internals/
Dinfo_view.js129 var problem = gpuInfo.featureStatus.problems[i];
130 var problemEl = this.createProblemEl_(problem);
172 createProblemEl_: function(problem) { argument
178 desc.textContent = problem.description;
182 if (problem.crBugs.length + problem.webkitBugs.length > 0) {
192 for (j = 0; j < problem.crBugs.length; ++j) {
200 var bugid = parseInt(problem.crBugs[j]);
207 for (j = 0; j < problem.webkitBugs.length; ++j) {
215 var bugid = parseInt(problem.webkitBugs[j]);
/external/ceres-solver/examples/
Dcurve_fitting.c160 ceres_problem_t* problem; in main() local
165 problem = ceres_create_problem(); in main()
170 problem, in main()
181 ceres_solve(problem); in main()
182 ceres_free_problem(problem); in main()
Dpowell.cc110 Problem problem; in main() local
114 problem.AddResidualBlock(new AutoDiffCostFunction<F1, 1, 1, 1>(new F1), in main()
117 problem.AddResidualBlock(new AutoDiffCostFunction<F2, 1, 1, 1>(new F2), in main()
120 problem.AddResidualBlock(new AutoDiffCostFunction<F3, 1, 1, 1>(new F3), in main()
123 problem.AddResidualBlock(new AutoDiffCostFunction<F4, 1, 1, 1>(new F4), in main()
145 Solve(options, &problem, &summary); in main()
Ddenoising.cc91 Problem* problem, in CreateProblem() argument
100 problem->AddResidualBlock(cost_function, in CreateProblem()
129 problem->AddResidualBlock(cost_function[alpha_index], in CreateProblem()
139 void SolveProblem(Problem* problem, PGMImage<double>* solution) { in SolveProblem() argument
157 ceres::Solve(options, problem, &summary); in SolveProblem()
209 ceres::Problem problem; in main() local
210 CreateProblem(foe, image, &problem, &solution); in main()
212 SolveProblem(&problem, &solution); in main()
/external/oauth/core/src/main/java/net/oauth/
DSimpleOAuthValidator.java78 OAuthProblemException problem = new OAuthProblemException("version_rejected"); in validateVersion() local
79 problem.setParameter("oauth_acceptable_versions", minVersion + "-" + maxVersion); in validateVersion()
80 throw problem; in validateVersion()
94 OAuthProblemException problem = new OAuthProblemException("timestamp_refused"); in validateTimestampAndNonce() local
95 problem.setParameter("oauth_acceptable_timestamps", min + "-" + max); in validateTimestampAndNonce()
96 throw problem; in validateTimestampAndNonce()
/external/chromium_org/third_party/libaddressinput/chromium/cpp/src/
Daddress_problem.cc43 std::ostream& operator<<(std::ostream& o, const AddressProblem& problem) { in operator <<() argument
44 o << "[" << problem.field << ", " in operator <<()
45 << problem.type << ", \"" in operator <<()
46 << problem.description << "\"]"; in operator <<()
/external/chromium_org/content/browser/resources/gpu/
Dinfo_view.js192 var problem = gpuInfo.featureStatus.problems[i];
193 var problemEl = this.createProblemEl_(problem);
255 createProblemEl_: function(problem) { argument
261 desc.textContent = problem.description;
265 if (problem.crBugs.length + problem.webkitBugs.length > 0) {
275 for (j = 0; j < problem.crBugs.length; ++j) {
283 var bugid = parseInt(problem.crBugs[j]);
290 for (j = 0; j < problem.webkitBugs.length; ++j) {
298 var bugid = parseInt(problem.webkitBugs[j]);
/external/e2fsprogs/e2fsck/
Dpass2.c350 int problem = 0; in check_dot() local
353 problem = PR_2_MISSING_DOT; in check_dot()
356 problem = PR_2_1ST_NOT_DOT; in check_dot()
358 problem = PR_2_DOT_NULL_TERM; in check_dot()
361 if (problem) { in check_dot()
362 if (fix_problem(ctx, problem, pctx)) { in check_dot()
407 int rec_len, problem = 0; in check_dotdot() local
410 problem = PR_2_MISSING_DOT_DOT; in check_dotdot()
414 problem = PR_2_2ND_NOT_DOT_DOT; in check_dotdot()
416 problem = PR_2_DOT_DOT_NULL_TERM; in check_dotdot()
[all …]
/external/chromium_org/chrome/common/metrics/
Dmetrics_service_base.cc40 base::HistogramBase::Inconsistency problem) { in InconsistencyDetected() argument
42 problem, base::HistogramBase::NEVER_EXCEEDED_VALUE); in InconsistencyDetected()
46 base::HistogramBase::Inconsistency problem) { in UniqueInconsistencyDetected() argument
48 problem, base::HistogramBase::NEVER_EXCEEDED_VALUE); in UniqueInconsistencyDetected()
/external/chromium_org/content/browser/gpu/
Dcompositor_util.cc386 base::DictionaryValue* problem = new base::DictionaryValue(); in GetProblems() local
387 problem->SetString("description", in GetProblems()
389 problem->Set("crBugs", new base::ListValue()); in GetProblems()
390 problem->Set("webkitBugs", new base::ListValue()); in GetProblems()
391 problem_list->Insert(0, problem); in GetProblems()
397 base::DictionaryValue* problem = new base::DictionaryValue(); in GetProblems() local
398 problem->SetString( in GetProblems()
400 problem->Set("crBugs", new base::ListValue()); in GetProblems()
401 problem->Set("webkitBugs", new base::ListValue()); in GetProblems()
402 problem_list->Append(problem); in GetProblems()

12345678910>>...39