Home
last modified time | relevance | path

Searched refs:Engine (Results 1 – 25 of 384) sorted by relevance

12345678910>>...16

/external/swiftshader/third_party/LLVM/unittests/ExecutionEngine/
DExecutionEngineTest.cpp26 Engine(EngineBuilder(M).create()) { in ExecutionEngineTest()
30 ASSERT_TRUE(Engine.get() != NULL); in SetUp()
39 const OwningPtr<ExecutionEngine> Engine; member in __anondf7716a60111::ExecutionEngineTest
46 Engine->addGlobalMapping(G1, &Mem1); in TEST_F()
47 EXPECT_EQ(&Mem1, Engine->getPointerToGlobalIfAvailable(G1)); in TEST_F()
49 Engine->updateGlobalMapping(G1, &Mem2); in TEST_F()
50 EXPECT_EQ(&Mem2, Engine->getPointerToGlobalIfAvailable(G1)); in TEST_F()
51 Engine->updateGlobalMapping(G1, NULL); in TEST_F()
52 EXPECT_EQ(NULL, Engine->getPointerToGlobalIfAvailable(G1)); in TEST_F()
53 Engine->updateGlobalMapping(G1, &Mem2); in TEST_F()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/ExecutionEngine/
DExecutionEngineTest.cpp33 Engine.reset(EngineBuilder(std::move(Owner)).setErrorStr(&Error).create()); in ExecutionEngineTest()
37 ASSERT_TRUE(Engine.get() != nullptr) << "EngineBuilder returned error: '" in SetUp()
49 std::unique_ptr<ExecutionEngine> Engine; member in __anon183305520111::ExecutionEngineTest
55 Engine->addGlobalMapping(G1, &Mem1); in TEST_F()
56 EXPECT_EQ(&Mem1, Engine->getPointerToGlobalIfAvailable(G1)); in TEST_F()
57 EXPECT_EQ(&Mem1, Engine->getPointerToGlobalIfAvailable("Global1")); in TEST_F()
59 Engine->updateGlobalMapping(G1, &Mem2); in TEST_F()
60 EXPECT_EQ(&Mem2, Engine->getPointerToGlobalIfAvailable(G1)); in TEST_F()
61 Engine->updateGlobalMapping(G1, nullptr); in TEST_F()
62 EXPECT_EQ(nullptr, Engine->getPointerToGlobalIfAvailable(G1)); in TEST_F()
[all …]
/external/llvm/unittests/ExecutionEngine/
DExecutionEngineTest.cpp33 Engine.reset(EngineBuilder(std::move(Owner)).setErrorStr(&Error).create()); in ExecutionEngineTest()
37 ASSERT_TRUE(Engine.get() != nullptr) << "EngineBuilder returned error: '" in SetUp()
49 std::unique_ptr<ExecutionEngine> Engine; member in __anonb8dda6fa0111::ExecutionEngineTest
55 Engine->addGlobalMapping(G1, &Mem1); in TEST_F()
56 EXPECT_EQ(&Mem1, Engine->getPointerToGlobalIfAvailable(G1)); in TEST_F()
57 EXPECT_EQ(&Mem1, Engine->getPointerToGlobalIfAvailable("Global1")); in TEST_F()
59 Engine->updateGlobalMapping(G1, &Mem2); in TEST_F()
60 EXPECT_EQ(&Mem2, Engine->getPointerToGlobalIfAvailable(G1)); in TEST_F()
61 Engine->updateGlobalMapping(G1, nullptr); in TEST_F()
62 EXPECT_EQ(nullptr, Engine->getPointerToGlobalIfAvailable(G1)); in TEST_F()
[all …]
/external/swiftshader/third_party/LLVM/tools/llvm-diff/
DDifferenceEngine.cpp118 DifferenceEngine &Engine; member in __anonce6149d20111::FunctionDifferenceEngine
164 Engine.logf("successor %l cannot be equivalent to %r; " in tryUnify()
178 DifferenceEngine::Context C(Engine, L, R); in unify()
195 DifferenceEngine::Context C(Engine, L, R); in diff()
233 if (Complain) Engine.log("called functions differ"); in diffCallSites()
237 if (Complain) Engine.log("argument counts differ"); in diffCallSites()
243 Engine.logf("arguments %l and %r differ") in diffCallSites()
255 if (Complain) Engine.log("different instruction types"); in diff()
262 if (Complain) Engine.log("different predicates"); in diff()
273 if (Complain) Engine.log("different phi types"); in diff()
[all …]
DDifferenceEngine.h39 Context(DifferenceEngine &Engine, Value *L, Value *R) : Engine(Engine) { in Context()
40 Engine.consumer.enterContext(L, R); in Context()
44 Engine.consumer.exitContext(); in ~Context()
48 DifferenceEngine &Engine;
Dllvm-diff.cpp45 static void diffGlobal(DifferenceEngine &Engine, Module *L, Module *R, in diffGlobal() argument
53 Engine.diff(LFn, RFn); in diffGlobal()
82 DifferenceEngine Engine(Context, Consumer); in main() local
87 diffGlobal(Engine, LModule, RModule, GlobalsToCompare[I]); in main()
91 Engine.diff(LModule, RModule); in main()
/external/llvm/tools/llvm-diff/
DDifferenceEngine.cpp115 DifferenceEngine &Engine; member in __anon66aec1a60111::FunctionDifferenceEngine
161 Engine.logf("successor %l cannot be equivalent to %r; " in tryUnify()
175 DifferenceEngine::Context C(Engine, L, R); in unify()
192 DifferenceEngine::Context C(Engine, L, R); in diff()
229 if (Complain) Engine.log("called functions differ"); in diffCallSites()
233 if (Complain) Engine.log("argument counts differ"); in diffCallSites()
239 Engine.logf("arguments %l and %r differ") in diffCallSites()
251 if (Complain) Engine.log("different instruction types"); in diff()
258 if (Complain) Engine.log("different predicates"); in diff()
269 if (Complain) Engine.log("different phi types"); in diff()
[all …]
DDifferenceEngine.h37 Context(DifferenceEngine &Engine, Value *L, Value *R) : Engine(Engine) { in Context()
38 Engine.consumer.enterContext(L, R); in Context()
42 Engine.consumer.exitContext(); in ~Context()
46 DifferenceEngine &Engine;
Dllvm-diff.cpp42 static void diffGlobal(DifferenceEngine &Engine, Module &L, Module &R, in diffGlobal() argument
50 Engine.diff(LFn, RFn); in diffGlobal()
79 DifferenceEngine Engine(Consumer); in main() local
84 diffGlobal(Engine, *LModule, *RModule, GlobalsToCompare[I]); in main()
88 Engine.diff(LModule.get(), RModule.get()); in main()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-diff/
DDifferenceEngine.cpp115 DifferenceEngine &Engine; member in __anon403bf0fe0111::FunctionDifferenceEngine
161 Engine.logf("successor %l cannot be equivalent to %r; " in tryUnify()
175 DifferenceEngine::Context C(Engine, L, R); in unify()
192 DifferenceEngine::Context C(Engine, L, R); in diff()
229 if (Complain) Engine.log("called functions differ"); in diffCallSites()
233 if (Complain) Engine.log("argument counts differ"); in diffCallSites()
239 Engine.logf("arguments %l and %r differ") in diffCallSites()
251 if (Complain) Engine.log("different instruction types"); in diff()
258 if (Complain) Engine.log("different predicates"); in diff()
269 if (Complain) Engine.log("different phi types"); in diff()
[all …]
DDifferenceEngine.h37 Context(DifferenceEngine &Engine, Value *L, Value *R) : Engine(Engine) { in Context()
38 Engine.consumer.enterContext(L, R); in Context()
42 Engine.consumer.exitContext(); in ~Context()
46 DifferenceEngine &Engine;
Dllvm-diff.cpp42 static void diffGlobal(DifferenceEngine &Engine, Module &L, Module &R, in diffGlobal() argument
50 Engine.diff(LFn, RFn); in diffGlobal()
79 DifferenceEngine Engine(Consumer); in main() local
84 diffGlobal(Engine, *LModule, *RModule, GlobalsToCompare[I]); in main()
88 Engine.diff(LModule.get(), RModule.get()); in main()
/external/llvm/unittests/ExecutionEngine/MCJIT/
DMCJITCAPITest.cpp154 Engine = nullptr; in SetUp()
159 if (Engine) in TearDown()
160 LLVMDisposeExecutionEngine(Engine); in TearDown()
282 0, LLVMCreateMCJITCompilerForModule(&Engine, Module, &Options, in buildMCJITEngine()
328 LLVMExecutionEngineRef Engine; member in __anoncb301aaa0111::MCJITCAPITest
342 reinterpret_cast<uintptr_t>(LLVMGetPointerToGlobal(Engine, Function))); in TEST_F()
359 uint64_t raw = LLVMGetGlobalValueAddress(Engine, "simple_value"); in TEST_F()
373 uint64_t raw = LLVMGetFunctionAddress(Engine, "simple_function"); in TEST_F()
389 reinterpret_cast<uintptr_t>(LLVMGetPointerToGlobal(Engine, Function))); in TEST_F()
409 reinterpret_cast<uintptr_t>(LLVMGetPointerToGlobal(Engine, Function))); in TEST_F()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/ExecutionEngine/MCJIT/
DMCJITCAPITest.cpp155 Engine = nullptr; in SetUp()
160 if (Engine) in TearDown()
161 LLVMDisposeExecutionEngine(Engine); in TearDown()
283 0, LLVMCreateMCJITCompilerForModule(&Engine, Module, &Options, in buildMCJITEngine()
329 LLVMExecutionEngineRef Engine; member in __anon2a8579020111::MCJITCAPITest
343 reinterpret_cast<uintptr_t>(LLVMGetPointerToGlobal(Engine, Function))); in TEST_F()
360 uint64_t raw = LLVMGetGlobalValueAddress(Engine, "simple_value"); in TEST_F()
374 uint64_t raw = LLVMGetFunctionAddress(Engine, "simple_function"); in TEST_F()
390 reinterpret_cast<uintptr_t>(LLVMGetPointerToGlobal(Engine, Function))); in TEST_F()
410 reinterpret_cast<uintptr_t>(LLVMGetPointerToGlobal(Engine, Function))); in TEST_F()
[all …]
/external/libcxx/test/std/numerics/rand/rand.adapt/rand.adapt.ibits/
Dctor_engine_move.pass.cpp23 typedef std::mt19937 Engine; in main() typedef
24 typedef std::independent_bits_engine<Engine, 24, unsigned> Adaptor; in main()
25 Engine e; in main()
26 Engine e0 = e; in main()
Dctor_engine_copy.pass.cpp23 typedef std::mt19937 Engine; in main() typedef
24 typedef std::independent_bits_engine<Engine, 24, unsigned> Adaptor; in main()
25 Engine e; in main()
/external/syzkaller/vendor/google.golang.org/appengine/
DREADME.md1 # Go App Engine packages
5 This repository supports the Go runtime on *App Engine standard*.
6 It provides APIs for interacting with App Engine services.
15 ## Upgrading an App Engine app to the flexible environment
17 This package does not work on *App Engine flexible*.
19 There are many differences between the App Engine standard environment and
32 plus packages required for connectivity to make API calls. App Engine apps
45 The import paths for App Engine packages are now fully qualified, based at `google.golang.org/appen…
51 Most App Engine services are available with exactly the same API.
72 * `appengine/socket` is not required on App Engine flexible environment / Managed VMs.
/external/libcxx/test/std/numerics/rand/rand.adapt/rand.adapt.disc/
Dctor_engine_move.pass.cpp23 typedef std::ranlux24_base Engine; in main() typedef
25 Engine e; in main()
26 Engine e0 = e; in main()
/external/syzkaller/pkg/report/testdata/linux/report/
D1356 [ 177.902067] Hardware name: Google Google Compute Engine/Google Compute Engine, BIOS Google 01/01…
22 [ 179.076171] Hardware name: Google Google Compute Engine/Google Compute Engine, BIOS Google 01/01…
D11510 [ 76.661710] Hardware name: Google Google Compute Engine/Google Compute Engine, BIOS Google 01/01…
31 [ 76.940499] Hardware name: Google Google Compute Engine/Google Compute Engine, BIOS Google 01/01…
D2289 [ 177.014155] Hardware name: Google Google Compute Engine/Google Compute Engine, BIOS Google 01/01…
58 [ 177.214312] Hardware name: Google Google Compute Engine/Google Compute Engine, BIOS Google 01/01…
102 Hardware name: Google Google Compute Engine/Google Compute Engine, BIOS Google 01/01/2011
D1209 [ 80.262197] Hardware name: Google Google Compute Engine/Google Compute Engine, BIOS Google 01/01…
28 [ 80.272175] Hardware name: Google Google Compute Engine/Google Compute Engine, BIOS Google 01/01…
/external/libcxx/test/std/numerics/rand/rand.adapt/rand.adapt.shuf/
Dctor_engine_move.pass.cpp23 typedef std::minstd_rand0 Engine; in main() typedef
25 Engine e; in main()
26 Engine e0 = e; in main()
/external/perfetto/ui/src/controller/
Dlogs_controller.ts15 import {Engine} from '../common/engine';
29 engine: Engine, span: TimeSpan): Promise<LogBounds> {
64 engine: Engine, span: TimeSpan, pagination: Pagination):
133 engine: Engine;
147 private engine: Engine;
Dtrack_controller.ts17 import {Engine} from '../common/engine';
30 readonly engine: Engine;
82 engine: Engine;

12345678910>>...16