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

/external/llvm/include/llvm/Support/
H A Draw_ostream.h43 /// OutBufEnd. Thus a single comparison suffices to determine if we
50 /// OutBufEnd - OutBufStart >= 1).
59 char *OutBufStart, *OutBufEnd, *OutBufCur; member in class:llvm::raw_ostream
84 OutBufStart = OutBufEnd = OutBufCur = nullptr;
114 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/
H A Draw_ostream.cpp100 OutBufEnd = OutBufStart+Size;
104 assert(OutBufStart <= OutBufEnd && "Invalid size!");
277 if (LLVM_UNLIKELY(OutBufCur >= OutBufEnd)) {
297 if (LLVM_UNLIKELY(size_t(OutBufEnd - OutBufCur) < Size)) {
308 size_t NumBytes = OutBufEnd - OutBufCur;
317 if (BytesRemaining > size_t(OutBufEnd - OutBufCur)) {
338 assert(Size <= size_t(OutBufEnd - OutBufCur) && "Buffer overrun!");
361 size_t BufferBytesLeft = OutBufEnd - OutBufCur;

Completed in 1198 milliseconds