Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/compiler-rt/lib/profile/
H A DInstrProfilingFile.c261 size_t BytesToWrite = IOVecs[I].ElmSize * IOVecs[I].NumElm; in fileWriter() local
262 while (BytesToWrite > 0) { in fileWriter()
264 (sizeof(uint64_t) > BytesToWrite) ? BytesToWrite : sizeof(uint64_t); in fileWriter()
269 BytesToWrite -= PartialWriteLen; in fileWriter()
/openbsd-src/gnu/llvm/llvm/lib/Support/
H A Draw_ostream.cpp266 size_t BytesToWrite = Size - (Size % NumBytes); in write() local
267 flush_tied_then_write(Ptr, BytesToWrite); in write()
268 size_t BytesRemaining = Size - BytesToWrite; in write()
271 return write(Ptr + BytesToWrite, BytesRemaining); in write()
273 copy_to_buffer(Ptr + BytesToWrite, BytesRemaining); in write()