Lines Matching defs:BytesUsed
316 size_t BytesUsed = Fmt.print(OutBufCur, BufferBytesLeft);
319 if (BytesUsed <= BufferBytesLeft) {
320 OutBufCur += BytesUsed;
326 NextBufferSize = BytesUsed;
338 size_t BytesUsed = Fmt.print(V.data(), NextBufferSize);
340 // If BytesUsed fit into the vector, we win.
341 if (BytesUsed <= NextBufferSize)
342 return write(V.data(), BytesUsed);
345 assert(BytesUsed > NextBufferSize && "Didn't grow buffer!?");
346 NextBufferSize = BytesUsed;