Searched defs:Engine (Results 1 - 20 of 20) sorted by relevance

/external/libcxx/test/std/numerics/rand/rand.adapt/rand.adapt.disc/
H A Dctor_engine_copy.pass.cpp12 // template<class Engine, size_t p, size_t r>
15 // explicit discard_block_engine(const Engine& e);
23 typedef std::ranlux24_base Engine; typedef
25 Engine e;
H A Dctor_engine_move.pass.cpp12 // template<class Engine, size_t p, size_t r>
15 // explicit discard_block_engine(const Engine& e);
23 typedef std::ranlux24_base Engine; typedef
25 Engine e;
26 Engine e0 = e;
/external/libcxx/test/std/numerics/rand/rand.adapt/rand.adapt.ibits/
H A Dctor_engine_copy.pass.cpp12 // template<class Engine, size_t w, class UIntType>
15 // explicit independent_bits_engine(const Engine& e);
23 typedef std::mt19937 Engine; typedef
24 typedef std::independent_bits_engine<Engine, 24, unsigned> Adaptor;
25 Engine e;
H A Dctor_engine_move.pass.cpp12 // template<class Engine, size_t w, class UIntType>
15 // explicit independent_bits_engine(const Engine& e);
23 typedef std::mt19937 Engine; typedef
24 typedef std::independent_bits_engine<Engine, 24, unsigned> Adaptor;
25 Engine e;
26 Engine e0 = e;
/external/libcxx/test/std/numerics/rand/rand.adapt/rand.adapt.shuf/
H A Dctor_engine_copy.pass.cpp12 // template<class Engine, size_t k>
15 // explicit shuffle_order_engine(const Engine& e);
23 typedef std::minstd_rand0 Engine; typedef
25 Engine e;
H A Dctor_engine_move.pass.cpp12 // template<class Engine, size_t k>
15 // explicit shuffle_order_engine(const Engine& e);
23 typedef std::minstd_rand0 Engine; typedef
25 Engine e;
26 Engine e0 = e;
/external/llvm/tools/llvm-diff/
H A Dllvm-diff.cpp44 static void diffGlobal(DifferenceEngine &Engine, Module &L, Module &R, argument
52 Engine.diff(LFn, RFn);
81 DifferenceEngine Engine(Consumer);
86 diffGlobal(Engine, *LModule, *RModule, GlobalsToCompare[I]);
90 Engine.diff(LModule.get(), RModule.get());
H A DDifferenceEngine.h38 Context(DifferenceEngine &Engine, Value *L, Value *R) : Engine(Engine) { argument
39 Engine.consumer.enterContext(L, R);
43 Engine.consumer.exitContext();
47 DifferenceEngine &Engine; member in struct:llvm::DifferenceEngine::Context
H A DDifferenceEngine.cpp116 DifferenceEngine &Engine; member in class:__anon11161::FunctionDifferenceEngine
162 Engine.logf("successor %l cannot be equivalent to %r; "
176 DifferenceEngine::Context C(Engine, L, R);
193 DifferenceEngine::Context C(Engine, L, R);
229 if (Complain) Engine.log("called functions differ");
233 if (Complain) Engine.log("argument counts differ");
239 Engine.logf("arguments %l and %r differ")
251 if (Complain) Engine.log("different instruction types");
258 if (Complain) Engine.log("different predicates");
269 if (Complain) Engine
456 FunctionDifferenceEngine(DifferenceEngine &Engine) argument
[all...]
/external/llvm/unittests/ExecutionEngine/
H A DExecutionEngineTest.cpp33 Engine.reset(EngineBuilder(std::move(Owner)).setErrorStr(&Error).create());
37 ASSERT_TRUE(Engine.get() != nullptr) << "EngineBuilder returned error: '"
48 std::unique_ptr<ExecutionEngine> Engine; member in class:__anon11246::ExecutionEngineTest
55 Engine->addGlobalMapping(G1, &Mem1);
56 EXPECT_EQ(&Mem1, Engine->getPointerToGlobalIfAvailable(G1));
57 EXPECT_EQ(&Mem1, Engine->getPointerToGlobalIfAvailable("Global1"));
59 Engine->updateGlobalMapping(G1, &Mem2);
60 EXPECT_EQ(&Mem2, Engine->getPointerToGlobalIfAvailable(G1));
61 Engine->updateGlobalMapping(G1, nullptr);
62 EXPECT_EQ(nullptr, Engine
[all...]
/external/v8/benchmarks/
H A Draytrace.js602 Flog.RayTracer.Engine = Class.create();
604 Flog.RayTracer.Engine.prototype = {
889 var raytracer = new Flog.RayTracer.Engine(
/external/regex-re2/re2/testing/
H A Dtester.h22 enum Engine { enum in namespace:re2
39 static inline void operator++(Engine& e, int unused) {
40 e = static_cast<Engine>(e+1);
43 static inline Engine operator+(Engine e, int i) {
44 return static_cast<Engine>(static_cast<int>(e)+i);
67 void RunSearch(Engine type,
72 void LogMatch(const char* prefix, Engine e, const StringPiece& text,
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DExprEngine.h63 CoreEngine Engine; member in class:clang::ento::ExprEngine
109 return Engine.ExecuteWorkList(L, Steps, nullptr);
119 return Engine.ExecuteWorkListWithInitialState(L, Steps, InitState, Dst);
316 bool wasBlocksExhausted() const { return Engine.wasBlocksExhausted(); }
317 bool hasEmptyWorkList() const { return !Engine.getWorkList()->hasWork(); }
318 bool hasWorkRemaining() const { return Engine.hasWorkRemaining(); }
320 const CoreEngine &getCoreEngine() const { return Engine; }
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/
H A DEngine.java28 public class Engine implements EngineJobListener, MemoryCache.ResourceRemovedListener, EngineResource.ResourceListener { class in inherits:EngineJobListener,MemoryCache.ResourceRemovedListener,EngineResource.ResourceListener
29 private static final String TAG = "Engine";
56 public Engine(MemoryCache memoryCache, DiskCache diskCache, ExecutorService diskCacheService, method in class:Engine
62 Engine(MemoryCache cache, DiskCache diskCache, ExecutorService diskCacheService, ExecutorService sourceService, method in class:Engine
/external/libvncserver/webclients/novnc/include/
H A Dutil.js266 Util.Engine = {
281 if (Util.Engine.webkit) {
283 Util.Engine.webkit = (function(v) {
287 })(Util.Engine.webkit);
/external/llvm/unittests/ExecutionEngine/MCJIT/
H A DMCJITCAPITest.cpp151 Engine = nullptr;
156 if (Engine)
157 LLVMDisposeExecutionEngine(Engine); variable
279 0, LLVMCreateMCJITCompilerForModule(&Engine, Module, &Options,
285 LLVMAddTargetData(LLVMGetExecutionEngineTargetData(Engine), pass);
304 LLVMAddTargetData(LLVMGetExecutionEngineTargetData(Engine), modulePasses);
328 LLVMExecutionEngineRef Engine; member in class:__anon11247::MCJITCAPITest
345 functionPointer.raw = LLVMGetPointerToGlobal(Engine, Function);
362 uint64_t raw = LLVMGetGlobalValueAddress(Engine, "simple_value");
376 uint64_t raw = LLVMGetFunctionAddress(Engine, "simple_functio
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.engine_2.0.0.v20100606.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/robolectric/lib/main/
H A Dh2-1.2.147.jarMETA-INF/MANIFEST.MF META-INF/services/java.sql.Driver org/h2/api/AggregateFunction ...
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...

Completed in 994 milliseconds