Searched refs:mf (Results 1 - 25 of 138) sorted by relevance

123456

/macosx-10.10.1/ruby-106/ruby/ext/-test-/win32/dln/
H A Dextconf.rb12 open("Makefile", "wb") do |mf|
13 mf.puts m, "\n"
15 mf.print "#{sodir}$(DLLIB): #{dlntestlib}"
16 mf.puts
17 mf.puts "#{dlntestlib}: $(topdir)/dlntest.dll"
18 mf.puts
20 mf.puts "$(topdir)/dlntest.dll: DEFFILE := $(srcdir)/libdlntest.def"
21 mf.puts "$(topdir)/dlntest.dll: DLDFLAGS += -Wl,--out-implib,#{dlntestlib}"
23 mf.puts depend_rules("$(topdir)/dlntest.dll: libdlntest.o libdlntest.def")
24 mf
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/snack/snack/generic/
H A DjkSynthesis.c55 formantFilter_t mf = (formantFilter_t) f; local
60 if (Tcl_GetDoubleFromObj(interp, objv[0], &(mf->freq)) != TCL_OK) {
65 if (Tcl_GetDoubleFromObj(interp, objv[0], &(mf->freq)) != TCL_OK) {
68 if (Tcl_GetDoubleFromObj(interp, objv[1], &(mf->bw)) != TCL_OK) {
90 formantFilter_t mf; local
93 mf = (formantFilter_t) ckalloc(sizeof(formantFilter));
95 mf->freq = 0;
96 mf->bw = 1;
98 if (formantConfigProc((Snack_Filter) mf, interp, objc, objv) != TCL_OK) {
101 return (Snack_Filter) mf;
107 formantFilter_t mf = (formantFilter_t) f; local
127 formantFilter_t mf = (formantFilter_t) f; local
223 generatorFilter_t mf = (generatorFilter_t) f; local
282 generatorFilter_t mf; local
301 generatorFilter_t mf = (generatorFilter_t) f; local
319 generatorFilter_t mf = (generatorFilter_t) f; local
[all...]
H A DjkFilter.c440 mapFilter_t mf = (mapFilter_t) f; local
444 if (objc > mf->nm) {
445 ckfree((char *) mf->m);
446 mf->m = (float *) ckalloc(sizeof(float) * objc);
447 mf->nm = objc;
453 mf->m[i] = (float) val;
456 if (objc == 1 && mf->nm > 1 && mf->width > 0) {
458 for (i = 0; i < mf->nm; i = i + mf
469 mapFilter_t mf; local
492 mapFilter_t mf = (mapFilter_t) f; local
533 mapFilter_t mf = (mapFilter_t) f; local
562 mapFilter_t mf = (mapFilter_t) f; local
1258 fadeFilter_t mf = (fadeFilter_t) f; local
1314 fadeFilter_t mf; local
1330 fadeFilter_t mf = (fadeFilter_t) f; local
1344 fadeFilter_t mf = (fadeFilter_t) f; local
1395 fadeFilter_t mf = (fadeFilter_t) f; local
[all...]
/macosx-10.10.1/bind9-45.101/bind9/lib/dns/rdata/generic/
H A Dmf_4.h27 dns_name_t mf; member in struct:dns_rdata_mf
H A Dmf_4.c130 dns_rdata_mf_t *mf = source; local
135 REQUIRE(mf->common.rdtype == type);
136 REQUIRE(mf->common.rdclass == rdclass);
141 dns_name_toregion(&mf->mf, &region);
147 dns_rdata_mf_t *mf = target; local
155 mf->common.rdclass = rdata->rdclass;
156 mf->common.rdtype = rdata->type;
157 ISC_LINK_INIT(&mf->common, link);
162 dns_name_init(&mf
170 dns_rdata_mf_t *mf = source; local
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/lib/CodeGen/
H A DSpiller.h36 MachineFunction &mf,
42 MachineFunction &mf,
H A DSpiller.cpp53 MachineFunction *mf; member in class:__anon10022::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 DSlotIndexes.cpp54 mf = &fn;
66 MBBRanges.resize(mf->getNumBlockIDs());
67 idx2MBBMap.reserve(mf->size());
72 for (MachineFunction::iterator mbbItr = mf->begin(), mbbEnd = mf->end();
105 DEBUG(mf->print(dbgs(), this));
H A DRegAllocPBQP.cpp129 MachineFunction *mf; member in class:__anon9994::RegAllocPBQP
190 std::auto_ptr<PBQPRAProblem> PBQPBuilder::build(MachineFunction *mf, argument
196 MachineRegisterInfo *mri = &mf->getRegInfo();
197 const TargetRegisterInfo *tri = mf->getTarget().getRegisterInfo();
225 ArrayRef<uint16_t> rawOrder = trc->getRawAllocationOrder(*mf);
316 MachineFunction *mf,
321 std::auto_ptr<PBQPRAProblem> p = PBQPBuilder::build(mf, lis, loopInfo, vregs);
324 const TargetMachine &tm = mf->getTarget();
329 for (MachineFunction::const_iterator mbbItr = mf->begin(),
330 mbbEnd = mf
315 build( MachineFunction *mf, const LiveIntervals *lis, const MachineLoopInfo *loopInfo, const RegSet &vregs) argument
[all...]
H A DEdgeBundles.cpp39 bool EdgeBundles::runOnMachineFunction(MachineFunction &mf) { argument
40 MF = &mf;
H A DInterferenceCache.h98 void clear(MachineFunction *mf, SlotIndexes *indexes, LiveIntervals *lis) { argument
101 MF = mf;
H A DRegisterClassInfo.cpp35 void RegisterClassInfo::runOnMachineFunction(const MachineFunction &mf) { argument
37 MF = &mf;
/macosx-10.10.1/dtrace-147/DTTk/Bin/
H A Dvmstat.d20 * mf minor faults Kbytes
65 pi = 0; po = 0; re = 0; sr = 0; mf = 0; fr = 0;
78 "w", "swap", "free", "re", "mf", "pi", "po", "fr", "sr",
90 vminfo:::as_fault { mf += arg0; }
124 mf *= `_pagesize / 1024;
131 this->w, this->swap, this->free, re, mf, pi, po, fr, sr,
135 pi = 0; po = 0; re = 0; sr = 0; mf = 0; fr = 0;
H A Dvmstat-p.d18 * mf minor faults Kbytes
66 pi = 0; po = 0; re = 0; sr = 0; mf = 0; fr = 0;
83 "swap", "free", "re", "mf", "sr");
94 vminfo:::as_fault { mf += arg0; }
139 mf *= `_pagesize / 1024;
145 this->swap, this->free, re, mf, sr);
150 pi = 0; po = 0; re = 0; sr = 0; mf = 0; fr = 0;
/macosx-10.10.1/dtrace-147/DTTk/Mem/
H A Dvmstat.d20 * mf minor faults Kbytes
65 pi = 0; po = 0; re = 0; sr = 0; mf = 0; fr = 0;
78 "w", "swap", "free", "re", "mf", "pi", "po", "fr", "sr",
90 vminfo:::as_fault { mf += arg0; }
124 mf *= `_pagesize / 1024;
131 this->w, this->swap, this->free, re, mf, pi, po, fr, sr,
135 pi = 0; po = 0; re = 0; sr = 0; mf = 0; fr = 0;
H A Dvmstat-p.d18 * mf minor faults Kbytes
66 pi = 0; po = 0; re = 0; sr = 0; mf = 0; fr = 0;
83 "swap", "free", "re", "mf", "sr");
94 vminfo:::as_fault { mf += arg0; }
139 mf *= `_pagesize / 1024;
145 this->swap, this->free, re, mf, sr);
150 pi = 0; po = 0; re = 0; sr = 0; mf = 0; fr = 0;
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/CodeGen/
H A DCalcSpillWeights.h48 VirtRegAuxInfo(MachineFunction &mf, LiveIntervals &lis, argument
50 MF(mf), LIS(lis), Loops(loops) {}
H A DRegAllocPBQP.h127 MachineFunction *mf,
148 MachineFunction *mf,
/macosx-10.10.1/efax-38/efax/
H A Defax.c597 int send_data ( TFILE *mf, IFILE *f, int page, int pages, argument
627 done = err = ttymode ( mf, SEND ) ;
631 mf->start = time(0) ;
632 mf->mstart = proc_ms() ;
633 mf->bytes = mf->pad = mf->lines = 0 ;
646 mf->lines=0 ;
690 mf->pad ++ ;
694 sendbuf ( mf, bu
735 end_data( TFILE *mf, cap session, int ppm, int *good ) argument
864 receive_data( TFILE *mf, OFILE *f, cap session, int *nerr, int *nline ) argument
1187 getfr( TFILE *mf, uchar *buf, int getcmd ) argument
1294 c1sndrcv( TFILE *mf, cap local, char *localid, OFILE *outf, IFILE *inf, int pages, char *header, faxfont *font, int maxpgerr, int noretry, int calling ) argument
1833 c2sndrcv( TFILE *mf, cap local, char *localid, OFILE *outf, IFILE *inf, int pages, char *header, faxfont *font, int maxpgerr, int noretry, int calling ) argument
2334 modem_init( TFILE *mf, cap c, char *id, int calling, int poll, int capsset, int *preverse ) argument
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/test/intltest/
H A Dmsfmrgts.cpp455 MessageFormat *mf = new MessageFormat(originalPattern, status); local
459 mf->applyPattern(illegalPattern, status);
463 if (!originalPattern.equals(mf.toPattern()))
464 errln("pattern after: \"" + mf.toPattern() + "\"");
466 delete mf;
481 MessageFormat *mf = new MessageFormat("", status); local
486 mf->applyPattern(pattern, status);
487 failure(status, "mf->applyPattern", TRUE);
492 Formattable *array = mf->parse(UnicodeString(""), pp, count);
518 delete mf;
529 MessageFormat *mf = new MessageFormat("<{0}>", status); local
563 MessageFormat *mf = new MessageFormat(originalPattern, status); local
697 MessageFormat *mf = new MessageFormat("", status); local
738 MessageFormat *mf = new MessageFormat("{0}, {0}, {0}", status); local
828 MessageFormat *mf = new MessageFormat("pattern", status); local
867 MessageFormat *mf = new MessageFormat(pat, status); local
[all...]
/macosx-10.10.1/ruby-106/ruby/ext/
H A Dextmk.rb625 open($command_output, "wb") do |mf|
626 mf.puts "V = 0"
627 mf.puts "Q1 = $(V:1=)"
628 mf.puts "Q = $(Q1:0=@)"
629 mf.puts "ECHO1 = $(V:1=@:)"
630 mf.puts "ECHO = $(ECHO1:0=@echo)"
631 mf.puts "MFLAGS = -$(MAKEFLAGS)" if $nmake
632 mf.puts
634 def mf.macro(name, values, max = 70)
649 mf
[all...]
/macosx-10.10.1/vim-55/runtime/ftplugin/
H A Dant.vim35 \ "Manifest Files (*.mf)\t*.mf\n" .
/macosx-10.10.1/llvmCore-3425.0.34/lib/CodeGen/SelectionDAG/
H A DScheduleDAGVLIW.cpp69 ScheduleDAGVLIW(MachineFunction &mf, argument
72 : ScheduleDAGSDNodes(mf), AvailableQueue(availqueue), AA(aa) {
74 const TargetMachine &tm = mf.getTarget();
/macosx-10.10.1/ruby-106/ruby/ext/tk/sample/demos-en/
H A Drmt40 TkMenu.new(mb) {|mf|
41 mb.menu(mf)
42 TkMenu.new(mf) {|ma|
44 mf.add('cascade', 'label'=>'Select Application',
/macosx-10.10.1/ruby-106/ruby/ext/tk/sample/demos-jp/
H A Drmt40 TkMenu.new(mb) {|mf|
41 mb.menu(mf)
42 TkMenu.new(mf) {|ma|
44 mf.add('cascade', 'label'=>'Select Application',

Completed in 278 milliseconds

123456