reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
247 if (count < typeWidth) { 248 const bool sticky = (*lo << (typeWidth - count)) != 0; 249 *lo = *hi << (typeWidth - count) | *lo >> count | sticky; 249 *lo = *hi << (typeWidth - count) | *lo >> count | sticky; 250 *hi = *hi >> count; 251 } else if (count < 2 * typeWidth) { 252 const bool sticky = *hi << (2 * typeWidth - count) | *lo; 253 *lo = *hi >> (count - typeWidth) | sticky;