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 37 /// OutBufEnd. Thus a single comparison suffices to determine if we
44 /// OutBufEnd - OutBufStart >= 1).
53 char *OutBufStart, *OutBufEnd, *OutBufCur;
78 OutBufStart = OutBufEnd = OutBufCur = 0;
108 return OutBufEnd - OutBufStart;
134 if (OutBufCur >= OutBufEnd)
141 if (OutBufCur >= OutBufEnd)
148 if (OutBufCur >= OutBufEnd)
159 if (OutBufCur+Size > OutBufEnd)
  /external/llvm/lib/Support/
raw_ostream.cpp 99 OutBufEnd = OutBufStart+Size;
103 assert(OutBufStart <= OutBufEnd && "Invalid size!");
270 if (LLVM_UNLIKELY(OutBufCur >= OutBufEnd)) {
290 if (LLVM_UNLIKELY(size_t(OutBufEnd - OutBufCur) < Size)) {
301 size_t NumBytes = OutBufEnd - OutBufCur;
310 if (BytesRemaining > size_t(OutBufEnd - OutBufCur)) {
331 assert(Size <= size_t(OutBufEnd - OutBufCur) && "Buffer overrun!");
354 size_t BufferBytesLeft = OutBufEnd - OutBufCur;

Completed in 58 milliseconds