Home
last modified time | relevance | path

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

12345678

/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 __anon0af8609a0111::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/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 __anonf598d4ee0111::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/tensorflow/tensorflow/core/platform/
Dtracing.h94 class Engine; variable
95 static void RegisterEngine(Engine*);
106 static std::atomic<Tracing::Engine*> tracing_engine_;
107 static Tracing::Engine* engine() { in engine()
137 class Tracing::Engine {
139 Engine() {} in Engine() function
140 virtual ~Engine();
219 std::unique_ptr<Engine::Annotation> annotation_;
239 std::unique_ptr<Engine::Tracer> tracer_;
Dtracing.cc91 /*static*/ std::atomic<Tracing::Engine*> Tracing::tracing_engine_;
93 void Tracing::RegisterEngine(Engine* e) { in RegisterEngine()
97 Tracing::Engine::~Engine() {} in ~Engine()
98 Tracing::Engine::Annotation::~Annotation() {} in ~Annotation()
99 Tracing::Engine::Tracer::~Tracer() {} in ~Tracer()
/external/llvm/tools/llvm-diff/
DDifferenceEngine.cpp115 DifferenceEngine &Engine; member in __anon0d40331a0111::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/tools/llvm-diff/
DDifferenceEngine.cpp118 DifferenceEngine &Engine; member in __anon2f9b57460111::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/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 __anon07eb489e0111::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/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/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()
Dctor_engine_copy.pass.cpp23 typedef std::ranlux24_base Engine; in main() typedef
25 Engine e; in main()
/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()
Dctor_engine_copy.pass.cpp23 typedef std::minstd_rand0 Engine; in main() typedef
25 Engine e; in main()
/external/glide/library/src/main/java/com/bumptech/glide/
DGlideBuilder.java7 import com.bumptech.glide.load.engine.Engine;
28 private Engine engine;
140 GlideBuilder setEngine(Engine engine) { in setEngine()
178 engine = new Engine(memoryCache, diskCache, diskCacheService, sourceService); in createGlide()
/external/dagger2/compiler/src/it/functional-tests/src/main/java/test/tck/
DEngineModule.java21 import org.atinject.tck.auto.Engine;
27 Engine provideEngine(MembersInjector<V8Engine> injector) { in provideEngine()
/external/clang/lib/StaticAnalyzer/Core/
DExprEngineCallAndReturn.cpp67 Engine.enqueue(DstBegin); in processCallEnter()
326 NodeBuilderContext Ctx(Engine, calleeCtx->getCallSiteBlock(), CEENode); in processCallExit()
353 Engine.getWorkList()->enqueue(*PSI, calleeCtx->getCallSiteBlock(), in processCallExit()
442 Engine.getWorkList()->enqueue(N); in REGISTER_TRAIT_WITH_PROGRAMSTATE()
817 Optional<bool> MayInline = Engine.FunctionSummaries->mayInline(D); in shouldInlineCall()
826 Engine.FunctionSummaries->markMayInline(D); in shouldInlineCall()
828 Engine.FunctionSummaries->markShouldNotInline(D); in shouldInlineCall()
841 Engine.FunctionSummaries->markShouldNotInline(D); in shouldInlineCall()
858 if ((Engine.FunctionSummaries->getNumTimesInlined(D) > in shouldInlineCall()
871 Engine.FunctionSummaries->bumpNumTimesInlined(D); in shouldInlineCall()
/external/libvncserver/webclients/novnc/include/
Ddisplay.js64 if (Util.Engine.gecko) { Util.Debug("Browser: gecko " + Util.Engine.gecko); }
65 if (Util.Engine.webkit) { Util.Debug("Browser: webkit " + Util.Engine.webkit); }
66 if (Util.Engine.trident) { Util.Debug("Browser: trident " + Util.Engine.trident); }
67 if (Util.Engine.presto) { Util.Debug("Browser: presto " + Util.Engine.presto); }
315 if (Util.Engine.trident === 6) {
Dutil.js398 (Util.Engine.presto && this.readyState === 'loaded') ||
420 if (Util.Engine.trident) {
626 Util.Engine = {
636 if (Util.Engine.webkit) {
638 Util.Engine.webkit = detectActualWebkit(Util.Engine.webkit);
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DExprEngine.h63 CoreEngine Engine; variable
109 return Engine.ExecuteWorkList(L, Steps, nullptr);
119 return Engine.ExecuteWorkListWithInitialState(L, Steps, InitState, Dst); in ExecuteWorkListWithInitialState()
323 bool wasBlocksExhausted() const { return Engine.wasBlocksExhausted(); } in wasBlocksExhausted()
324 bool hasEmptyWorkList() const { return !Engine.getWorkList()->hasWork(); } in hasEmptyWorkList()
325 bool hasWorkRemaining() const { return Engine.hasWorkRemaining(); } in hasWorkRemaining()
327 const CoreEngine &getCoreEngine() const { return Engine; } in getCoreEngine()
/external/webrtc/tools/python_charts/
DREADME8 2. Download and install Google App Engine SDK for Python from 
10 3. Note which location you put App Engine in, as this will be needed later on.
35 of your App Engine installation,
/external/guice/core/test/com/googlecode/guice/
DGuiceTck.java31 import org.atinject.tck.auto.Engine;
48 bind(Engine.class).to(V8Engine.class); in suite()

12345678