reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
1579 if (isStringOfOnes(Mask, LSB, Length)) { 1580 Start = 63 - (LSB + Length - 1); 1581 End = 63 - LSB; 1587 if (isStringOfOnes(Mask ^ allOnes(BitSize), LSB, Length)) { 1588 assert(LSB > 0 && "Bottom bit must be set"); 1589 assert(LSB + Length < BitSize && "Top bit must be set"); 1590 Start = 63 - (LSB - 1); 1591 End = 63 - (LSB + Length);