Searched defs:fhi (Results 1 - 1 of 1) sorted by relevance

/external/python/cpython2/Objects/
H A Dfloatobject.c2424 unsigned int fhi, flo; local
2466 /* fhi receives the high 28 bits; flo the low 24 bits (== 52 bits) */
2468 fhi = (unsigned int)f; /* Truncate */
2469 assert(fhi < 268435456);
2471 f -= (double)fhi;
2478 ++fhi;
2479 if (fhi >> 28) {
2481 fhi = 0;
2493 *p = (unsigned char) (((e & 0xF) << 4) | (fhi >> 24));
2497 *p = (fhi >> 1
2630 unsigned int fhi, flo; local
[all...]

Completed in 132 milliseconds