HomeSort by relevance Sort by last modified time
    Searched refs:OutBufEnd (Results 1 - 2 of 2) sorted by null

  /external/llvm/include/llvm/Support/
raw_ostream.h 45 /// OutBufEnd. Thus a single comparison suffices to determine if we
52 /// OutBufEnd - OutBufStart >= 1).
61 char *OutBufStart, *OutBufEnd, *OutBufCur;
86 OutBufStart = OutBufEnd = OutBufCur = nullptr;
115 return OutBufEnd - OutBufStart;
140 if (OutBufCur >= OutBufEnd)
147 if (OutBufCur >= OutBufEnd)
154 if (OutBufCur >= OutBufEnd)
165 if (Size > (size_t)(OutBufEnd - OutBufCur))
  /external/llvm/lib/Support/
raw_ostream.cpp 101 OutBufEnd = OutBufStart+Size;
105 assert(OutBufStart <= OutBufEnd && "Invalid size!");
278 if (LLVM_UNLIKELY(OutBufCur >= OutBufEnd)) {
298 if (LLVM_UNLIKELY(size_t(OutBufEnd - OutBufCur) < Size)) {
309 size_t NumBytes = OutBufEnd - OutBufCur;
319 if (BytesRemaining > size_t(OutBufEnd - OutBufCur)) {
340 assert(Size <= size_t(OutBufEnd - OutBufCur) && "Buffer overrun!");
363 size_t BufferBytesLeft = OutBufEnd - OutBufCur;

Completed in 164 milliseconds