Searched refs:Evaluate (Results 1 - 25 of 62) sorted by relevance

123

/external/dng_sdk/source/
H A Ddng_1d_function.cpp45 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 Ddng_1d_function.h41 /// 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 Ddng_1d_table.cpp72 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 Ddng_color_space.h37 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 Ddng_render.h55 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;
H A Ddng_spline.h76 virtual real64 Evaluate (real64 x) const;
H A Ddng_resample.h45 virtual real64 Evaluate (real64 x) const = 0;
58 virtual real64 Evaluate (real64 x) const;
/external/tensorflow/tensorflow/contrib/tensor_forest/kernels/
H A Dreinterpret_string_to_float_op.cc38 void Evaluate(const Tensor& input_data, Tensor output_data, int32 start, function in namespace:tensorflow
63 // Evaluate input data in parallel.
68 Evaluate(input_data, *output_data, 0, num_data);
73 Evaluate(input_data, *output_data, static_cast<int32>(start),
/external/tensorflow/tensorflow/compiler/xla/service/
H A Dhlo_evaluator.h48 StatusOr<std::unique_ptr<Literal>> Evaluate(
71 StatusOr<std::unique_ptr<Literal>> Evaluate(
84 StatusOr<std::unique_ptr<Literal>> Evaluate(
93 StatusOr<std::unique_ptr<Literal>> Evaluate(HloInstruction* instruction);
95 // Same as Evaluate, except returning nullptr on error.
189 // each invocation to the Evaluate* method.
H A Dhlo_evaluator_test.cc57 std::unique_ptr<Literal> Evaluate( function in class:xla::__anon25627::HloEvaluatorTest
64 return evaluator_->Evaluate(*module().entry_computation(), arg_literals)
79 std::unique_ptr<Literal> result = Evaluate();
100 std::unique_ptr<Literal> result = Evaluate();
127 std::unique_ptr<Literal> result = Evaluate();
148 std::unique_ptr<Literal> result = Evaluate();
173 std::unique_ptr<Literal> result = Evaluate({});
305 std::unique_ptr<Literal> result = Evaluate(args);
329 std::unique_ptr<Literal> result = Evaluate({});
351 std::unique_ptr<Literal> result = Evaluate({});
[all...]
/external/libchrome/base/test/
H A Dtrace_event_analyzer_unittest.cc188 EXPECT_TRUE(event_pid.Evaluate(event));
189 EXPECT_TRUE(event_tid.Evaluate(event));
190 EXPECT_TRUE(event_time.Evaluate(event));
191 EXPECT_TRUE(event_duration.Evaluate(event));
192 EXPECT_TRUE(event_phase.Evaluate(event));
193 EXPECT_TRUE(event_category.Evaluate(event));
194 EXPECT_TRUE(event_name.Evaluate(event));
195 EXPECT_TRUE(event_id.Evaluate(event));
196 EXPECT_TRUE(event_has_arg1.Evaluate(event));
197 EXPECT_TRUE(event_has_arg2.Evaluate(even
[all...]
H A Dtrace_event_analyzer.cc275 bool Query::Evaluate(const TraceEvent& event) const { function in class:trace_analyzer::Query
309 return left().Evaluate(event) && right().Evaluate(event);
311 return left().Evaluate(event) || right().Evaluate(event);
313 return !left().Evaluate(event);
697 if (query.Evaluate(events[i]))
800 if (second.Evaluate(this_event)) {
809 if (match.Evaluate(begin_event)) {
825 if (first.Evaluate(this_even
[all...]
/external/deqp/framework/randomshaders/
H A DrsgBuiltinFunctions.hpp35 template <class GetValueRangeWeight, class ComputeValueRange, class Evaluate>
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) const
102 template <class GetValueRangeWeight, class ComputeValueRange, class Evaluate>
[all...]
/external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
H A Dtoplevel.ml25 (* Evaluate a top-level expression into an anonymous function. *)
/external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
H A Dtoplevel.ml29 (* Evaluate a top-level expression into an anonymous function. *)
/external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter2/
H A Dtoplevel.ml25 (* Evaluate a top-level expression into an anonymous function. *)
/external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter3/
H A Dtoplevel.ml29 (* Evaluate a top-level expression into an anonymous function. *)
/external/google-breakpad/src/processor/
H A Dpostfix_evaluator.h58 // Evaluate, unless used in an expression prior to being assigned to. The
92 // Create a PostfixEvaluator object that may be used (with Evaluate) on
97 // Evaluate.
101 // Evaluate the expression, starting with an empty stack. The results of
108 bool Evaluate(const string &expression, DictionaryValidityType *assigned);
110 // Like Evaluate, but provides the value left on the stack to the
151 // Evaluate expression, updating *assigned if it is non-zero. Return
/external/v8/src/debug/
H A Ddebug-evaluate.h18 // Evaluate a piece of JavaScript in the context of a stack frame for
86 static MaybeHandle<Object> Evaluate(Isolate* isolate,
/external/fec/
H A Dsumsq_mmx_assist.s7 # Evaluate sum of squares of signed 16-bit input samples
49 # Evaluate sum of squares of signed 16-bit input samples
/external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
H A Dtoplevel.ml30 (* Evaluate a top-level expression into an anonymous function. *)
/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
H A Dtoplevel.ml30 (* Evaluate a top-level expression into an anonymous function. *)
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
H A Dtoplevel.ml30 (* Evaluate a top-level expression into an anonymous function. *)
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
H A Dtoplevel.ml30 (* Evaluate a top-level expression into an anonymous function. *)
/external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter4/
H A Dtoplevel.ml30 (* Evaluate a top-level expression into an anonymous function. *)

Completed in 2392 milliseconds

123