HomeSort by relevance Sort by last modified time
    Searched refs:functor (Results 1 - 25 of 66) sorted by null

1 2 3

  /external/ceres-solver/internal/ceres/
numeric_diff_functor_test.cc 53 EasyFunctor functor; local
59 functor.ExpectCostFunctionEvaluationIsNearlyCorrect(*cost_function, CENTRAL);
64 functor.ExpectCostFunctionEvaluationIsNearlyCorrect(*cost_function, CENTRAL);
72 EasyFunctor functor; local
78 functor.ExpectCostFunctionEvaluationIsNearlyCorrect(*cost_function, FORWARD);
83 functor.ExpectCostFunctionEvaluationIsNearlyCorrect(*cost_function, FORWARD);
91 TranscendentalFunctor functor; local
97 functor.ExpectCostFunctionEvaluationIsNearlyCorrect(*cost_function, CENTRAL);
102 functor.ExpectCostFunctionEvaluationIsNearlyCorrect(*cost_function, CENTRAL);
110 TranscendentalFunctor functor; local
    [all...]
numeric_diff_cost_function_test.cc 57 EasyFunctor functor; local
58 functor.ExpectCostFunctionEvaluationIsNearlyCorrect(*cost_function, CENTRAL);
70 EasyFunctor functor; local
71 functor.ExpectCostFunctionEvaluationIsNearlyCorrect(*cost_function, FORWARD);
83 EasyFunctor functor; local
84 functor.ExpectCostFunctionEvaluationIsNearlyCorrect(*cost_function, CENTRAL);
96 EasyFunctor functor; local
97 functor.ExpectCostFunctionEvaluationIsNearlyCorrect(*cost_function, FORWARD);
109 TranscendentalFunctor functor; local
110 functor.ExpectCostFunctionEvaluationIsNearlyCorrect(*cost_function, CENTRAL)
122 TranscendentalFunctor functor; local
135 TranscendentalFunctor functor; local
148 TranscendentalFunctor functor; local
196 EasyFunctor functor; local
    [all...]
autodiff_test.cc 360 // Use a single functor, but tweak it to produce different numbers of
362 VaryingResidualFunctor functor; local
366 functor.num_residuals = num_residuals;
370 functor, parameters, num_residuals, residuals, jacobians)));
529 Residual1Param functor; local
532 functor, parameters, 1, &residual, jacobians)));
540 Residual2Param functor; local
543 functor, parameters, 1, &residual, jacobians)));
551 Residual3Param functor; local
554 functor, parameters, 1, &residual, jacobians)))
562 Residual4Param functor; local
573 Residual5Param functor; local
584 Residual6Param functor; local
597 Residual7Param functor; local
610 Residual8Param functor; local
623 Residual9Param functor; local
637 Residual10Param functor; local
    [all...]
  /external/ceres-solver/include/ceres/internal/
