Searched refs:OutBufEnd (Results 1 - 2 of 2) sorted by relevance

/external/llvm/include/llvm/Support/
H A Draw_ostream.h37 /// OutBufEnd. Thus a single comparison suffices to determine if we
44 /// OutBufEnd - OutBufStart >= 1).
53 char *OutBufStart, *OutBufEnd, *OutBufCur; member in class:llvm::raw_ostream
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/
H A Draw_ostream.cpp99 OutBufEnd = OutBufStart+Size;
103 assert(OutBufStart <= OutBufEnd && "Invalid size!");
269 if (LLVM_UNLIKELY(OutBufCur >= OutBufEnd)) {
289 if (LLVM_UNLIKELY(size_t(OutBufEnd - OutBufCur) < Size)) {
300 size_t NumBytes = OutBufEnd - OutBufCur;
325 assert(Size <= size_t(OutBufEnd - OutBufCur) && "Buffer overrun!");
348 size_t BufferBytesLeft = OutBufEnd - OutBufCur;

Completed in 80 milliseconds