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!");
269 if (BUILTIN_EXPECT(OutBufCur >= OutBufEnd, false)) {
289 if (BUILTIN_EXPECT(size_t(OutBufEnd - OutBufCur) < Size, false)) {
300 size_t NumBytes = OutBufEnd - OutBufCur;
325 assert(Size <= size_t(OutBufEnd - OutBufCur) && "Buffer overrun!");
348 size_t BufferBytesLeft = OutBufEnd - OutBufCur;

Completed in 130 milliseconds