Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DGOFFObjectWriter.cpp207 size_t BytesToWrite = bytesToNextPhysicalRecord(); in write_impl() local
208 if (BytesToWrite > Size) in write_impl()
209 BytesToWrite = Size; in write_impl()
210 OS.write(Ptr + Idx, BytesToWrite); in write_impl()
211 Idx += BytesToWrite; in write_impl()
212 Size -= BytesToWrite; in write_impl()
213 RemainingSize -= BytesToWrite; in write_impl()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A Draw_ostream.cpp267 size_t BytesToWrite = Size - (Size % NumBytes); in write() local
268 write_impl(Ptr, BytesToWrite); in write()
269 size_t BytesRemaining = Size - BytesToWrite; in write()
272 return write(Ptr + BytesToWrite, BytesRemaining); in write()
274 copy_to_buffer(Ptr + BytesToWrite, BytesRemaining); in write()
/freebsd/contrib/llvm-project/compiler-rt/lib/profile/
H A DInstrProfilingFile.c307 size_t BytesToWrite = IOVecs[I].ElmSize * IOVecs[I].NumElm; in fileWriter() local
308 while (BytesToWrite > 0) { in fileWriter()
310 (sizeof(uint64_t) > BytesToWrite) ? BytesToWrite : sizeof(uint64_t); in fileWriter()
315 BytesToWrite -= PartialWriteLen; in fileWriter()