Searched refs:Result (Results 1 - 17 of 17) sorted by relevance

/fuchsia/zircon/third_party/lib/acpica/source/compiler/
H A Ddtexpress.c86 UINT64 Result; local
94 Result = DtEvaluateExpression (Field->Value);
95 *ReturnValue = Result;
120 UINT64 Result; local
129 Result = ~RightValue;
134 Result = !RightValue;
139 Result = LeftValue * RightValue;
151 Result = LeftValue / RightValue;
163 Result = LeftValue % RightValue;
167 Result
[all...]
H A Dprexpress.c268 UINT64 Result; local
281 Result = PrEvaluateExpression (ExpandedLine);
284 Gbl_CurrentLineNumber, ACPI_FORMAT_UINT64 (Result));
286 *ReturnValue = Result;
/fuchsia/zircon/system/ulib/fit/include/lib/fit/
H A Dfunction_internal.h20 template <typename Result, typename... Args>
23 Result (*invoke)(void* bits, Args... args);
28 template <typename Callable, bool is_inline, typename Result, typename... Args>
31 template <typename Result, typename... Args>
32 struct target<decltype(nullptr), true, Result, Args...> {
33 static Result invoke(void* bits, Args... args) {
37 static const target_ops<Result, Args...> ops;
46 template <typename Result, typename... Args>
47 constexpr target_ops<Result, Args...> target<decltype(nullptr), true, Result, Arg
[all...]
/fuchsia/zircon/system/ulib/runtests-utils/include/runtests-utils/
H A Dposix-run-test.h20 fbl::unique_ptr<Result> PosixRunTest(const char* argv[],
H A Dfuchsia-run-test.h45 fbl::unique_ptr<Result> FuchsiaRunTest(const char* argv[],
H A Druntests-utils.h55 struct Result { struct in namespace:runtests
65 Result(const char* name_arg, LaunchStatus launch_status_arg, int64_t return_code_arg) function in struct:runtests::Result
78 typedef fbl::unique_ptr<Result> (*RunTestFn)(const char* argv[],
120 int WriteSummaryJSON(const fbl::Vector<fbl::unique_ptr<Result>>& results,
155 fbl::Vector<fbl::unique_ptr<Result>>* results);
/fuchsia/zircon/system/ulib/fbl/include/fbl/
H A Dfunction.h50 template <typename Result, typename... Args>
60 virtual Result operator()(Args... args) const = 0;
65 template <typename Result, typename... Args>
66 class NullFunctionTarget final : public FunctionTarget<Result, Args...> {
75 Result operator()(Args... args) const final {
84 template <typename Callable, typename Result, typename... Args>
85 class InlineFunctionTarget final : public FunctionTarget<Result, Args...> {
99 Result operator()(Args... args) const final {
111 template <typename Callable, typename Result, typename... Args>
112 class HeapFunctionTarget final : public FunctionTarget<Result, Arg
[all...]
/fuchsia/zircon/system/ulib/runtests-utils/
H A Dposix-run-test.cpp39 fbl::unique_ptr<Result> PosixRunTest(const char* argv[],
52 return fbl::make_unique<Result>(path, FAILED_TO_LAUNCH, 0);
82 return fbl::make_unique<Result>(path, FAILED_DURING_IO, 0);
89 return fbl::make_unique<Result>(path, FAILED_TO_LAUNCH, 0);
95 return fbl::make_unique<Result>(path, FAILED_TO_LAUNCH, 0);
105 return fbl::make_unique<Result>(path, FAILED_TO_LAUNCH, 0);
110 return fbl::make_unique<Result>(path, FAILED_TO_WAIT, 0);
116 return fbl::make_unique<Result>(path, launch_status, return_code);
120 return fbl::make_unique<Result>(path, FAILED_NONZERO_RETURN_CODE, 1);
124 return fbl::make_unique<Result>(pat
[all...]
H A Dfuchsia-run-test.cpp162 fbl::unique_ptr<Result> FuchsiaRunTest(const char* argv[],
223 return fbl::make_unique<Result>(path, FAILED_UNKNOWN, 0);
231 return fbl::make_unique<Result>(path, FAILED_UNKNOWN, 0);
238 return fbl::make_unique<Result>(path, FAILED_UNKNOWN, 0);
243 return fbl::make_unique<Result>(path, FAILED_UNKNOWN, 0);
259 return fbl::make_unique<Result>(path, FAILED_TO_LAUNCH, 0);
276 return fbl::make_unique<Result>(path, FAILED_TO_LAUNCH, 0);
284 return fbl::make_unique<Result>(path, FAILED_TO_LAUNCH, 0);
297 return fbl::make_unique<Result>(path, FAILED_TO_LAUNCH, 0);
305 return fbl::make_unique<Result>(pat
[all...]
H A Druntests-utils.cpp101 int WriteSummaryJSON(const fbl::Vector<fbl::unique_ptr<Result>>& results,
107 for (const fbl::unique_ptr<Result>& result : results) {
295 fbl::Vector<fbl::unique_ptr<Result>>* results) {
333 fbl::unique_ptr<Result> result = RunTest(argv.get(), output_dir_for_test,
H A Ddiscover-and-run-tests.cpp274 fbl::Vector<fbl::unique_ptr<Result>> results;
310 for (const fbl::unique_ptr<Result>& result : results) {
/fuchsia/zircon/third_party/lib/acpica/source/components/namespace/
H A Dnsutils.c273 char *Result = NULL; local
288 Result = &InternalName[1];
293 Result = &InternalName[2];
299 Result = &InternalName[3];
319 Result = &InternalName[i];
324 Result = &InternalName[(ACPI_SIZE) i+1];
330 Result = &InternalName[(ACPI_SIZE) i+2];
345 Result[i] = '_';
351 Result[i] = (char) toupper ((int) *ExternalName);
367 Result
[all...]
/fuchsia/zircon/third_party/lib/acpica/source/components/executer/
H A Dexconvrt.c86 UINT64 Result; local
127 Result = 0;
140 Status = AcpiUtStrtoul64 ((char *) Pointer, Flags, &Result);
170 * Get next byte and shift it into the Result.
174 Result |= (((UINT64) Pointer[i]) << (i * 8));
187 ReturnDesc = AcpiUtCreateIntegerObject (Result);
194 ACPI_FORMAT_UINT64 (Result)));
196 /* Save the Result */
/fuchsia/zircon/system/utest/fbl/
H A Dref_ptr_tests.cpp275 enum class Result { class in class:__anon1349::upcasting::OverloadTestHelper
282 void PassByCopy(fbl::RefPtr<A>) { result_ = Result::ClassA; }
283 void PassByCopy(fbl::RefPtr<D>) { result_ = Result::ClassD; }
289 void PassByCopy(fbl::RefPtr<B>) { result_ = Result::ClassB; }
292 void PassByMove(fbl::RefPtr<A>&&) { result_ = Result::ClassA; }
293 void PassByMove(fbl::RefPtr<D>&&) { result_ = Result::ClassD; }
299 void PassByMove(fbl::RefPtr<B>&&) { result_ = Result::ClassB; }
302 Result result() const { return result_; }
305 Result result_ = Result
[all...]
H A Dunique_ptr_tests.cpp390 enum class Result { class in class:upcasting::OverloadTestHelper
397 void PassByMove(fbl::unique_ptr<A>&&) { result_ = Result::ClassA; }
398 void PassByMove(fbl::unique_ptr<D>&&) { result_ = Result::ClassD; }
404 void PassByMove(fbl::unique_ptr<B>&&) { result_ = Result::ClassB; }
407 Result result() const { return result_; }
410 Result result_ = Result::None;
560 EXPECT_EQ(OverloadTestHelper::Result::ClassA, helper.result());
/fuchsia/zircon/system/utest/runtests-utils/
H A Druntests-utils-test.cpp179 fbl::Vector<fbl::unique_ptr<Result>> results;
180 results.push_back(fbl::make_unique<Result>("/a", SUCCESS, 0));
181 results.push_back(fbl::make_unique<Result>("b", FAILED_TO_LAUNCH, 0));
216 fbl::Vector<fbl::unique_ptr<Result>> results;
217 results.push_back(fbl::make_unique<Result>("/a", SUCCESS, 0));
218 results.push_back(fbl::make_unique<Result>("b", FAILED_TO_LAUNCH, 0));
253 fbl::Vector<fbl::unique_ptr<Result>> results;
254 results.push_back(fbl::make_unique<Result>("///", SUCCESS, 0));
255 results.push_back(fbl::make_unique<Result>("b", FAILED_TO_LAUNCH, 0));
308 fbl::unique_ptr<Result> resul
[all...]
H A Dfuchsia-run-test.cpp155 fbl::unique_ptr<Result> result = PlatformRunTest(argv, nullptr, nullptr);
171 fbl::Vector<fbl::unique_ptr<Result>> results;

Completed in 82 milliseconds