/external/dng_sdk/source/ |
H A D | dng_1d_function.cpp | 45 real64 y0 = Evaluate (x0); 48 real64 y1 = Evaluate (x1); 62 real64 y2 = Evaluate (x2); 87 real64 dng_1d_identity::Evaluate (real64 x) const function in class:dng_1d_identity 138 real64 dng_1d_concatenate::Evaluate (real64 x) const function in class:dng_1d_concatenate 141 real64 y = Pin_real64 (0.0, fFunction1.Evaluate (x), 1.0); 143 return fFunction2.Evaluate (y); 179 real64 dng_1d_inverse::Evaluate (real64 x) const function in class:dng_1d_inverse 191 return fFunction.Evaluate (y);
|
H A D | dng_1d_function.h | 41 /// Returns true if this function is the map x -> y such that x == y for all x . That is if Evaluate(x) == x for all x. 51 virtual real64 Evaluate (real64 x) const = 0; 55 /// for x such that Evaluate(x) == y. 57 /// \retval A value x such that Evaluate(x) == y (to very close approximation). 77 virtual real64 Evaluate (real64 x) const; 104 /// Create a dng_1d_function which computes y = function2.Evaluate(function1.Evaluate(x)). 105 /// Compose function1 and function2 to compute y = function2.Evaluate(function1.Evaluate(x)). The range of function1.Evaluate mus [all...] |
H A D | dng_1d_table.cpp | 72 fTable [middle] = (real32) function.Evaluate (middle * (1.0 / (real64) kTableSize)); 120 fTable [0 ] = (real32) function.Evaluate (0.0); 121 fTable [kTableSize] = (real32) function.Evaluate (1.0); 142 real64 y = function.Evaluate (x);
|
H A D | dng_color_space.h | 37 virtual real64 Evaluate (real64 x) const; 54 virtual real64 Evaluate (real64 x) const; 71 virtual real64 Evaluate (real64 x) const; 135 return GammaFunction ().Evaluate (x);
|
H A D | dng_render.h | 55 virtual real64 Evaluate (real64 x) const; 83 virtual real64 Evaluate (real64 x) const; 98 virtual real64 Evaluate (real64 x) const; 123 virtual real64 Evaluate (real64 x) const;
|
/external/ceres-solver/internal/ceres/ |
H A D | residual_block_utils_test.cc | 44 // Routine to check if ResidualBlock::Evaluate for unary CostFunction 65 EXPECT_EQ(residual_block.Evaluate(true, 76 virtual bool Evaluate(double const* const* parameters, function in class:ceres::internal::GoodCostFunction 88 // which user code can cause ResidualBlock::Evaluate to fail. 91 virtual bool Evaluate(double const* const* parameters, function in class:ceres::internal::NoResidualUpdateCostFunction 105 virtual bool Evaluate(double const* const* parameters, function in class:ceres::internal::NoJacobianUpdateCostFunction 119 virtual bool Evaluate(double const* const* parameters, function in class:ceres::internal::BadResidualCostFunction 132 virtual bool Evaluate(double const* const* parameters, function in class:ceres::internal::BadJacobianCostFunction
|
H A D | loss_function.cc | 40 void TrivialLoss::Evaluate(double s, double rho[3]) const { function in class:ceres::TrivialLoss 46 void HuberLoss::Evaluate(double s, double rho[3]) const { function in class:ceres::HuberLoss 62 void SoftLOneLoss::Evaluate(double s, double rho[3]) const { function in class:ceres::SoftLOneLoss 71 void CauchyLoss::Evaluate(double s, double rho[3]) const { function in class:ceres::CauchyLoss 80 void ArctanLoss::Evaluate(double s, double rho[3]) const { function in class:ceres::ArctanLoss 97 void TolerantLoss::Evaluate(double s, double rho[3]) const { function in class:ceres::TolerantLoss 133 void ComposedLoss::Evaluate(double s, double rho[3]) const { function in class:ceres::ComposedLoss 135 g_->Evaluate(s, rho_g); 136 f_->Evaluate(rho_g[0], rho_f); 144 void ScaledLoss::Evaluate(doubl function in class:ceres::ScaledLoss [all...] |
H A D | evaluator.h | 95 static bool Evaluate(Program* program, 121 // Options struct to control Evaluator::Evaluate; 132 // Evaluate the cost function for the given state. Returns the cost, 141 virtual bool Evaluate(const EvaluateOptions& evaluate_options, 148 // Variant of Evaluator::Evaluate where the user wishes to use the 151 bool Evaluate(const double* state, function in class:ceres::internal::Evaluator 156 return Evaluate(EvaluateOptions(),
|
H A D | loss_function_test.cc | 50 // Evaluate rho(s), rho'(s) and rho''(s). 52 loss.Evaluate(s, rho); 61 loss.Evaluate(s + kH, fwd); 62 loss.Evaluate(s - kH, bwd); 123 TolerantLoss(0.7, 0.4).Evaluate(0.0, rho); 201 loss_function1.Evaluate(s, rho_gold); 202 loss_function_wrapper.Evaluate(s, rho); 210 loss_function_wrapper.Evaluate(s, rho); 211 loss_function2.Evaluate(s, rho_gold); 219 loss_function_wrapper.Evaluate( [all...] |
H A D | numeric_diff_test_utils.h | 54 virtual bool Evaluate(double const* const* parameters, function in class:ceres::internal::EasyCostFunction 79 virtual bool Evaluate(double const* const* parameters, function in class:ceres::internal::TranscendentalCostFunction
|
H A D | autodiff_cost_function_test.cc | 75 cost_function->Evaluate(parameters, &residuals, NULL); 77 cost_function->Evaluate(parameters, &residuals, jacobians); 127 cost_function->Evaluate(parameters, &residuals, NULL); 130 cost_function->Evaluate(parameters, &residuals, jacobians);
|
H A D | conditioned_cost_function.cc | 77 bool ConditionedCostFunction::Evaluate(double const* const* parameters, function in class:ceres::ConditionedCostFunction 80 bool success = wrapped_cost_function_->Evaluate(parameters, residuals, 105 success = conditioners_[r]->Evaluate(¶meter_pointer,
|
H A D | residual_block_test.cc | 55 virtual bool Evaluate(double const* const* parameters, function in class:ceres::internal::TernaryCostFunction 108 residual_block.Evaluate(true, &cost, NULL, NULL, scratch); 113 residual_block.Evaluate(true, &cost, residuals, NULL, scratch); 137 residual_block.Evaluate(true, &cost, residuals, jacobian_ptrs, scratch); 156 residual_block.Evaluate(true, &cost, residuals, jacobian_ptrs, scratch); 170 virtual bool Evaluate(double const* const* parameters, function in class:ceres::internal::LocallyParameterizedCostFunction 247 residual_block.Evaluate(true, &cost, NULL, NULL, scratch); 252 residual_block.Evaluate(true, &cost, residuals, NULL, scratch); 276 residual_block.Evaluate(true, &cost, residuals, jacobian_ptrs, scratch); 314 residual_block.Evaluate(tru [all...] |
H A D | c_api.cc | 83 virtual bool Evaluate(double const* const* parameters, function in class:CallbackCostFunction 104 virtual void Evaluate(double sq_norm, double* rho) const { function in class:CallbackLossFunction 138 ->Evaluate(squared_norm, out);
|
H A D | normal_prior_test.cc | 74 prior.Evaluate(&x, residuals.data(), &jacobian); 113 prior.Evaluate(&x, residuals.data(), jacobians); 120 prior.Evaluate(&x, residuals.data(), NULL);
|
H A D | normal_prior.cc | 51 bool NormalPrior::Evaluate(double const* const* parameters, function in class:ceres::NormalPrior
|
/external/ceres-solver/include/ceres/ |
H A D | loss_function.h | 114 virtual void Evaluate(double sq_norm, double out[3]) const = 0; 134 virtual void Evaluate(double, double*) const; 178 virtual void Evaluate(double, double*) const; 194 virtual void Evaluate(double, double*) const; 211 virtual void Evaluate(double, double*) const; 232 virtual void Evaluate(double, double*) const; 271 virtual void Evaluate(double, double*) const; 285 virtual void Evaluate(double, double*) const; 322 virtual void Evaluate(double, double*) const; 378 virtual void Evaluate(doubl function in class:ceres::LossFunctionWrapper [all...] |
H A D | normal_prior.h | 66 virtual bool Evaluate(double const* const* parameters,
|
H A D | conditioned_cost_function.h | 85 virtual bool Evaluate(double const* const* parameters,
|
H A D | cost_function.h | 115 virtual bool Evaluate(double const* const* parameters,
|
/external/libchrome/base/test/ |
H A D | trace_event_analyzer_unittest.cc | 175 EXPECT_TRUE(event_pid.Evaluate(event)); 176 EXPECT_TRUE(event_tid.Evaluate(event)); 177 EXPECT_TRUE(event_time.Evaluate(event)); 178 EXPECT_TRUE(event_duration.Evaluate(event)); 179 EXPECT_TRUE(event_phase.Evaluate(event)); 180 EXPECT_TRUE(event_category.Evaluate(event)); 181 EXPECT_TRUE(event_name.Evaluate(event)); 182 EXPECT_TRUE(event_id.Evaluate(event)); 183 EXPECT_TRUE(event_has_arg1.Evaluate(event)); 184 EXPECT_TRUE(event_has_arg2.Evaluate(even [all...] |
/external/ceres-solver/examples/ |
H A D | fields_of_experts.h | 65 // The number of scalar parameters passed to Evaluate must equal the number of 67 virtual bool Evaluate(double const* const* parameters, 82 virtual void Evaluate(double, double*) const;
|
H A D | helloworld_analytic_diff.cc | 53 virtual bool Evaluate(double const* const* parameters, function in class:QuadraticCostFunction 65 // Since the Evaluate function can be called with the jacobians 66 // pointer equal to NULL, the Evaluate function must check to see
|
/external/chromium-trace/catapult/telemetry/telemetry/internal/backends/chrome_inspector/ |
H A D | inspector_runtime.py | 21 self.Evaluate(expr + '; 0;', context_id, timeout) 23 def Evaluate(self, expr, context_id, timeout): member in class:InspectorRuntime
|
/external/lldb/include/lldb/Expression/ |
H A D | DWARFExpression.h | 252 Evaluate (ExecutionContextScope *exe_scope, 265 Evaluate (ExecutionContext *exe_ctx, 275 /// Evaluate a DWARF location expression in a particular context 331 Evaluate (ExecutionContext *exe_ctx, 348 /// See Evaluate(). 358 /// expression. See Evaluate().
|