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

/illumos-gate/usr/src/lib/libc/port/fp/
H A Dpack_float.c100 round(unpacked *pu, int roundword, enum fp_direction_type rd, int *ex) argument
103 * the roundbit is pu->significand[roundword] & 0x80000000
110 for (is = (roundword + 1); is < UNPACKED_SIZE; is++)
112 /* Condense extra bits into sticky bottom of roundword. */
113 pu->significand[roundword] |= 1;
116 if (pu->significand[roundword] == 0)
121 increment = pu->significand[roundword] >= 0x80000000;
127 increment = (pu->sign == 0) & (pu->significand[roundword] != 0);
130 increment = (pu->sign != 0) & (pu->significand[roundword] != 0);
135 is = roundword;
[all...]

Completed in 57 milliseconds