HomeSort by: relevance | last modified time | path
    Searched defs:BytesRemaining (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
MachOEmitter.cpp 259 auto BytesRemaining = LC.Data.load_command_data.cmdsize - BytesWritten;
260 if (BytesRemaining > 0) {
261 ZeroFillBytes(OS, BytesRemaining);
  /src/external/apache2/llvm/dist/llvm/lib/Support/
raw_ostream.cpp 262 size_t BytesRemaining = Size - BytesToWrite;
263 if (BytesRemaining > size_t(OutBufEnd - OutBufCur)) {
265 return write(Ptr + BytesToWrite, BytesRemaining);
267 copy_to_buffer(Ptr + BytesToWrite, BytesRemaining);
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
DWARFDebugLine.cpp 756 uint64_t BytesRemaining = DebugLineData.size() - DebugLineOffset;
762 DebugLineOffset, ProgramLength, BytesRemaining));
764 ProgramLength = BytesRemaining;
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyld.cpp 98 unsigned BytesRemaining = S.getSize();
107 while (BytesRemaining > 0) {
115 --BytesRemaining;

Completed in 35 milliseconds