variadic_evaluate.h 45 // This block of quasi-repeated code calls the user-supplied functor, which may
49 template<typename Functor, typename T, int N0, int N1, int N2, int N3, int N4,
52 static bool Call(const Functor& functor, T const *const *input, T* output) {
53 return functor(input[0],
67 template<typename Functor, typename T, int N0, int N1, int N2, int N3, int N4,
69 struct VariadicEvaluate<Functor, T, N0, N1, N2, N3, N4, N5, N6, N7, N8, 0> {
70 static bool Call(const Functor& functor, T const *const *input, T* output) {
71 return functor(input[0]
    [all...]
numeric_diff.h 50 // Helper templates that allow evaluation of a variadic functor or a
55 bool EvaluateImpl(const CostFunctor* functor,
62 *functor,
70 bool EvaluateImpl(const CostFunctor* functor,
74 return functor->Evaluate(parameters, residuals, NULL);
90 const CostFunctor* functor,
144 functor, parameters, residuals.data(), functor)) {
160 functor, parameters, residuals.data(), functor)) {
    [all...]
  /external/ceres-solver/include/ceres/
autodiff_cost_function.h 37 // templated operator() (a functor) that computes the cost function in terms of
96 // "MyScalarCostFunctor", "1, 2, 2", describe the functor as computing a
117 // WARNING #1: Since the functor will get instantiated with different types for
142 // The first template argument is the functor object, described in the header
147 // The constructors take ownership of the cost functor.
170 // Takes ownership of functor. Uses the template-provided value for the
172 explicit AutoDiffCostFunction(CostFunctor* functor)
173 : functor_(functor) {
179 // Takes ownership of functor. Ignores the template-provided
184 AutoDiffCostFunction(CostFunctor* functor, int num_residuals
    [all...]
autodiff_local_parameterization.h 47 // a class with a templated operator() (a functor) that computes
102 // WARNING: Since the functor will get instantiated with different types for
107 template <typename Functor, int kGlobalSize, int kLocalSize>
111 functor_(new Functor()) {}
113 // Takes ownership of functor.
114 explicit AutoDiffLocalParameterization(Functor* functor) :
115 functor_(functor) {}
137 return internal::AutoDiff<Functor, double, kGlobalSize, kLocalSize>
149 internal::scoped_ptr<Functor> functor_
    [all...]
dynamic_numeric_diff_cost_function.h 40 // The functor API differs slightly from the API for fixed size
78 explicit DynamicNumericDiffCostFunction(const CostFunctor* functor,
81 : functor_(functor),
242 // Helper templates to allow evaluation of a functor or a
244 bool EvaluateCostFunctorImpl(const CostFunctor* functor,
248 return (*functor)(parameters, residuals);
251 bool EvaluateCostFunctorImpl(const CostFunctor* functor,
255 return functor->Evaluate(parameters, residuals, NULL);
dynamic_autodiff_cost_function.h 38 // The functor API differs slightly from the API for fixed size
81 explicit DynamicAutoDiffCostFunction(CostFunctor* functor)
82 : functor_(functor) {}
107 // is a large body of code that assumes inside a cost functor it is
126 // Make the parameter pack that is sent to the functor (reused).
numeric_diff_cost_function.h 37 // a class with a operator() (a functor) that computes the residuals.
95 // "MyScalarCostFunctor", "1, 2, 2", describe the functor as computing
192 NumericDiffCostFunction(CostFunctor* functor,
196 :functor_(functor),
  /external/eigen/unsupported/test/
NumericalDiff.cpp 11 // Generic functor
13 struct Functor
26 Functor() : m_inputs(InputsAtCompileTime), m_values(ValuesAtCompileTime) {}
27 Functor(int inputs, int values) : m_inputs(inputs), m_values(values) {}
34 struct my_functor : Functor<double>
36 my_functor(void): Functor<double>(3,15) {}
75 my_functor functor; local
80 functor.actual_df(x, actual_jac);
84 NumericalDiff<my_functor> numDiff(functor);
96 my_functor functor; local
    [all...]
NonLinearOptimization.cpp 105 // Generic functor
107 struct Functor
120 Functor() : m_inputs(InputsAtCompileTime), m_values(ValuesAtCompileTime) {}
121 Functor(int inputs, int values) : m_inputs(inputs), m_values(values) {}
130 struct lmder_functor : Functor<double>
132 lmder_functor(void): Functor<double>(3,15) {}
176 lmder_functor functor; local
177 LevenbergMarquardt<lmder_functor> lm(functor);
205 lmder_functor functor; local
206 LevenbergMarquardt<lmder_functor> lm(functor);
290 hybrj_functor functor; local
323 hybrj_functor functor; local
379 hybrd_functor functor; local
406 hybrd_functor functor; local
481 lmstr_functor functor; local
510 lmstr_functor functor; local
566 lmdif_functor functor; local
596 lmdif_functor functor; local
682 chwirut2_functor functor; local
762 misra1a_functor functor; local
852 hahn1_functor functor; local
938 misra1d_functor functor; local
1016 lanczos1_functor functor; local
1102 rat42_functor functor; local
1180 MGH10_functor functor; local
1256 BoxBOD_functor functor; local
1338 MGH17_functor functor; local
1427 MGH09_functor functor; local
1513 Bennett5_functor functor; local
1600 thurber_functor functor; local
1692 rat43_functor functor; local
1779 eckerle4_functor functor; local
    [all...]
levenberg_marquardt.cpp 69 lmder_functor functor; local
70 LevenbergMarquardt<lmder_functor> lm(functor);
98 lmder_functor functor; local
99 LevenbergMarquardt<lmder_functor> lm(functor);
171 lmdif_functor functor; local
173 info = LevenbergMarquardt<lmdif_functor>::lmdif1(functor, x, &nfev);
180 functor(x, fvec);
201 lmdif_functor functor; local
202 NumericalDiff<lmdif_functor> numDiff(functor);
287 chwirut2_functor functor; local
367 misra1a_functor functor; local
458 hahn1_functor functor; local
544 misra1d_functor functor; local
622 lanczos1_functor functor; local
708 rat42_functor functor; local
786 MGH10_functor functor; local
862 BoxBOD_functor functor; local
944 MGH17_functor functor; local
1033 MGH09_functor functor; local
1119 Bennett5_functor functor; local
1206 thurber_functor functor; local
1298 rat43_functor functor; local
1385 eckerle4_functor functor; local
    [all...]
  /external/skia/include/core/
SkTSearch.h 34 // The most general form of SkTSearch takes an array of T and a key of type K. A functor, less, is
71 // Adapts a less-than function to a functor.
76 // Specialization for case when T==K and the caller wants to use a function rather than functor.
79 static SkTLessFunctionToFunctorAdaptor<T, LESS> functor; local
80 return SkTSearch(base, count, target, elemSize, functor);
83 // Adapts operator < to a functor.
91 static SkTLessFunctor<T> functor; local
92 return SkTSearch(base, count, target, elemSize, functor);
95 // Similar to SkLessFunctionToFunctorAdaptor but makes the functor interface take T* rather than T.
104 static SkTLessFunctionToPtrFunctorAdaptor<T, LESS> functor; local
    [all...]
  /external/eigen/Eigen/src/Core/
CwiseUnaryOp.h 21 * \param UnaryOp template functor implementing the operator
73 /** \returns the functor representing the unary operation */
74 const UnaryOp& functor() const { return m_functor; } function in class:Eigen::CwiseUnaryOp
103 return derived().functor()(derived().nestedExpression().coeff(rowId, colId));
109 return derived().functor().packetOp(derived().nestedExpression().template packet<LoadMode>(rowId, colId));
114 return derived().functor()(derived().nestedExpression().coeff(index));
120 return derived().functor().packetOp(derived().nestedExpression().template packet<LoadMode>(index));
CwiseUnaryView.h 20 * \param ViewOp template functor implementing the view
74 /** \returns the functor representing unary operation */
75 const ViewOp& functor() const { return m_functor; } function in class:Eigen::CwiseUnaryView
118 return derived().functor()(derived().nestedExpression().coeff(row, col));
123 return derived().functor()(derived().nestedExpression().coeff(index));
128 return derived().functor()(const_cast_derived().nestedExpression().coeffRef(row, col));
133 return derived().functor()(const_cast_derived().nestedExpression().coeffRef(index));
CwiseBinaryOp.h 21 * \param BinaryOp template functor implementing the operator
89 // we require Lhs and Rhs to have the same scalar type. Currently there is no example of a binary functor
153 /** \returns the functor representing the binary operation */
154 const BinaryOp& functor() const { return m_functor; } function in class:Eigen::CwiseBinaryOp
174 return derived().functor()(derived().lhs().coeff(rowId, colId),
181 return derived().functor().packetOp(derived().lhs().template packet<LoadMode>(rowId, colId),
187 return derived().functor()(derived().lhs().coeff(index),
194 return derived().functor().packetOp(derived().lhs().template packet<LoadMode>(index),
  /frameworks/base/libs/hwui/
AnimatorManager.cpp 133 AnimateFunctor functor(info, mAnimationHandle->context());
135 newEnd = std::remove_if(mAnimators.begin(), mAnimators.end(), functor);
139 return functor.dirtyMask;
174 EndActiveAnimatorsFunctor functor(mAnimationHandle->context());
175 for_each(mAnimators.begin(), mAnimators.end(), functor);
  /external/eigen/test/
denseLM.cpp 102 int test_minimizeLM(FunctorType& functor, VectorType& uv)
104 LevenbergMarquardt<FunctorType> lm(functor);
115 int test_lmder(FunctorType& functor, VectorType& uv)
119 LevenbergMarquardt<FunctorType> lm(functor);
128 int test_minimizeSteps(FunctorType& functor, VectorType& uv)
131 LevenbergMarquardt<FunctorType> lm(functor);
  /external/clang/test/SemaTemplate/
instantiate-local-class.cpp 81 struct Functor {
86 forEach(Functor());
168 struct functor { struct
169 functor(Func f) : func(f) {} function in struct:PR14373::functor
173 return functor(f);
  /external/eigen/unsupported/Eigen/src/LevenbergMarquardt/
LevenbergMarquardt.h 89 // to be defined in the functor
92 // to be defined in the functor if no automatic differentiation
123 LevenbergMarquardt(FunctorType& functor)
124 : m_functor(functor),m_nfev(0),m_njev(0),m_fnorm(0.0),m_gnorm(0),
139 FunctorType &functor,
349 FunctorType &functor,
356 Index m = functor.values();
362 NumericalDiff<FunctorType> numDiff(functor);
  /external/eigen/Eigen/src/SparseCore/
SparseCwiseUnaryOp.h 42 : Base(unaryOp.derived().nestedExpression(),outer), m_functor(unaryOp.derived().functor())
65 : Base(unaryOp.derived().nestedExpression(),outer), m_functor(unaryOp.derived().functor())
106 : Base(unaryOp.derived().nestedExpression(),outer), m_functor(unaryOp.derived().functor())
128 : Base(unaryOp.derived().nestedExpression(),outer), m_functor(unaryOp.derived().functor())
  /external/eigen/unsupported/Eigen/src/NonLinearOptimization/
LevenbergMarquardt.h 50 : functor(_functor) { nfev = njev = iter = 0; fnorm = gnorm = 0.; useExternalScaling=false; }
83 FunctorType &functor,
112 FunctorType &functor; member in class:Eigen::LevenbergMarquardt
134 m = functor.values();
167 m = functor.values();
194 if ( functor(x, fvec) < 0)
215 Index df_ret = functor.df(x, fjac);
280 if ( functor(wa2, wa4) < 0)
362 m = functor.values();
381 m = functor.values()
    [all...]
HybridNonLinearSolver.h 49 : functor(_functor) { nfev=njev=iter = 0; fnorm= 0.; useExternalScaling=false;}
100 FunctorType &functor; member in class:Eigen::HybridNonLinearSolver
170 if ( functor(x, fvec) < 0)
198 if ( functor.df(x, fjac) < 0)
249 if ( functor(wa2, wa4) < 0)
410 if ( functor(x, fvec) < 0)
441 if (internal::fdjac1(functor, x, fvec, fjac, parameters.nb_of_subdiagonals, parameters.nb_of_superdiagonals, parameters.epsfcn) <0)
492 if ( functor(wa2, wa4) < 0)
  /frameworks/webview/chromium/plat_support/
draw_gl_functor.cpp 18 // GL Functor data types into the types the chromium stack expects, and back.
30 #include <utils/Functor.h>
41 class DrawGLFunctor : public Functor {
46 // Functor
126 void DestroyGLFunctor(JNIEnv*, jclass, jlong functor) {
127 delete reinterpret_cast<DrawGLFunctor*>(functor);

Completed in 411 milliseconds

1 2 3