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

/macosx-10.9.5/llvmCore-3425.0.33/lib/Support/
H A Draw_ostream.cpp350 size_t BytesUsed = Fmt.print(OutBufCur, BufferBytesLeft); local
353 if (BytesUsed <= BufferBytesLeft) {
354 OutBufCur += BytesUsed;
360 NextBufferSize = BytesUsed;
372 size_t BytesUsed = Fmt.print(V.data(), NextBufferSize); local
374 // If BytesUsed fit into the vector, we win.
375 if (BytesUsed <= NextBufferSize)
376 return write(V.data(), BytesUsed);
379 assert(BytesUsed > NextBufferSize && "Didn't grow buffer!?");
380 NextBufferSize = BytesUsed;
[all...]

Completed in 108 milliseconds