Searched defs:MM (Results 1 - 15 of 15) sorted by path

/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/
H A DExecutionEngine.cpp478 EngineBuilder::setMemoryManager(std::unique_ptr<MCJITMemoryManager> MM) { argument
479 MemMgr = std::shared_ptr<MCJITMemoryManager>(std::move(MM));
H A DExecutionEngineBindings.cpp438 void LLVMDisposeMCJITMemoryManager(LLVMMCJITMemoryManagerRef MM) { argument
439 delete unwrap(MM);
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyld.cpp861 createRuntimeDyldCOFF(Triple::ArchType Arch, RuntimeDyld::MemoryManager &MM, argument
865 RuntimeDyldCOFF::create(Arch, MM, Resolver);
872 createRuntimeDyldELF(RuntimeDyld::MemoryManager &MM, argument
875 std::unique_ptr<RuntimeDyldELF> Dyld(new RuntimeDyldELF(MM, Resolver));
882 createRuntimeDyldMachO(Triple::ArchType Arch, RuntimeDyld::MemoryManager &MM, argument
887 RuntimeDyldMachO::create(Arch, MM, Resolver);
/external/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
H A DRuntimeDyldCOFFX86_64.h35 RuntimeDyldCOFFX86_64(RuntimeDyld::MemoryManager &MM, argument
37 : RuntimeDyldCOFF(MM, Resolver) {}
H A DRuntimeDyldMachOAArch64.h26 RuntimeDyldMachOAArch64(RuntimeDyld::MemoryManager &MM, argument
28 : RuntimeDyldMachOCRTPBase(MM, Resolver) {}
H A DRuntimeDyldMachOARM.h28 RuntimeDyldMachOARM(RuntimeDyld::MemoryManager &MM, argument
30 : RuntimeDyldMachOCRTPBase(MM, Resolver) {}
H A DRuntimeDyldMachOI386.h25 RuntimeDyldMachOI386(RuntimeDyld::MemoryManager &MM, argument
27 : RuntimeDyldMachOCRTPBase(MM, Resolver) {}
H A DRuntimeDyldMachOX86_64.h25 RuntimeDyldMachOX86_64(RuntimeDyld::MemoryManager &MM, argument
27 : RuntimeDyldMachOCRTPBase(MM, Resolver) {}
/external/llvm/lib/Transforms/Vectorize/
H A DBBVectorize.cpp2258 std::vector<Value *> &MM = CandidatePairs[S->second]; local
2259 for (std::vector<Value *>::iterator M = MM.begin(), ME = MM.end();
/external/llvm/tools/lli/
H A Dlli.cpp658 RemoteMemoryManager *MM = static_cast<RemoteMemoryManager*>(RTDyldMM); local
685 MM->setRemoteTarget(Target.get());
/external/llvm/unittests/ExecutionEngine/MCJIT/
H A DMCJITCAPITest.cpp440 TestReserveAllocationSpaceMemoryManager* MM = new TestReserveAllocationSpaceMemoryManager(); local
444 Options.MCJMM = wrap(MM);
462 EXPECT_LE(MM->UsedCodeSize, MM->ReservedCodeSize);
463 EXPECT_LE(MM->UsedDataSizeRO, MM->ReservedDataSizeRO);
464 EXPECT_LE(MM->UsedDataSizeRW, MM->ReservedDataSizeRW);
465 EXPECT_TRUE(MM->UsedCodeSize > 0);
466 EXPECT_TRUE(MM
[all...]
H A DMCJITTestBase.h292 , MM(new SectionMemoryManager)
323 .setMCJITMemoryManager(std::move(MM))
342 std::unique_ptr<RTDyldMemoryManager> MM; member in class:llvm::MCJITTestBase
/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/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)));

Completed in 343 milliseconds