HomeSort by relevance Sort by last modified time
    Searched defs:EE (Results 1 - 25 of 26) sorted by null

1 2

  /external/llvm/examples/HowToUseJIT/
HowToUseJIT.cpp 117 ExecutionEngine* EE = EngineBuilder(M).create();
125 GenericValue gv = EE->runFunction(FooF, noargs);
129 EE->freeMachineCodeForFunction(FooF);
130 delete EE;
  /external/speex/libspeex/
cb_search_sse.h 57 __m128 resj, EE;
68 EE = _mm_setzero_ps();
80 EE = _mm_add_ps(EE, _mm_mul_ps(resj, resj));
82 E[i>>2] = EE;
  /external/llvm/examples/Fibonacci/
fibonacci.cpp 106 ExecutionEngine *EE =
112 if (!EE) {
131 GenericValue GV = EE->runFunction(FibF, Args);
  /external/clang/test/CXX/expr/expr.const/
p3-0x.cpp 44 enum class EE { EE32 = ' ', EE65 = 'A', EE1 = (short)1, EE5 = E5 };
50 case EE::EE32: // expected-error {{not implicitly convertible}}
51 case (int)EE::EE32:
61 b = EE::EE32, // expected-error {{not implicitly convertible}}
62 c = (int)EE::EE32,
69 using Int = A<EE::EE32>; // expected-error {{not implicitly convertible}}
70 using Int = A<(int)EE::EE32>;
  /sdk/emulator/opengl/tests/emulator_test_renderer/
main.cpp 204 #define EE(x,y) SDLK_##x, EventInjector::KEY_##y,
206 EE(LEFT,LEFT)
207 EE(RIGHT,RIGHT)
208 EE(DOWN,DOWN)
209 EE(UP,UP)
210 EE(RETURN,ENTER)
211 EE(F1,SOFT1)
212 EE(ESCAPE,BACK)
213 EE(HOME,HOME)
  /external/llvm/unittests/ExecutionEngine/JIT/
JITEventListenerTest.cpp 65 EE(EngineBuilder(M)
71 const std::unique_ptr<ExecutionEngine> EE;
89 EE->RegisterJITEventListener(&Listener);
93 void *F1_addr = EE->getPointerToFunction(F1);
94 void *F2_addr = EE->getPointerToFunction(F2);
95 EE->getPointerToFunction(F1); // Should do nothing.
96 EE->freeMachineCodeForFunction(F1);
97 EE->freeMachineCodeForFunction(F2);
134 EE->RegisterJITEventListener(&Listener1);
135 EE->RegisterJITEventListener(&Listener2)
    [all...]
JITEventListenerTestCommon.h 62 llvm::ExecutionEngine* EE;
69 , EE(llvm::EngineBuilder(M)
126 EXPECT_TRUE(0 != EE->getPointerToFunction(f));
129 EE->freeMachineCodeForFunction(f);
140 EXPECT_TRUE(0 != EE->getPointerToFunction(f));
146 EE->freeMachineCodeForFunction(f);
162 EXPECT_TRUE(0 != EE->getPointerToFunction(f));
176 EE->freeMachineCodeForFunction(f);
191 EXPECT_TRUE(0 != EE->getPointerToFunction(f));
202 EE->freeMachineCodeForFunction(f)
    [all...]
  /external/llvm/utils/TableGen/
CodeEmitterGen.cpp 305 std::map<std::string, std::vector<std::string> >::iterator IE, EE;
306 for (IE = CaseMap.begin(), EE = CaseMap.end(); IE != EE; ++IE) {
  /external/clang/test/SemaCXX/
using-decl-1.cpp 244 struct EE { int EE; };
246 using E::EE; // expected-error-re {{no member named 'EE' in 'PR19171::E'{{$}}}}
  /external/llvm/examples/ParallelJIT/
ParallelJIT.cpp 116 ExecutionEngine* EE;
236 GenericValue gv = p->EE->runFunction(p->F, Args);
252 ExecutionEngine* EE = EngineBuilder(M).create();
258 struct threadParams add1 = { EE, add1F, 1000 };
259 struct threadParams fib1 = { EE, fibF, 39 };
260 struct threadParams fib2 = { EE, fibF, 42 };
  /external/llvm/include/llvm/Support/
GraphWriter.h 72 child_iterator EE = GTraits::child_end(Node);
75 for (unsigned i = 0; EI != EE && i != 64; ++EI, ++i) {
89 if (EI != EE && hasEdgeSourceLabels)
230 child_iterator EE = GTraits::child_end(Node);
231 for (unsigned i = 0; EI != EE && i != 64; ++EI, ++i)
234 for (; EI != EE; ++EI)
  /external/llvm/tools/lli/
lli.cpp 323 static ExecutionEngine *EE = nullptr;
329 delete EE;
341 static void addCygMingExtraModule(ExecutionEngine *EE,
372 EE->addModule(M);
498 EE = builder.create();
499 if (!EE) {
501 errs() << argv[0] << ": error creating EE: " << ErrorMsg << "\n";
503 errs() << argv[0] << ": unknown error creating EE!\n";
509 EE->setObjectCache(CacheManager);
527 EE->addModule(XMod)
    [all...]
  /sdk/emulator/opengl/tests/event_injector/
emulator-console.c 335 #define EE(x,y) if (keycode == x) return y;
sockets.c 76 EE(WSA_INVALID_HANDLE,EINVAL,"invalid handle") \
77 EE(WSA_NOT_ENOUGH_MEMORY,ENOMEM,"not enough memory") \
78 EE(WSA_INVALID_PARAMETER,EINVAL,"invalid parameter") \
79 EE(WSAEINTR,EINTR,"interrupted function call") \
80 EE(WSAEALREADY,EALREADY,"operation already in progress") \
81 EE(WSAEBADF,EBADF,"bad file descriptor") \
82 EE(WSAEACCES,EACCES,"permission denied") \
83 EE(WSAEFAULT,EFAULT,"bad address") \
84 EE(WSAEINVAL,EINVAL,"invalid argument") \
85 EE(WSAEMFILE,EMFILE,"too many opened files")
    [all...]
  /external/llvm/lib/CodeGen/
MachineCSE.cpp 286 MachineBasicBlock::const_iterator EE = CSMBB->end();
290 while (I != E && I != EE && I->isDebugValue())
293 if (I == EE) {
299 EE = MBB->end();
  /external/llvm/include/llvm/ExecutionEngine/
ExecutionEngine.h 72 ExecutionEngine &EE;
85 ExecutionEngineState(ExecutionEngine &EE);
279 "EE!");
332 /// used by clients of the EE that want to have an LLVM global overlay
366 /// getPointerToFunction - The different EE's represent function bodies in
376 /// getPointerToBasicBlock - The different EE's represent basic blocks in
  /external/llvm/lib/Transforms/InstCombine/
InstCombineVectorOps.cpp 284 Value *EE = Builder->CreateExtractElement(CI->getOperand(0),
286 Worklist.AddValue(EE);
287 return CastInst::Create(CI->getOpcode(), EE, EI.getType());
    [all...]
  /external/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp 272 void *reset(LLVMContext &C, ExecutionEngine *EE,
276 void *ArgvArray::reset(LLVMContext &C, ExecutionEngine *EE,
279 unsigned PtrSize = EE->getDataLayout()->getPointerSize();
295 EE->StoreValueToMemory(PTOGV(Dest), (GenericValue*)(Array+i*PtrSize),
300 EE->StoreValueToMemory(PTOGV(nullptr),
353 static bool isTargetNullPtr(ExecutionEngine *EE, void *Loc) {
354 unsigned PtrSize = EE->getDataLayout()->getPointerSize();
522 ExecutionEngine *EE = nullptr;
524 EE = ExecutionEngine::MCJITCtor(M, ErrorStr, MCJMM ? MCJMM : JMM,
527 EE = ExecutionEngine::JITCtor(M, ErrorStr, JMM
    [all...]
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 610 StructType::element_iterator EE = ST->element_end();
611 for (; EI != EE; ++EI) {
    [all...]
  /external/qemu/android/
sockets.c 74 EE(WSA_INVALID_HANDLE,EINVAL,"invalid handle") \
75 EE(WSA_NOT_ENOUGH_MEMORY,ENOMEM,"not enough memory") \
76 EE(WSA_INVALID_PARAMETER,EINVAL,"invalid parameter") \
77 EE(WSAEINTR,EINTR,"interrupted function call") \
78 EE(WSAEALREADY,EALREADY,"operation already in progress") \
79 EE(WSAEBADF,EBADF,"bad file descriptor") \
80 EE(WSAEACCES,EACCES,"permission denied") \
81 EE(WSAEFAULT,EFAULT,"bad address") \
82 EE(WSAEINVAL,EINVAL,"invalid argument") \
83 EE(WSAEMFILE,EMFILE,"too many opened files")
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy.cpp 809 // If we have an EE, the EE owns the module so just delete the EE.
879 ExecutionEngine *EE = compileModule(*it);
880 void *P = EE->getPointerToFunction(F);
970 ExecutionEngine *EE = compileModule(*it);
971 void *P = EE->getPointerToFunction(F);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 972 // If we have an EE, the EE owns the module so just delete the EE.
1035 ExecutionEngine *EE = EngineBuilder(M)
1040 if (!EE) {
1046 EE->setObjectCache(&OurObjectCache);
1059 FPM->add(new DataLayout(*EE->getDataLayout()));
1086 EE->finalizeObject();
1089 EngineMap[M] = EE;
1091 return EE;
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy.cpp 720 // If we have an EE, the EE owns the module so just delete the EE.
790 ExecutionEngine *EE = compileModule(*it);
791 void *P = EE->getPointerToFunction(F);
872 ExecutionEngine *EE = compileModule(*it);
873 void *P = EE->getPointerToFunction(F);
    [all...]
  /external/chromium_org/third_party/libaddressinput/src/java/src/com/android/i18n/addressinput/
RegionDataConstants.java 331 EE(new String[]{
    [all...]
  /prebuilts/tools/common/m2/repository/biz/aQute/bnd/1.50.0/
bnd-1.50.0.jar 

Completed in 433 milliseconds

1 2