Home | History | Annotate | Download | only in src

Lines Matching full:bits

42  * the same as gcc's __builtin_nan(), namely, discard the high order bits.
54 int bitpos; /* index into words (in bits) */
66 /* Scan backwards, filling in the bits in words[] as we go. */
83 uint32_t bits[2];
86 _scan_nan(u.bits, 2, s);
88 u.bits[1] |= 0x7ff80000;
90 u.bits[0] |= 0x7ff80000;
100 uint32_t bits[1];
103 _scan_nan(u.bits, 1, s);
104 u.bits[0] |= 0x7fc00000;