HomeSort by relevance Sort by last modified time
    Searched refs:Evaluate (Results 26 - 50 of 119) sorted by null

12 3 4 5

  /external/lldb/include/lldb/Expression/
DWARFExpression.h 247 /// Wrapper for the static evaluate function that accepts an
252 Evaluate (ExecutionContextScope *exe_scope,
261 /// Wrapper for the static evaluate function that uses member
265 Evaluate (ExecutionContext *exe_ctx,
275 /// Evaluate a DWARF location expression in a particular context
278 /// The execution context in which to evaluate the location
331 Evaluate (ExecutionContext *exe_ctx,
348 /// See Evaluate().
358 /// expression. See Evaluate().
  /external/ceres-solver/examples/
helloworld_analytic_diff.cc 53 virtual bool Evaluate(double const* const* parameters,
65 // Since the Evaluate function can be called with the jacobians
66 // pointer equal to NULL, the Evaluate function must check to see
fields_of_experts.cc 54 bool FieldsOfExpertsCost::Evaluate(double const* const* parameters,
78 void FieldsOfExpertsLoss::Evaluate(double sq_norm, double rho[3]) const {
  /external/ceres-solver/internal/ceres/
normal_prior.cc 51 bool NormalPrior::Evaluate(double const* const* parameters,
residual_block.h 84 // Evaluate needs scratch space which must be supplied by the caller via
99 bool Evaluate(bool apply_loss_function,
123 // The minimum amount of scratch space needed to pass to Evaluate().
conditioned_cost_function_test.cc 54 virtual bool Evaluate(double const* const* parameters,
108 conditioned_cost_function.Evaluate(parameters, result, jacs);
gradient_checking_cost_function_test.cc 88 bool Evaluate(double const* const* parameters,
169 term.Evaluate(&parameters[0],
173 gradient_checking_cost_function->Evaluate(&parameters[0],
232 gradient_checking_cost_function->Evaluate(&parameters[0],
250 gradient_checking_cost_function->Evaluate(&parameters[0],
262 // function signatures. They have dummy Evaluate functions.
273 virtual bool Evaluate(double const* const* parameters,
294 virtual bool Evaluate(double const* const* parameters,
317 virtual bool Evaluate(double const* const* parameters,
dynamic_autodiff_cost_function_test.cc 88 EXPECT_TRUE(cost_function.Evaluate(&parameter_blocks[0],
128 EXPECT_TRUE(cost_function.Evaluate(parameter_blocks.data(),
195 EXPECT_TRUE(cost_function.Evaluate(parameter_blocks.data(),
245 EXPECT_TRUE(cost_function.Evaluate(parameter_blocks.data(),
432 EXPECT_TRUE(cost_function_->Evaluate(parameter_blocks_.data(),
448 EXPECT_TRUE(cost_function_->Evaluate(parameter_blocks_.data(),
478 EXPECT_TRUE(cost_function_->Evaluate(parameter_blocks_.data(),
500 EXPECT_TRUE(cost_function_->Evaluate(parameter_blocks_.data(),
676 EXPECT_TRUE(cost_function_->Evaluate(parameter_blocks_.data(),
695 EXPECT_TRUE(cost_function_->Evaluate(parameter_blocks_.data()
    [all...]
residual_block.cc 67 bool ResidualBlock::Evaluate(const bool apply_loss_function,
104 // the CostFunction::Evaluate call, to see if all the return values
110 if (!cost_function_->Evaluate(parameters.get(), residuals, eval_jacobians)) {
122 "There are two possible reasons. Either the CostFunction did not evaluate and fill all \n" // NOLINT
164 loss_function_->Evaluate(squared_norm, rho);
dynamic_numeric_diff_cost_function_test.cc 88 EXPECT_TRUE(cost_function.Evaluate(&parameter_blocks[0],
129 EXPECT_TRUE(cost_function.Evaluate(parameter_blocks.data(),
196 EXPECT_TRUE(cost_function.Evaluate(parameter_blocks.data(),
246 EXPECT_TRUE(cost_function.Evaluate(parameter_blocks.data(),
433 EXPECT_TRUE(cost_function_->Evaluate(parameter_blocks_.data(),
449 EXPECT_TRUE(cost_function_->Evaluate(parameter_blocks_.data(),
479 EXPECT_TRUE(cost_function_->Evaluate(parameter_blocks_.data(),
501 EXPECT_TRUE(cost_function_->Evaluate(parameter_blocks_.data(),
line_search.h 164 // Evaluate the line search objective
174 virtual bool Evaluate(double x, double* f, double* g) = 0;
235 virtual bool Evaluate(double x, double* f, double* g);
numeric_diff_test_utils.cc 70 ASSERT_TRUE(cost_function.Evaluate(&parameters[0],
140 ASSERT_TRUE(cost_function.Evaluate(&parameters[0],
gradient_checking_cost_function.cc 109 virtual bool Evaluate(double const* const* parameters,
114 return function_->Evaluate(parameters, residuals, NULL);
133 // Evaluate the derivative using the user supplied code.
134 if (!function_->Evaluate(parameters,
141 // Evaluate the derivative using numeric derivatives.
142 finite_diff_cost_function_->Evaluate(
evaluator_test.cc 61 virtual bool Evaluate(double const* const* parameters,
164 ASSERT_TRUE(evaluator->Evaluate(
533 EXPECT_FALSE(evaluator->Evaluate(state, &cost, NULL, NULL, NULL));
569 virtual bool Evaluate(double const* const* parameters,
623 ASSERT_TRUE(evaluator->Evaluate(state, &cost, NULL, NULL, NULL));
631 ASSERT_TRUE(evaluator->Evaluate(state, &cost, residuals, NULL, NULL));
642 ASSERT_TRUE(evaluator->Evaluate(state,
gradient_checker_test.cc 72 bool Evaluate(double const* const* parameters,
125 bool Evaluate(double const* const* parameters,
line_search.cc 118 bool LineSearchFunction::Evaluate(double x, double* f, double* g) {
127 return (evaluator_->Evaluate(evaluation_point_.data(),
132 if (!evaluator_->Evaluate(evaluation_point_.data(),
258 function->Evaluate(current.x,
308 function->Evaluate(current.x,
472 // As we require the gradient to evaluate the Wolfe condition, we always
484 function->Evaluate(current.x,
563 // Check num iterations bound here so that we always evaluate the
620 function->Evaluate(current.x,
    [all...]
  /external/deqp/framework/randomshaders/
rsgBuiltinFunctions.hpp 35 template <class GetValueRangeWeight, class ComputeValueRange, class Evaluate>
45 void evaluate (ExecutionContext& execCtx);
57 template <class GetValueRangeWeight, class ComputeValueRange, class Evaluate>
58 UnaryBuiltinVecFunc<GetValueRangeWeight, ComputeValueRange, Evaluate>::UnaryBuiltinVecFunc (GeneratorState& state, const char* function, ConstValueRangeAccess valueRange)
78 template <class GetValueRangeWeight, class ComputeValueRange, class Evaluate>
79 UnaryBuiltinVecFunc<GetValueRangeWeight, ComputeValueRange, Evaluate>::~UnaryBuiltinVecFunc (void)
84 template <class GetValueRangeWeight, class ComputeValueRange, class Evaluate>
85 Expression* UnaryBuiltinVecFunc<GetValueRangeWeight, ComputeValueRange, Evaluate>::createNextChild (GeneratorState& state)
94 template <class GetValueRangeWeight, class ComputeValueRange, class Evaluate>
95 void UnaryBuiltinVecFunc<GetValueRangeWeight, ComputeValueRange, Evaluate>::tokenize (GeneratorState& state, TokenStream& str) cons
103 void UnaryBuiltinVecFunc<GetValueRangeWeight, ComputeValueRange, Evaluate>::evaluate (ExecutionContext& execCtx) function in class:rsg::UnaryBuiltinVecFunc
    [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
toplevel.ml 25 (* Evaluate a top-level expression into an anonymous function. *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
toplevel.ml 29 (* Evaluate a top-level expression into an anonymous function. *)
  /external/ceres-solver/include/ceres/
autodiff_cost_function.h 202 virtual bool Evaluate(double const* const* parameters,
dynamic_numeric_diff_cost_function.h 100 virtual bool Evaluate(double const* const* parameters,
105 << "before DynamicNumericDiffCostFunction::Evaluate().";
110 << "before DynamicNumericDiffCostFunction::Evaluate().";
255 return functor->Evaluate(parameters, residuals, NULL);
gradient_checker.h 176 CHECK(term->Evaluate(probe_point, results->cost.data(),
180 CHECK(numeric_term.Evaluate(probe_point, results->cost.data(),
  /external/chromium_org/chrome/browser/chromeos/login/test/
js_checker.h 25 void Evaluate(const std::string& expression);
  /external/chromium_org/base/test/
trace_event_analyzer.cc 243 bool Query::Evaluate(const TraceEvent& event) const {
277 return left().Evaluate(event) && right().Evaluate(event);
279 return left().Evaluate(event) || right().Evaluate(event);
281 return !left().Evaluate(event);
642 if (query.Evaluate(events[i]))
743 if (second.Evaluate(this_event)) {
752 if (match.Evaluate(begin_event)) {
766 if (first.Evaluate(this_event))
    [all...]
  /bootable/recovery/edify/
main.c 46 result = Evaluate(&state, e);
205 char* result = Evaluate(&state, root);

Completed in 636 milliseconds

12 3 4 5