Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/profile/
H A DInstrProfilingFile.c134 size_t BytesToWrite = IOVecs[I].ElmSize * IOVecs[I].NumElm; in fileWriter() local
135 while (BytesToWrite > 0) { in fileWriter()
137 (sizeof(uint64_t) > BytesToWrite) ? BytesToWrite : sizeof(uint64_t); in fileWriter()
142 BytesToWrite -= PartialWriteLen; in fileWriter()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Support/
H A Draw_ostream.cpp260 size_t BytesToWrite = Size - (Size % NumBytes); in write() local
261 flush_tied_then_write(Ptr, BytesToWrite); in write()
262 size_t BytesRemaining = Size - BytesToWrite; in write()
265 return write(Ptr + BytesToWrite, BytesRemaining); in write()
267 copy_to_buffer(Ptr + BytesToWrite, BytesRemaining); in write()