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

References

lib/Support/FoldingSet.cpp
   88   Bits.push_back(Size);
   89   if (!Size) return;
   91   unsigned Units = Size / 4;
  106       for (Pos += 4; Pos <= Size; Pos += 4) {
  114       for (Pos += 4; Pos <= Size; Pos += 4) {
  128   switch (Pos - Size) {
  129   case 1: V = (V << 8) | (unsigned char)String[Size - 3]; LLVM_FALLTHROUGH;
  130   case 2: V = (V << 8) | (unsigned char)String[Size - 2]; LLVM_FALLTHROUGH;
  131   case 3: V = (V << 8) | (unsigned char)String[Size - 1]; break;