Lines Matching refs:kcountsize
197 size_t kcountsize; in _dl_start_profile() local
228 kcountsize = textsize / HISTFRACTION; in _dl_start_profile()
258 + 4 + sizeof (struct gmon_hist_hdr) + kcountsize in _dl_start_profile()
306 hist_hdr.hist_size = kcountsize / sizeof (HISTCOUNTER); in _dl_start_profile()
402 narcsp = (uint32_t *) ((char *) kcount + kcountsize + sizeof (uint32_t)); in _dl_start_profile()
459 if (kcountsize < highpc - lowpc) in _dl_start_profile()
462 s_scale = ((double) kcountsize / (highpc - lowpc)) * SCALE_1_TO_1; in _dl_start_profile()
465 size_t quot = range / kcountsize; in _dl_start_profile()
472 s_scale = (SCALE_1_TO_1 * 256) / (range / (kcountsize / 256)); in _dl_start_profile()
474 s_scale = (SCALE_1_TO_1 * 256) / ((range * 256) / kcountsize); in _dl_start_profile()
481 __profil ((void *) kcount, kcountsize, lowpc, s_scale); in _dl_start_profile()