reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/Support/MathExtras.h
  353       N > 0, "isShiftedInt<0> doesn't make sense (refers to a 0-bit number.");
  354   static_assert(N + S <= 64, "isShiftedInt<N, S> with N + S > 64 is too wide.");
  355   return isInt<N + S>(x) && (x % (UINT64_C(1) << S) == 0);