Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/llvm/include/llvm/Support/
H A Draw_ostream.h81 char *OutBufStart, *OutBufEnd, *OutBufCur; variable
125 OutBufStart = OutBufEnd = OutBufCur = nullptr; in Kind()
166 return OutBufEnd - OutBufStart; in GetBufferSize()
191 if (OutBufCur >= OutBufEnd)
198 if (OutBufCur >= OutBufEnd)
205 if (OutBufCur >= OutBufEnd)
216 if (Size > (size_t)(OutBufEnd - OutBufCur))
/openbsd/gnu/llvm/llvm/lib/Support/
H A Draw_ostream.cpp119 OutBufEnd = OutBufStart+Size; in SetBufferAndMode()
123 assert(OutBufStart <= OutBufEnd && "Invalid size!"); in SetBufferAndMode()
228 if (LLVM_UNLIKELY(OutBufCur >= OutBufEnd)) { in write()
248 if (LLVM_UNLIKELY(size_t(OutBufEnd - OutBufCur) < Size)) { in write()
259 size_t NumBytes = OutBufEnd - OutBufCur; in write()
269 if (BytesRemaining > size_t(OutBufEnd - OutBufCur)) { in write()
290 assert(Size <= size_t(OutBufEnd - OutBufCur) && "Buffer overrun!"); in copy_to_buffer()
319 size_t BufferBytesLeft = OutBufEnd - OutBufCur; in operator <<()