Searched defs:BytesUsed (Results 1 - 2 of 2) sorted by relevance

/external/clang/include/clang/Lex/
H A DScratchBuffer.h29 unsigned BytesUsed; member in class:clang::ScratchBuffer
/external/llvm/lib/Support/
H A Draw_ostream.cpp363 size_t BytesUsed = Fmt.print(OutBufCur, BufferBytesLeft); local
366 if (BytesUsed <= BufferBytesLeft) {
367 OutBufCur += BytesUsed;
373 NextBufferSize = BytesUsed;
385 size_t BytesUsed = Fmt.print(V.data(), NextBufferSize); local
387 // If BytesUsed fit into the vector, we win.
388 if (BytesUsed <= NextBufferSize)
389 return write(V.data(), BytesUsed);
392 assert(BytesUsed > NextBufferSize && "Didn't grow buffer!?");
393 NextBufferSize = BytesUsed;
[all...]

Completed in 654 milliseconds