Home | History | Annotate | Download | only in lib

Lines Matching refs:sticky

78     // Shift the significands to give us round, guard and sticky, and or in the
85 // Shift the significand of b by the difference in exponents, with a sticky
90 const bool sticky = bSignificand << (typeWidth - align);
91 bSignificand = bSignificand >> align | sticky;
93 bSignificand = 1; // sticky; b is known to be non-zero.
118 const bool sticky = aSignificand & 1;
119 aSignificand = aSignificand >> 1 | sticky;
131 const bool sticky = aSignificand << (typeWidth - shift);
132 aSignificand = aSignificand >> shift | sticky;
136 // Low three bits are round, guard, and sticky.