Searched defs:MM (Results 1 - 12 of 12) sorted by relevance

/external/llvm/include/llvm/ExecutionEngine/
H A DRuntimeDyld.h40 RTDyldMemoryManager *MM; member in class:llvm::RuntimeDyld
/external/clang/test/CodeGenCXX/
H A Dconst-init.cpp55 // CHECK-NOT: {{.*}}MM{{.*}} = {{.*}}constant
56 const MutableMember MM = { 0 }; local
57 return ++MM.n;
/external/llvm/lib/ExecutionEngine/MCJIT/
H A DMCJIT.h31 LinkingMemoryManager(MCJIT *Parent, RTDyldMemoryManager *MM) argument
32 : ParentEngine(Parent), ClientMM(MM) {}
H A DMCJIT.cpp59 MCJIT::MCJIT(Module *m, TargetMachine *tm, RTDyldMemoryManager *MM, argument
61 : ExecutionEngine(m), TM(tm), Ctx(nullptr), MemMgr(this, MM), Dyld(&MemMgr),
/external/llvm/tools/lli/
H A Dlli.cpp661 RemoteMemoryManager *MM = static_cast<RemoteMemoryManager*>(RTDyldMM); local
688 MM->setRemoteTarget(Target.get());
/external/llvm/unittests/ExecutionEngine/MCJIT/
H A DMCJITCAPITest.cpp410 TestReserveAllocationSpaceMemoryManager* MM = new TestReserveAllocationSpaceMemoryManager(); local
414 Options.MCJMM = wrap(MM);
432 EXPECT_LE(MM->UsedCodeSize, MM->ReservedCodeSize);
433 EXPECT_LE(MM->UsedDataSizeRO, MM->ReservedDataSizeRO);
434 EXPECT_LE(MM->UsedDataSizeRW, MM->ReservedDataSizeRW);
435 EXPECT_TRUE(MM->UsedCodeSize > 0);
436 EXPECT_TRUE(MM
[all...]
H A DMCJITTestBase.h283 , MM(new SectionMemoryManager)
321 .setMCJITMemoryManager(MM)
341 RTDyldMemoryManager *MM; member in class:llvm::MCJITTestBase
/external/llvm/lib/ExecutionEngine/
H A DExecutionEngineBindings.cpp439 void LLVMDisposeMCJITMemoryManager(LLVMMCJITMemoryManagerRef MM) { argument
440 delete unwrap(MM);
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyld.cpp686 MM = mm;
693 createRuntimeDyldELF(RTDyldMemoryManager *MM, bool ProcessAllSections) { argument
694 std::unique_ptr<RuntimeDyldELF> Dyld(new RuntimeDyldELF(MM));
700 createRuntimeDyldMachO(RTDyldMemoryManager *MM, bool ProcessAllSections) { argument
701 std::unique_ptr<RuntimeDyldMachO> Dyld(new RuntimeDyldMachO(MM));
714 Dyld = createRuntimeDyldELF(MM, ProcessAllSections).release();
718 Dyld = createRuntimeDyldMachO(MM, ProcessAllSections).release();
740 Dyld = createRuntimeDyldELF(MM, ProcessAllSections).release();
754 Dyld = createRuntimeDyldMachO(MM, ProcessAllSections).release();
/external/speex/libspeex/
H A Dpreprocess.c839 spx_word32_t MM; local
853 MM = hypergeom_gain(theta);
855 st->gain[i] = EXTRACT16(MIN32(Q15_ONE, MULT16_32_Q15(prior_ratio, MM)));
883 spx_word32_t MM; local
895 MM = hypergeom_gain(theta);
897 g = EXTRACT16(MIN32(Q15_ONE, MULT16_32_Q15(prior_ratio, MM)));
/external/opencv/cv/src/
H A Dcvlkpyramid.cpp1042 CvMat MM = cvMat( 6, 1, CV_64F, M->data.db ); local
1081 cvSolve( &A, &B, &MM, CV_SVD );
1087 CvMat MM = cvMat( 4, 1, CV_64F, m ); local
1122 cvSolve( &A, &B, &MM, CV_SVD );
/external/llvm/lib/Transforms/Vectorize/
H A DBBVectorize.cpp2262 std::vector<Value *> &MM = CandidatePairs[S->second]; local
2263 for (std::vector<Value *>::iterator M = MM.begin(), ME = MM.end();

Completed in 185 milliseconds