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

References

include/llvm/Support/MathExtras.h
  306   unsigned char in[sizeof(Val)];
  307   unsigned char out[sizeof(Val)];
  308   std::memcpy(in, &Val, sizeof(Val));
  308   std::memcpy(in, &Val, sizeof(Val));
  309   for (unsigned i = 0; i < sizeof(Val); ++i)
  310     out[(sizeof(Val) - i) - 1] = BitReverseTable256[in[i]];
  311   std::memcpy(&Val, out, sizeof(Val));
  311   std::memcpy(&Val, out, sizeof(Val));
  312   return Val;