Home | History | Annotate | Download | only in builtins

Lines Matching full:sticky

74     // Shift the significands to give us round, guard and sticky, and or in the
81 // Shift the significand of b by the difference in exponents, with a sticky
86 const bool sticky = bSignificand << (typeWidth - align);
87 bSignificand = bSignificand >> align | sticky;
89 bSignificand = 1; // sticky; b is known to be non-zero.
111 const bool sticky = aSignificand & 1;
112 aSignificand = aSignificand >> 1 | sticky;
124 const bool sticky = aSignificand << (typeWidth - shift);
125 aSignificand = aSignificand >> shift | sticky;
129 // Low three bits are round, guard, and sticky.