Home | History | Annotate | Download | only in python2.7

Lines Matching refs:fmant

232         fmant, expon = math.frexp(x)
233 if expon > 16384 or fmant >= 1 or fmant != fmant: # Infinity or NaN
240 fmant = math.ldexp(fmant, expon)
243 fmant = math.ldexp(fmant, 32)
244 fsmant = math.floor(fmant)
246 fmant = math.ldexp(fmant - fsmant, 32)
247 fsmant = math.floor(fmant)