Lines Matching refs:flo
2289 unsigned int fhi, flo;
2331 /* fhi receives the high 28 bits; flo the low 24 bits (== 52 bits) */
2338 flo = (unsigned int)(f + 0.5); /* Round */
2339 assert(flo <= 16777216);
2340 if (flo >> 24) {
2342 flo = 0;
2374 *p = (flo >> 16) & 0xFF;
2378 *p = (flo >> 8) & 0xFF;
2382 *p = flo & 0xFF;
2560 unsigned int fhi, flo;
2601 flo = *p << 16;
2605 flo |= *p << 8;
2609 flo |= *p;
2611 x = (double)fhi + (double)flo / 16777216.0; /* 2**24 */