Home
last modified time | relevance | path

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

/external/swiftshader/third_party/LLVM/include/llvm/Support/
Draw_ostream.h53 char *OutBufStart, *OutBufEnd, *OutBufCur; variable
78 OutBufStart = OutBufEnd = OutBufCur = 0;
108 return OutBufEnd - OutBufStart; in GetBufferSize()
134 if (OutBufCur >= OutBufEnd)
141 if (OutBufCur >= OutBufEnd)
148 if (OutBufCur >= OutBufEnd)
159 if (OutBufCur+Size > OutBufEnd)
/external/llvm/include/llvm/Support/
Draw_ostream.h61 char *OutBufStart, *OutBufEnd, *OutBufCur; variable
86 OutBufStart = OutBufEnd = OutBufCur = nullptr;
115 return OutBufEnd - OutBufStart; in GetBufferSize()
140 if (OutBufCur >= OutBufEnd)
147 if (OutBufCur >= OutBufEnd)
154 if (OutBufCur >= OutBufEnd)
165 if (Size > (size_t)(OutBufEnd - OutBufCur))
/external/llvm/lib/Support/
Draw_ostream.cpp105 OutBufEnd = OutBufStart+Size; in SetBufferAndMode()
109 assert(OutBufStart <= OutBufEnd && "Invalid size!"); in SetBufferAndMode()
280 if (LLVM_UNLIKELY(OutBufCur >= OutBufEnd)) { in write()
300 if (LLVM_UNLIKELY(size_t(OutBufEnd - OutBufCur) < Size)) { in write()
311 size_t NumBytes = OutBufEnd - OutBufCur; in write()
321 if (BytesRemaining > size_t(OutBufEnd - OutBufCur)) { in write()
342 assert(Size <= size_t(OutBufEnd - OutBufCur) && "Buffer overrun!"); in copy_to_buffer()
365 size_t BufferBytesLeft = OutBufEnd - OutBufCur; in operator <<()
/external/swiftshader/third_party/LLVM/lib/Support/
Draw_ostream.cpp98 OutBufEnd = OutBufStart+Size; in SetBufferAndMode()
102 assert(OutBufStart <= OutBufEnd && "Invalid size!"); in SetBufferAndMode()
268 if (BUILTIN_EXPECT(OutBufCur >= OutBufEnd, false)) { in write()
288 if (BUILTIN_EXPECT(size_t(OutBufEnd - OutBufCur) < Size, false)) { in write()
299 size_t NumBytes = OutBufEnd - OutBufCur; in write()
324 assert(Size <= size_t(OutBufEnd - OutBufCur) && "Buffer overrun!"); in copy_to_buffer()
347 size_t BufferBytesLeft = OutBufEnd - OutBufCur; in operator <<()