Searched refs:ARFile (Results 1 - 2 of 2) sorted by relevance

/freebsd-10.0-release/contrib/llvm/lib/Archive/
H A DArchiveWriter.cpp31 static inline void writeInteger(unsigned num, std::ofstream& ARFile) { argument
34 ARFile << (unsigned char)num;
40 ARFile << (unsigned char)(0x80 | ((unsigned char)num & 0x7F));
205 std::ofstream& ARFile,
211 unsigned filepos = ARFile.tellp();
272 ARFile.write((char*)&Hdr, sizeof(Hdr));
276 ARFile.write(member.getPath().str().data(),
281 ARFile.write(data,fSize);
284 if ((ARFile.tellp() & 1) == 1)
285 ARFile << ARFILE_PA
203 writeMember( const ArchiveMember& member, std::ofstream& ARFile, bool CreateSymbolTable, bool TruncateNames, std::string* ErrMsg ) argument
294 writeSymbolTable(std::ofstream& ARFile) argument
[all...]
/freebsd-10.0-release/contrib/llvm/include/llvm/Bitcode/
H A DArchive.h478 void writeSymbolTable(std::ofstream& ARFile);
487 std::ofstream& ARFile, ///< The file to write member onto

Completed in 72 milliseconds