gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 4 of 4 for funcall:scalbnf (0.00 seconds)
t2ex
bsd_source/lib/libc/src_bsd/math/e_powf.c - 8.7KB - 241 lines
237:         j += (n<<23);
238:         if((j>>23)<=0) z = scalbnf(z,n);       /* subnormal output */
239:         else SET_FLOAT_WORD(z,j);
bsd_source/lib/libc/src_bsd/math/k_rem_pio2f.c - 6.0KB - 194 lines
78:     /* compute n */
79:         z  = scalbnf(z,q0);            /* actual value of z */
80:         z -= (float)8.0*floorf(z*(float)0.125);        /* trim off integer >= 8 */
More results from k_rem_pio2f.c
bsd_source/lib/libc/src_bsd/math/s_scalbln.c - 893B - 42 lines
24:         if (n < INT_MIN)
25:                 return scalbnf(x, INT_MIN);
26:         else if (n > INT_MAX)
More results from s_scalbln.c
bsd_source/lib/libc/src_bsd/math/s_scalbnf.c - 1.9KB - 56 lines
54: {
55:         return scalbnf(x, n);
56: }