Lines Matching defs:BytesUsed
314 size_t BytesUsed = Fmt.print(OutBufCur, BufferBytesLeft);
317 if (BytesUsed <= BufferBytesLeft) {
318 OutBufCur += BytesUsed;
324 NextBufferSize = BytesUsed;
336 size_t BytesUsed = Fmt.print(V.data(), NextBufferSize);
338 // If BytesUsed fit into the vector, we win.
339 if (BytesUsed <= NextBufferSize)
340 return write(V.data(), BytesUsed);
343 assert(BytesUsed > NextBufferSize && "Didn't grow buffer!?");
344 NextBufferSize = BytesUsed;