Home | History | Annotate | Download | only in useful

Lines Matching defs:sign

75    S is the sign bit.  For runs X----X, at least one of the Xs must be
77 there is an explicitly represented leading 1, and a sign bit,
91 sign bit, giving 64 in total.
107 UChar sign;
109 sign = toUChar( (f64[7] >> 7) & 1 );
130 f80[9] = toUChar( sign << 7 );
161 f80[9] = toUChar( (sign << 7) | ((bexp >> 8) & 0xFF) );
178 f80[9] = toUChar( (sign << 7) | 0x7F );
196 f80[9] = toUChar( (sign << 7) | 0x7F );
205 f80[9] = toUChar( (sign << 7) | 0x7F );
219 f80[9] = toUChar( (sign << 7) | ((bexp >> 8) & 0xFF) );
248 UChar sign;
250 sign = toUChar((f80[9] >> 7) & 1);
259 f64[7] = toUChar(sign << 7);
284 f64[7] = toUChar((sign << 7) | 0x7F);
300 f64[7] = toUChar((sign << 7) | 0x7F);
307 f64[7] = toUChar((sign << 7) | 0x7F);
322 /* On a PIII, these QNaNs always appear with sign==1. I have
324 f64[7] = (1 /*sign*/ << 7) | 0x7F;
335 f64[7] = toUChar((sign << 7) | 0x7F);
344 f64[7] = toUChar(sign << 7);
388 f64[7] = toUChar( (sign << 7) | ((bexp >> 4) & 0x7F) );
566 -- this covers the sign, exponent and leading part of the
608 -- this covers the sign, exponent and leading part of the