Searched defs:mf (Results 1 - 25 of 55) sorted by relevance

123

/external/clang/test/CXX/temp/temp.spec/temp.explicit/
H A Dp5.cpp5 void mf() { } function in class:N::Y
17 template void N::Y<double>::mf();
H A Dp2.cpp4 template<class T> class Array { void mf() { } }; function in class:Array
7 template void Array<int>::mf();
/external/skia/samplecode/
H A DSampleBigBlur.cpp32 SkMaskFilter* mf = SkBlurMaskFilter::Create( local
36 paint.setMaskFilter(mf)->unref();
H A DSampleTextureDomain.cpp84 SkMaskFilter* mf = SkBlurMaskFilter::Create( local
89 paint.setMaskFilter(mf)->unref();
97 mf = SkBlurMaskFilter::Create(
101 paint.setMaskFilter(mf)->unref();
H A DSampleDrawLooper.cpp53 SkMaskFilter* mf = SkBlurMaskFilter::Create(SkIntToScalar(gParams[i].fBlur), local
55 paint->setMaskFilter(mf)->unref();
H A DSampleBlur.cpp97 SkMaskFilter* mf = SkBlurMaskFilter::Create(20, local
100 paint.setMaskFilter(mf)->unref();
109 SkMaskFilter* mf = SkBlurMaskFilter::Create(4, local
112 paint.setMaskFilter(mf)->unref();
H A DSampleStrokePath.cpp170 SkMaskFilter* mf; local
174 mf = SkBlurMaskFilter::Create(radius, gStyle[x - 1]);
175 paint.setMaskFilter(mf)->unref();
/external/llvm/include/llvm/CodeGen/
H A DCalcSpillWeights.h48 VirtRegAuxInfo(MachineFunction &mf, LiveIntervals &lis, argument
50 MF(mf), LIS(lis), Loops(loops) {}
/external/llvm/lib/CodeGen/
H A DRegisterClassInfo.cpp34 void RegisterClassInfo::runOnMachineFunction(const MachineFunction &mf) { argument
36 MF = &mf;
H A DScheduleDAG.cpp36 ScheduleDAG::ScheduleDAG(MachineFunction &mf) argument
37 : TM(mf.getTarget()),
40 MF(mf), MRI(mf.getRegInfo()),
H A DEdgeBundles.cpp39 bool EdgeBundles::runOnMachineFunction(MachineFunction &mf) { argument
40 MF = &mf;
H A DCallingConvLower.cpp26 CCState::CCState(CallingConv::ID CC, bool isVarArg, MachineFunction &mf, argument
29 : CallingConv(CC), IsVarArg(isVarArg), MF(mf), TM(tm),
H A DInterferenceCache.cpp25 void InterferenceCache::init(MachineFunction *mf, argument
30 MF = mf;
35 Entries[i].clear(mf, indexes, lis);
H A DRegAllocBasic.cpp109 virtual bool runOnMachineFunction(MachineFunction &mf);
272 bool RABasic::runOnMachineFunction(MachineFunction &mf) { argument
275 << mf.getName() << '\n');
277 MF = &mf;
H A DSpiller.cpp53 MachineFunction *mf; member in class:__anon8734::SpillerBase
62 SpillerBase(MachineFunctionPass &pass, MachineFunction &mf, VirtRegMap &vrm) argument
63 : pass(&pass), mf(&mf), vrm(&vrm)
66 mfi = mf.getFrameInfo();
67 mri = &mf.getRegInfo();
68 tii = mf.getTarget().getInstrInfo();
69 tri = mf.getTarget().getRegisterInfo();
172 TrivialSpiller(MachineFunctionPass &pass, MachineFunction &mf, argument
174 : SpillerBase(pass, mf, vr
186 createSpiller(MachineFunctionPass &pass, MachineFunction &mf, VirtRegMap &vrm) argument
[all...]
H A DInterferenceCache.h98 void clear(MachineFunction *mf, SlotIndexes *indexes, LiveIntervals *lis) { argument
101 MF = mf;
H A DSpillPlacement.cpp170 bool SpillPlacement::runOnMachineFunction(MachineFunction &mf) { argument
171 MF = &mf;
179 BlockFrequency.resize(mf.getNumBlockIDs());
180 for (MachineFunction::iterator I = mf.begin(), E = mf.end(); I != E; ++I) {
H A DVirtRegMap.cpp51 bool VirtRegMap::runOnMachineFunction(MachineFunction &mf) { argument
52 MRI = &mf.getRegInfo();
53 TII = mf.getTarget().getInstrInfo();
54 TRI = mf.getTarget().getRegisterInfo();
55 MF = &mf;
/external/skia/gm/
H A Dblurs.cpp52 SkMaskFilter* mf = SkBlurMaskFilter::Create( local
55 paint.setMaskFilter(mf)->unref();
66 SkMaskFilter* mf = SkBlurMaskFilter::Create( local
71 paint.setMaskFilter(mf)->unref();
/external/clang/test/Analysis/
H A Dstack-addr-ps.cpp66 int *mf() { function
/external/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGVLIW.cpp69 ScheduleDAGVLIW(MachineFunction &mf, argument
72 : ScheduleDAGSDNodes(mf), AvailableQueue(availqueue), AA(aa) {
74 const TargetMachine &tm = mf.getTarget();
H A DFunctionLoweringInfo.cpp62 void FunctionLoweringInfo::set(const Function &fn, MachineFunction &mf) { argument
64 MF = &mf;
146 MachineBasicBlock *MBB = mf.CreateMachineBasicBlock(BB);
H A DScheduleDAGSDNodes.cpp48 ScheduleDAGSDNodes::ScheduleDAGSDNodes(MachineFunction &mf) argument
49 : ScheduleDAG(mf), BB(0), DAG(0),
50 InstrItins(mf.getTarget().getInstrItineraryData()) {}
/external/skia/bench/
H A DBlurBench.cpp62 SkMaskFilter* mf = SkBlurMaskFilter::Create(fRadius, fStyle, 0); local
63 paint.setMaskFilter(mf)->unref();
/external/llvm/lib/Target/X86/
H A DX86MCInstLower.cpp32 X86MCInstLower::X86MCInstLower(Mangler *mang, const MachineFunction &mf, argument
34 : Ctx(mf.getContext()), Mang(mang), MF(mf), TM(mf.getTarget()),

Completed in 399 milliseconds

123