Searched refs:prof (Results 1 - 20 of 20) sorted by relevance

/macosx-10.9.5/CPANInternal-140/DBIx-Class/t/storage/
H A Dstats.t27 my $prof = new DBIx::Test::Profiler();
28 $schema->storage->debugobj($prof);
32 ok($prof->{'query_start'}, 'query_start called');
33 ok($prof->{'query_end'}, 'query_end called');
34 ok(!$prof->{'txn_begin'}, 'txn_begin not called');
35 ok(!$prof->{'txn_commit'}, 'txn_commit not called');
37 $prof->reset();
41 ok($prof->{'txn_begin'}, 'txn_begin called');
45 ok($prof->{'query_start'}, 'query_start called');
46 ok($prof
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/tools/llvm-prof/
H A DMakefile1 ##===- tools/llvm-prof/Makefile ----------------------------*- Makefile -*-===##
11 TOOLNAME := llvm-prof
/macosx-10.9.5/xnu-2422.115.4/bsd/dev/dtrace/
H A Dprofile_prvd.c173 profile_probe_t *prof = pcpu->profc_probe; local
180 dtrace_probe(prof->prof_id, CPU->cpu_profile_pc,
188 dtrace_probe(prof->prof_id, saved_state64(kern_regs)->isf.rip, 0x0, 0, 0, 0);
197 dtrace_probe(prof->prof_id, 0xcafebabe,
202 dtrace_probe(prof->prof_id, 0x0, regs->isf.rip, 0, 0, 0);
206 dtrace_probe(prof->prof_id, 0x0, regs->eip, 0, 0, 0);
218 profile_probe_t *prof = arg; local
221 dtrace_probe(prof->prof_id, CPU->cpu_profile_pc,
229 dtrace_probe(prof->prof_id, saved_state64(kern_regs)->isf.rip, 0x0, 0, 0, 0);
237 dtrace_probe(prof
258 profile_probe_t *prof; local
476 profile_probe_t *prof = parg; local
497 profile_probe_t *prof = arg; local
541 profile_probe_t *prof = parg; local
587 profile_probe_t *prof = parg; local
[all...]
/macosx-10.9.5/xnu-2422.115.4/bsd/kern/
H A Dsubr_prof.c218 SYSCTL_PROC(_kern, KERN_PROF, prof, STLFLAG_NODE|CTLFLAG_RW | CTLFLAG_LOCKED,
352 #define PC_TO_INDEX(pc, prof) \
353 ((user_addr_t)(((u_quad_t)((pc) - (prof)->pr_off) * \
354 (u_quad_t)((prof)->pr_scale)) >> 16) & ~1)
381 struct user_uprof *prof; local
384 for (prof = &p->p_stats->user_p_prof; prof; prof = prof->pr_next) {
385 off = PC_TO_INDEX(pc, prof);
401 struct uprof *prof; local
[all...]
/macosx-10.9.5/xnu-2422.115.4/osfmk/mach/
H A Dprof.defs116 prof 2450; /* exc.defs from 2400 - 2449 */
/macosx-10.9.5/llvmCore-3425.0.33/tools/
H A DMakefile32 llvm-prof llvm-link \
/macosx-10.9.5/xnu-2422.115.4/osfmk/profiling/i386/
H A Dprofile-md.h77 * Add overflow support for {gprof,prof,old,dummy}_mcount counters.
80 * Add gprof/prof overflow support
113 * Split # records to # gprof and # prof records.
250 struct prof_ext prof; /* external prof struct */ member in struct:prof_int
251 prof_uptrint_t overflow; /* # times prof counter overflowed */
283 struct prof_int prof; /* -p stats for elf */ member in struct:gfuncs
317 prof_cnt_t prof_overflow; /* # times a prof count field overflowed */
/macosx-10.9.5/cxxfilt-11/cxxfilt/include/coff/
H A Dsym.h175 unsigned prof : 1; /* true if compiled with -pg */ member in struct:pdr
/macosx-10.9.5/llvmCore-3425.0.33/
H A DMakefile150 .PHONY: debug-opt-prof
151 debug-opt-prof:
/macosx-10.9.5/tcl-102/tcl_ext/snack/snack/generic/
H A DjkPitchCmd.c211 int i,prof,profondeur_locale=0; local
230 prof = *profondeur = 0;
253 prof = voisement_par_profondeur_des_pics( Coeff_Amdf[i][trame].rang-cst_step_min,
256 if ( prof > *profondeur) *profondeur = prof;
257 prof = voisement_par_profondeur_des_pics( Coeff_Amdf[i][trame].rang-cst_step_min,
260 if ( prof > profondeur_locale) profondeur_locale = prof;
/macosx-10.9.5/tcl-102/tcl_ext/tclx/tclx/tests/
H A Dprofile.test625 profrep profData calls prof.tmp "Profile Test 11.1"
626 GetProfRep prof.tmp
651 profrep profData real prof.tmp "Profile Test 11.2"
652 GetProfRep prof.tmp
677 profrep profData cpu prof.tmp "Profile Test 11.3"
678 GetProfRep prof.tmp
/macosx-10.9.5/ruby-104/ruby/
H A Dgc.c4197 VALUE prof; local
4207 prof = rb_hash_new();
4208 rb_hash_aset(prof, ID2SYM(rb_intern("GC_TIME")), DBL2NUM(objspace->profile.record[i].gc_time));
4209 rb_hash_aset(prof, ID2SYM(rb_intern("GC_INVOKE_TIME")), DBL2NUM(objspace->profile.record[i].gc_invoke_time));
4210 rb_hash_aset(prof, ID2SYM(rb_intern("HEAP_USE_SIZE")), SIZET2NUM(objspace->profile.record[i].heap_use_size));
4211 rb_hash_aset(prof, ID2SYM(rb_intern("HEAP_TOTAL_SIZE")), SIZET2NUM(objspace->profile.record[i].heap_total_size));
4212 rb_hash_aset(prof, ID2SYM(rb_intern("HEAP_TOTAL_OBJECTS")), SIZET2NUM(objspace->profile.record[i].heap_total_objects));
4213 rb_hash_aset(prof, ID2SYM(rb_intern("GC_IS_MARKED")), objspace->profile.record[i].is_marked);
4215 rb_hash_aset(prof, ID2SYM(rb_intern("GC_MARK_TIME")), DBL2NUM(objspace->profile.record[i].gc_mark_time));
4216 rb_hash_aset(prof, ID2SY
[all...]
/macosx-10.9.5/cxxfilt-11/cxxfilt/bfd/
H A Decoffswap.h352 intern->prof = 0 != (ext->p_bits1[0] & PDR_BITS1_PROF_BIG);
362 intern->prof = 0 != (ext->p_bits1[0] & PDR_BITS1_PROF_LITTLE);
410 | (intern->prof ? PDR_BITS1_PROF_BIG : 0)
421 | (intern->prof ? PDR_BITS1_PROF_LITTLE : 0)
H A Decofflink.c2065 each procedure and set the "prof" bit in the PDR to indicate
2136 /* Find PDR that is closest to OFFSET. If pdr.prof is set,
2138 simply pretend that pdr.prof *implies* a lower entry-point.
2146 if (offset >= (pdr.adr - 0x10 * pdr.prof))
2148 dist = offset - (pdr.adr - 0x10 * pdr.prof);
2186 offset -= pdr.adr - 0x10 * pdr.prof;
/macosx-10.9.5/tcl-102/tk84/tk/macosx/
H A DtkMacOSXDialog.c141 CMProfileRef prof;
201 cmerr = CMGetDefaultProfileBySpace(cmRGBData, &prof);
202 cpinfo.theColor.profile = prof;
203 cpinfo.dstProfile = prof;
214 cmerr = CMCloseProfile(prof);
140 CMProfileRef prof; local
/macosx-10.9.5/vim-53/runtime/syntax/
H A Dcabal.vim79 syn match cabalStatement "\cghc-prof-options"
H A Dvim.vim19 syn keyword vimCommand contained abc[lear] argdo argu[ment] bel[owright] bN[ext] breakd[el] b[uffer] caddb[uffer] cb[uffer] cex[pr] cg[etfile] checkt[ime] cnew[er] col[der] con[tinue] cq[uit] delc[ommand] diffoff diffu[pdate] dr[op] echom[sg] em[enu] endt[ry] exi[t] fina[lly] fix[del] foldd[oopen] go[to] hid[e] ij[ump] isp[lit] k laddb[uffer] la[st] lch[dir] lex[pr] lgete[xpr] l[ist] lmak[e] lN[ext] loc[kmarks] lpf[ile] lt[ag] lv[imgrep] ma[rk] mk[exrc] mkv[imrc] mz[scheme] new noh[lsearch] on[ly] ped[it] popu prev[ious] prof[ile] pta[g] ptn[ext] pts[elect] py[thon] r[ead] redr[aw] ret[ab] rightb[elow] rundo san[dbox] sbf[irst] sbN[ext] scripte[ncoding] setg[lobal] sh[ell] sla[st] sme sni[ff] sor[t] spelli[nfo] sp[lit] startg[replace] st[op] sunme syncbind tabd[o] tabl[ast] tabN[ext] tabs tcld[o] th[row] tm[enu] tp[revious] tu undoj[oin] uns[ilent] vert[ical] vi[sual] wa[ll] winp[os] wp[revious] ws[verb] xa[ll] xmenu xnoremenu
/macosx-10.9.5/libxslt-13/libxslt/libxslt/
H A DxsltInternals.h1724 long prof; /* the current profiled value */ member in struct:_xsltTransformContext
H A Dtransform.c265 ctxt->prof = value;
285 ctxt->prof = ctxt->profTab[ctxt->profNr - 1];
287 ctxt->prof = (long) 0;
533 cur->prof = 0;
/macosx-10.9.5/emacs-92/emacs/lisp/play/
H A Ddoctor.el815 (doctor-put-meaning prof 'school)

Completed in 214 milliseconds