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

References

lib/ProfileData/InstrProf.cpp
  439   while (P < EndP) {
  441     uint64_t UncompressedSize = decodeULEB128(P, &N);
  442     P += N;
  443     uint64_t CompressedSize = decodeULEB128(P, &N);
  444     P += N;
  452       StringRef CompressedNameStrings(reinterpret_cast<const char *>(P),
  460       P += CompressedSize;
  465           StringRef(reinterpret_cast<const char *>(P), UncompressedSize);
  466       P += UncompressedSize;
  475     while (P < EndP && *P == 0)
  475     while (P < EndP && *P == 0)
  476       P++;