Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DGOFFEmitter.cpp156 size_t BytesToWrite = bytesToNextPhysicalRecord(); in write_impl() local
157 if (BytesToWrite > Size) in write_impl()
158 BytesToWrite = Size; in write_impl()
159 OS.write(Ptr + Idx, BytesToWrite); in write_impl()
160 Idx += BytesToWrite; in write_impl()
161 Size -= BytesToWrite; in write_impl()
162 RemainingSize -= BytesToWrite; in write_impl()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A Draw_ostream.cpp265 size_t BytesToWrite = Size - (Size % NumBytes); in write() local
266 write_impl(Ptr, BytesToWrite); in write()
267 size_t BytesRemaining = Size - BytesToWrite; in write()
270 return write(Ptr + BytesToWrite, BytesRemaining); in write()
272 copy_to_buffer(Ptr + BytesToWrite, BytesRemaining); in write()
/freebsd/contrib/llvm-project/compiler-rt/lib/profile/
H A DInstrProfilingFile.c342 size_t BytesToWrite = IOVecs[I].ElmSize * IOVecs[I].NumElm; in fileWriter() local
343 while (BytesToWrite > 0) { in fileWriter()
345 (sizeof(uint64_t) > BytesToWrite) ? BytesToWrite : sizeof(uint64_t); in fileWriter()
350 BytesToWrite -= PartialWriteLen; in fileWriter()