Searched refs:PROF_CNT_ADD (Results 1 - 3 of 3) sorted by relevance

/macosx-10.5.8/xnu-1228.15.4/osfmk/profiling/ppc/
H A Dprofile-md.h94 #define PROF_CNT_ADD(cnt,val) (((((cnt).low + (val)) < (val)) ? ((cnt).high++) : 0), ((cnt).low += (val))) macro
95 #define PROF_CNT_LADD(cnt,val) (PROF_CNT_ADD(cnt,(val).low), (cnt).high += (val).high)
101 #define LPROF_CNT_ADD(lp,val) PROF_CNT_ADD(lp,val)
/macosx-10.5.8/xnu-1228.15.4/osfmk/profiling/i386/
H A Dprofile-md.h55 * Cast the integer argument to PROF_CNT_ADD to unsigned long, so a short register is widened.
180 #define PROF_CNT_ADD(cnt,val) \ macro
206 #define PROF_CNT_ADD(cnt,val) (((((cnt).low + (val)) < (val)) ? ((cnt).high++) : 0), ((cnt).low += (val))) macro
207 #define PROF_CNT_LADD(cnt,val) (PROF_CNT_ADD(cnt,(val).low), (cnt).high += (val).high)
236 #define LPROF_CNT_ADD(lp,val) PROF_CNT_ADD(lp,val)
H A Dprofile-md.c862 PROF_CNT_ADD(pv->stats.gprof_overflow, hptr->overflow);
877 PROF_CNT_ADD(pv->stats.prof_overflow, pptr->overflow);
892 PROF_CNT_ADD(pv->stats.prof_overflow, fptr->prof.overflow);
906 PROF_CNT_ADD(pv->stats.overflow_ticks, lptr[i].high);

Completed in 76 milliseconds