Lines Matching defs:sf
113 #define DBL_ADDRPERCELL (((double)bias)/sf)
351 long sf; /* Scale for index into pcounts: */
352 /* i(pc) = ((pc - pc_l) * sf)/bias. */
558 * tick counters, n_pc, is computed the so-called "scale", sf, used
561 * (pc - pc_l) * sf
578 * logically equivalent to 1/(sf/bias), and the latter is much
597 sf = (BIAS * (double)n_pc)/pc_m;
599 * Now adjust bias and sf so that there is no overflow
605 sf >>= 1;
615 "sf = %d, s_inv = %d bias = %d\n",
616 (long)sf, s_inv, bias);
804 i0 = (((unsigned)pc0 - (unsigned)pc_l) * sf)/bias;
807 i1 = (((unsigned)pc1 - (unsigned)pc_l) * sf)/bias;
813 pc00 = pc_l + (unsigned long)((bias * i0)/sf);
816 pc10 = pc_l + (unsigned long)((bias * i1)/sf);
832 t += PROFSEC(ticks * ((double)(pc1 - pc0) * sf)/bias);
850 ticks*(1-((double)(pc0-pc00) *sf)/bias));
881 (pc1 - pc10)*sf)/bias);
1106 Fprint(stderr, "%#lx scale factor\n", (long)sf);