HomeSort by: relevance | last modified time | path
    Searched refs:OutBufEnd (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
raw_ostream.h 63 /// OutBufEnd. Thus a single comparison suffices to determine if we
70 /// OutBufEnd - OutBufStart >= 1).
79 char *OutBufStart, *OutBufEnd, *OutBufCur;
123 OutBufStart = OutBufEnd = OutBufCur = nullptr;
164 return OutBufEnd - OutBufStart;
189 if (OutBufCur >= OutBufEnd)
196 if (OutBufCur >= OutBufEnd)
203 if (OutBufCur >= OutBufEnd)
214 if (Size > (size_t)(OutBufEnd - OutBufCur))
  /src/external/apache2/llvm/dist/llvm/lib/Support/
raw_ostream.cpp 113 OutBufEnd = OutBufStart+Size;
117 assert(OutBufStart <= OutBufEnd && "Invalid size!");
222 if (LLVM_UNLIKELY(OutBufCur >= OutBufEnd)) {
242 if (LLVM_UNLIKELY(size_t(OutBufEnd - OutBufCur) < Size)) {
253 size_t NumBytes = OutBufEnd - OutBufCur;
263 if (BytesRemaining > size_t(OutBufEnd - OutBufCur)) {
284 assert(Size <= size_t(OutBufEnd - OutBufCur) && "Buffer overrun!");
313 size_t BufferBytesLeft = OutBufEnd - OutBufCur;

Completed in 21 milliseconds