Lines Matching refs:frac
53 unsigned int frac:23;
59 unsigned int frac:23;
145 ** a double left shift the .frac so that hex digits are grouped
150 msg, F.flt, (F.layout.sign == 0 ? '+' : '-'), F.layout.exp, F.layout.frac << 1);
166 (R.layout.frac != E.layout.frac)) {
240 F.layout.frac = 1;
278 (R.layout.frac != E.layout.frac)) {
538 int num, den, frac;
611 B.layout.frac = g;
621 Z.layout.frac = 0x100000 | (g >> 3);
627 A.layout.frac |= 0x2;
630 B.layout.frac = g;
635 Z.layout.frac = guard>>3;
643 A.layout.frac = g;
649 Z.layout.frac = 0x100000;
650 Z.layout.frac |= g + (g>>3);
659 A.layout.frac = g;
663 Z.layout.frac |= (g >> 3);
669 Z.layout.frac = divs_guard_cases[g].frac;
678 A.layout.frac = g;
684 A.layout.frac = 1;
691 Z.layout.frac = 0x500000;
692 Z.layout.frac |= g + (g>>3) + ((g & 7)>> 2 ? 1 : 0);
701 LSB = Z.layout.frac & 1;
705 Z.layout.frac += 1;