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 98 OutBufEnd = OutBufStart+Size;
102 assert(OutBufStart <= OutBufEnd && "Invalid size!");
268 if (BUILTIN_EXPECT(OutBufCur >= OutBufEnd, false)) {
288 if (BUILTIN_EXPECT(size_t(OutBufEnd - OutBufCur) < Size, false)) {
299 size_t NumBytes = OutBufEnd - OutBufCur;
324 assert(Size <= size_t(OutBufEnd - OutBufCur) && "Buffer overrun!");
347 size_t BufferBytesLeft = OutBufEnd - OutBufCur;

Completed in 2030 milliseconds