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

/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/profile/
H A DInstrProfilingFile.c132 size_t BytesToWrite = IOVecs[I].ElmSize * IOVecs[I].NumElm; local
133 while (BytesToWrite > 0) {
135 (sizeof(uint64_t) > BytesToWrite) ? BytesToWrite : sizeof(uint64_t);
140 BytesToWrite -= PartialWriteLen;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/
H A Draw_ostream.cpp262 size_t BytesToWrite = Size - (Size % NumBytes); local
263 flush_tied_then_write(Ptr, BytesToWrite);
264 size_t BytesRemaining = Size - BytesToWrite;
267 return write(Ptr + BytesToWrite, BytesRemaining);
269 copy_to_buffer(Ptr + BytesToWrite, BytesRemaining);

Completed in 128 milliseconds