HomeSort by relevance Sort by last modified time
    Searched defs:OutFile (Results 1 - 14 of 14) sorted by null

  /external/swiftshader/third_party/subzero/pydir/
build-runtime.py 49 def OutFile(template):
82 OutFile('{rtdir}/szrt_native_{target}.o'),
86 OutFile('{rtdir}/szrt_native_{target}.o')])
93 '-o', OutFile('{rtdir}/szrt_asan_{target}.o')
119 OutFile('{rtdir}/szrt_sb_{target}.o'),
123 OutFile('{rtdir}/szrt_sb_{target}.o')])
147 OutFile('{rtdir}/szrt_nonsfi_{target}.o'),
151 OutFile('{rtdir}/szrt_nonsfi_{target}.o')])
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/Strip/
strip.c 95 FILE *OutFile;
107 OutFile = fopen (argv[2], "wb");
114 if (OutFile == NULL) {
141 fwrite (Ptrx, Index, 1, OutFile);
144 fclose (OutFile);
  /external/swiftshader/third_party/LLVM/runtime/libprofile/
CommonProfiling.c 86 static int OutFile = -1;
91 if (OutFile == -1) {
92 OutFile = open(OutputFilename, O_CREAT | O_WRONLY, 0666);
93 lseek(OutFile, 0, SEEK_END); /* O_APPEND prevents seeking */
94 if (OutFile == -1) {
98 return(OutFile);
105 if (write(OutFile, &PTy, sizeof(int)) < 0 ||
106 write(OutFile, &SavedArgsLength, sizeof(unsigned)) < 0 ||
107 write(OutFile, SavedArgs, SavedArgsLength) < 0 ) {
113 if (write(OutFile, &Zeros, 4-(SavedArgsLength&3)) < 0) {
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/GenCrc32/
GenCrc32.c 137 FILE *OutFile;
148 OutFile = NULL;
303 OutFile = fopen (LongFilePath (OutputFileName), "wb");
304 if (OutFile == NULL) {
321 fwrite (&Crc32Value, 1, sizeof (Crc32Value), OutFile);
323 fwrite (FileBuffer, 1, FileSize, OutFile);
343 fwrite (FileBuffer + sizeof (UINT32), 1, FileSize - sizeof (UINT32), OutFile);
352 if (OutFile != NULL) {
353 fclose (OutFile);
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/GenDepex/
GenDepex.c 159 " -O OUTFILE The output binary dependency files name",
233 IN OUT FILE *OutFile,
307 OutFile - Binary dependency file.
384 Results = (UINTN) fclose (OutFile);
423 Results = (UINTN) fclose (OutFile);
458 Results = (UINTN) fclose (OutFile);
479 Results = (UINTN) fclose (OutFile);
530 fputc (EFI_DEP_SOR, OutFile);
564 fputc (EFI_DEP_BEFORE, OutFile);
597 fputc (EFI_DEP_AFTER, OutFile);
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/GenSection/
GenSection.c 138 FILE *OutFile,
153 fwrite (EnglishLangCode, 1, 4, OutFile);
160 fwrite (&String[Index], 1, 1, OutFile);
161 fwrite (&AsciiNull, 1, 1, OutFile);
170 FILE *OutFile
190 OutFile - Output file handle
246 fwrite (&CommonSect, sizeof (CommonSect), 1, OutFile);
263 if (fwrite (Buffer, (size_t) InputFileLength, 1, OutFile) != 1) {
382 FILE *OutFile
404 OutFile - Output file handle
    [all...]
  /external/clang/lib/Frontend/
FrontendActions.cpp 597 std::unique_ptr<llvm::raw_fd_ostream> OutFile;
601 OutFile.reset(new llvm::raw_fd_ostream(OutputFileName.str(), EC,
604 llvm::raw_ostream &Out = OutFile.get()? *OutFile.get() : llvm::outs();
CompilerInstance.cpp 544 void CompilerInstance::addOutputFile(OutputFile &&OutFile) {
545 assert(OutFile.OS && "Attempt to add empty stream to output list!");
546 OutputFiles.push_back(std::move(OutFile));
627 std::string OutFile, TempFile;
629 OutFile = OutputPath;
631 OutFile = "-";
635 OutFile = Path.str();
637 OutFile = "-";
644 if (OutFile == "-")
667 TempPath = OutFile;
    [all...]
  /external/lzma/Java/SevenZip/
LzmaAlone.java 30 public String OutFile;
134 OutFile = s;
193 java.io.File outFile = new java.io.File(params.OutFile);
196 java.io.BufferedOutputStream outStream = new java.io.BufferedOutputStream(new java.io.FileOutputStream(outFile));
  /device/linaro/bootloader/edk2/BaseTools/Source/C/GenSec/
GenSec.c     [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
MachineVerifier.cpp 242 raw_ostream *OutFile = 0;
245 OutFile = new raw_fd_ostream(OutFileName, ErrorInfo,
252 OS = OutFile;
298 if (OutFile)
299 delete OutFile;
    [all...]
  /external/llvm/tools/dsymutil/
DwarfLinker.cpp 484 std::unique_ptr<raw_fd_ostream> OutFile;
618 OutFile =
625 TheTriple, *MC, *MAB, *OutFile, MCE, *MSTI, MCOptions.MCRelaxAll,
651 return MachOUtils::generateDsymCompanion(DM, *MS, *OutFile);
    [all...]
  /external/clang/lib/Frontend/Rewrite/
RewriteModernObjC.cpp 75 raw_ostream* OutFile;
645 : Diags(D), LangOpts(LOpts), InFileName(inFile), OutFile(OS),
    [all...]
RewriteObjC.cpp 74 raw_ostream* OutFile;
581 : Diags(D), LangOpts(LOpts), InFileName(inFile), OutFile(OS),
    [all...]

Completed in 371 milliseconds