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

References

include/llvm/Support/raw_ostream.h
  102     OutBufStart = OutBufEnd = OutBufCur = nullptr;
  134     return OutBufEnd - OutBufStart;
  159     if (OutBufCur >= OutBufEnd)
  166     if (OutBufCur >= OutBufEnd)
  173     if (OutBufCur >= OutBufEnd)
  184     if (Size > (size_t)(OutBufEnd - OutBufCur))
lib/Support/raw_ostream.cpp
  115   OutBufEnd = OutBufStart+Size;
  119   assert(OutBufStart <= OutBufEnd && "Invalid size!");
  224   if (LLVM_UNLIKELY(OutBufCur >= OutBufEnd)) {
  244   if (LLVM_UNLIKELY(size_t(OutBufEnd - OutBufCur) < Size)) {
  255     size_t NumBytes = OutBufEnd - OutBufCur;
  265       if (BytesRemaining > size_t(OutBufEnd - OutBufCur)) {
  286   assert(Size <= size_t(OutBufEnd - OutBufCur) && "Buffer overrun!");
  309   size_t BufferBytesLeft = OutBufEnd - OutBufCur;