reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
77 bExponent = normalize(&bSignificand); 90 bSignificand = (bSignificand | implicitBit) << 3; 90 bSignificand = (bSignificand | implicitBit) << 3; 97 const bool sticky = (bSignificand << (typeWidth - align)) != 0; 98 bSignificand = bSignificand >> align | sticky; 98 bSignificand = bSignificand >> align | sticky; 100 bSignificand = 1; // Set the sticky bit. b is known to be non-zero. 104 aSignificand -= bSignificand; 117 aSignificand += bSignificand;