HomeSort by: relevance | last modified time | path
    Searched refs:fract (Results 1 - 25 of 40) sorted by relevancy

1 2

  /src/external/gpl3/gdb/dist/sim/testsuite/bfin/
random_0001.s 1 # Test for saturation behavior with fract multiplication
  /src/external/gpl3/gdb.old/dist/sim/testsuite/bfin/
random_0001.s 1 # Test for saturation behavior with fract multiplication
  /src/crypto/external/bsd/openssh/dist/
fmt_scaled.c 198 long long abval, fract = 0; local
216 fract = (i == 0) ? 0 : abval % scale_factors[i];
219 fract /= scale_factors[i - 1];
224 fract = (10 * fract + 512) / 1024;
226 if (fract == 10) {
231 fract = 0;
237 if (fract >= 5) {
247 number, fract, scale_chars[unit]);
  /src/external/gpl3/binutils/dist/gprof/
cg_arcs.c 161 if (parent->cg.prop.fract == 0.0)
171 if (arc->count == 0 || child == parent || child->cg.prop.fract == 0)
208 /* (1 - cg.prop.fract) gets lost along the way: */
209 prop_share = parent->cg.prop.fract * share;
213 arc->time *= parent->cg.prop.fract;
214 arc->child_time *= parent->cg.prop.fract;
247 if (member->cg.prop.fract == 0.0)
257 cyc->cg.prop.self = cyc->cg.prop.fract * cyc->hist.time;
362 child->cg.prop.fract = 0.0;
378 child->cg.prop.fract += parent->cg.prop.frac
    [all...]
mips.c 56 indirect_child.cg.prop.fract = 1.0;
symtab.h 84 double fract; /* What % of time propagates. */ member in struct:sym::__anon10173::__anon10174
utils.c 92 DBG (PROPDEBUG, printf ("%4.0f%% ", 100.0 * self->cg.prop.fract));
alpha.c 104 indirect_child.cg.prop.fract = 1.0;
symtab.c 77 sym->cg.prop.fract = 0.0;
vax.c 247 indirectchild.cg.prop.fract = 1.0;
  /src/external/gpl3/binutils.old/dist/gprof/
cg_arcs.c 161 if (parent->cg.prop.fract == 0.0)
171 if (arc->count == 0 || child == parent || child->cg.prop.fract == 0)
208 /* (1 - cg.prop.fract) gets lost along the way: */
209 prop_share = parent->cg.prop.fract * share;
213 arc->time *= parent->cg.prop.fract;
214 arc->child_time *= parent->cg.prop.fract;
247 if (member->cg.prop.fract == 0.0)
257 cyc->cg.prop.self = cyc->cg.prop.fract * cyc->hist.time;
362 child->cg.prop.fract = 0.0;
378 child->cg.prop.fract += parent->cg.prop.frac
    [all...]
mips.c 56 indirect_child.cg.prop.fract = 1.0;
symtab.h 84 double fract; /* What % of time propagates. */ member in struct:sym::__anon11646::__anon11647
utils.c 92 DBG (PROPDEBUG, printf ("%4.0f%% ", 100.0 * self->cg.prop.fract));
alpha.c 104 indirect_child.cg.prop.fract = 1.0;
symtab.c 77 sym->cg.prop.fract = 0.0;
vax.c 247 indirectchild.cg.prop.fract = 1.0;
  /src/external/gpl3/binutils/dist/gprofng/src/
symtab.h 86 double fract; /* What % of time propagates. */ member in struct:sym::__anon10313::__anon10314
gmon_symtab.cc 70 sym->cg.prop.fract = 0.0;
  /src/external/gpl3/gcc/dist/gcc/ginclude/
stdfix.h 35 #undef fract macro
38 #define fract _Fract macro
  /src/external/gpl3/gcc.old/dist/gcc/ginclude/
stdfix.h 35 #undef fract macro
38 #define fract _Fract macro
  /src/external/lgpl3/mpfr/dist/tests/
trandom_deviate.c 38 /* set random deviate to fract * 2^-expt. expt must be a multiple
39 * of W and cannot be 0. fract must be in [0,2^W) */
42 unsigned long fract, unsigned long expt)
44 rop->h = (expt > W ? 0ul : fract);
45 mpz_set_ui (rop->f, expt > W ? fract : 0ul);
  /src/external/mit/isl/dist/doc/
manual.tex 34 \providecommand{\fract}[1]{\left\{#1\right\}}
  /src/sys/dev/usb/
pseye.c 810 pseye_get_framerate(void *opaque, struct video_fract *fract)
813 fract->numerator = 1;
814 fract->denominator = 60;
820 pseye_set_framerate(void *opaque, struct video_fract *fract)
823 return pseye_get_framerate(opaque, fract);
uvideo.c 2220 uvideo_get_framerate(void *addr, struct video_fract *fract)
2234 fract->numerator = 1;
2235 fract->denominator = 10000000 / vs->vs_frame_interval;
2238 fract->numerator = 60;
2239 fract->denominator = 1001;
2242 fract->numerator = 30;
2243 fract->denominator = 1001;
2246 fract->numerator = vs->vs_frame_interval;
2247 fract->denominator = 10000000;
2255 uvideo_set_framerate(void *addr, struct video_fract *fract)
    [all...]

Completed in 32 milliseconds

1 2