HomeSort by relevance Sort by last modified time
    Searched refs:InputFile (Results 1 - 25 of 123) sorted by null

1 2 3 4 5

  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/Common/
ParseInf.c 29 IN MEMORY_FILE *InputFile,
46 InputFile Memory file image.
65 assert (InputFile->FileImage);
66 assert (InputFile->Eof);
67 assert (InputFile->CurrentFilePointer);
72 if (InputFile->CurrentFilePointer >= InputFile->Eof) {
78 EndOfLine = strchr (InputFile->CurrentFilePointer, '\n');
87 CharsToCopy = InputFile->Eof - InputFile->CurrentFilePointer;
    [all...]
ParseInf.h 43 IN MEMORY_FILE *InputFile,
61 InputFile Memory file image.
73 IN MEMORY_FILE *InputFile,
86 InputFile Memory file image.
97 IN MEMORY_FILE *InputFile,
112 InputFile Memory file image.
130 IN MEMORY_FILE *InputFile,
145 InputFile Memory file image.
217 IN FILE *InputFile,
229 InputFile Stream pointer.
    [all...]
CommonLib.c 183 FILE *InputFile;
198 InputFile = fopen (InputFileName, "rb");
199 if (InputFile == NULL) {
206 if (fseek (InputFile, 0, SEEK_END)) {
208 fclose (InputFile);
214 FileSize = ftell (InputFile);
217 fclose (InputFile);
225 fclose (InputFile);
231 if (fseek (InputFile, 0, SEEK_SET)) {
233 fclose (InputFile);
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/Common/
MemoryFile.c 50 InputFile Memory file image.
155 MEMORY_FILE *InputFile;
164 InputFile = (MEMORY_FILE*)InputMemoryFile;
169 if (InputFile->CurrentFilePointer >= InputFile->Eof) {
176 BytesToEof = InputFile->Eof - InputFile->CurrentFilePointer;
181 EndOfLine = memchr (InputFile->CurrentFilePointer, '\n', BytesToEof);
190 CharsToCopy = InputFile->Eof - InputFile->CurrentFilePointer;
    [all...]
ParseGuidedSectionTools.h 26 IN CHAR8 *InputFile
41 InputFile Path name of file to read
53 IN EFI_HANDLE InputFile
68 InputFile Memory file image.
ParseInf.c 25 IN MEMORY_FILE *InputFile,
42 InputFile Memory file image.
61 assert (InputFile->FileImage);
62 assert (InputFile->Eof);
63 assert (InputFile->CurrentFilePointer);
68 if (InputFile->CurrentFilePointer >= InputFile->Eof) {
74 EndOfLine = strchr (InputFile->CurrentFilePointer, '\n');
83 CharsToCopy = InputFile->Eof - InputFile->CurrentFilePointer;
    [all...]
ParseInf.h 31 IN MEMORY_FILE *InputFile,
50 InputFile Memory file image.
62 IN MEMORY_FILE *InputFile,
76 InputFile Memory file image.
87 IN MEMORY_FILE *InputFile,
103 InputFile Memory file image.
174 IN FILE *InputFile,
187 InputFile Stream pointer.
198 IN FILE *InputFile,
212 InputFile Stream pointer.
    [all...]
ParseGuidedSectionTools.c 44 IN CHAR8 *InputFile
58 InputFile Path name of file to read
71 Status = GetMemoryFile (InputFile, &MemoryFile);
86 IN EFI_HANDLE InputFile
100 InputFile Memory file image.
121 NextLine = ReadMemoryFileLine (InputFile);
  /frameworks/support/buildSrc/src/main/kotlin/androidx/build/checkapi/
ApiXmlConversionTask.kt 19 import org.gradle.api.tasks.InputFile
30 @InputFile
  /external/spirv-llvm/tools/llvm-spirv/
llvm-spirv.cpp 82 InputFile(cl::Positional, cl::desc("<input file>"), cl::init("-"));
122 auto DS = getDataFileStreamer(InputFile, &Err);
129 getStreamedBitcodeModule(InputFile, std::move(DS), Context);
144 if (InputFile == "-")
147 OutputFile = removeExt(InputFile) +
164 std::ifstream IFS(InputFile, std::ios::binary);
183 if (InputFile == "-")
186 OutputFile = removeExt(InputFile) + kExt::LLVMBinary;
209 std::ifstream IFS(InputFile, std::ios::binary);
212 if (InputFile == "-"
    [all...]
  /frameworks/rs/rsov/compiler/
rs2spirv.cpp 46 static cl::opt<std::string> InputFile(cl::Positional, cl::desc("<input file>"),
79 auto DS = getDataFileStreamer(InputFile, &Err);
85 getStreamedBitcodeModule(InputFile, std::move(DS), Context);
101 std::vector<char> bitcode = android::spirit::readFile<char>(InputFile);
122 if (InputFile == "-")
125 OutputFile = removeExt(InputFile) + kExt::SPIRVBinary;
  /external/llvm/tools/dsymutil/
dsymutil.h 40 parseDebugMap(StringRef InputFile, ArrayRef<std::string> Archs,
44 bool dumpStab(StringRef InputFile, ArrayRef<std::string> Archs,
dsymutil.cpp 176 static std::string getOutputFileName(llvm::StringRef InputFile,
182 OutputFileOpt.empty() ? InputFile : llvm::StringRef(OutputFileOpt);
204 if (InputFile == "-")
206 return (InputFile + ".dwarf").str();
221 InputFile == "-" ? llvm::StringRef("a.out") : InputFile;
291 for (auto &InputFile : InputFiles) {
294 if (!dumpStab(InputFile, ArchFlags, OsoPrependPath))
299 auto DebugMapPtrsOrErr = parseDebugMap(InputFile, ArchFlags, OsoPrependPath,
303 llvm::errs() << "error: cannot parse the debug map for \"" << InputFile
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/LTO/
LTO.h 84 class InputFile {
91 InputFile() = default;
104 ~InputFile();
106 /// Create an InputFile.
107 static Expected<std::unique_ptr<InputFile>> create(MemoryBufferRef Object);
131 /// A range over the symbols in this InputFile.
137 /// Returns the path to the InputFile.
218 /// - Create lto::InputFile objects using lto::InputFile::create(), then use
222 /// file) and computed a resolution for each symbol, take each lto::InputFile
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/LTO/
LTO.h 84 class InputFile {
91 InputFile() = default;
104 ~InputFile();
106 /// Create an InputFile.
107 static Expected<std::unique_ptr<InputFile>> create(MemoryBufferRef Object);
132 /// A range over the symbols in this InputFile.
138 /// Returns the path to the InputFile.
222 /// - Create lto::InputFile objects using lto::InputFile::create(), then use
226 /// file) and computed a resolution for each symbol, take each lto::InputFile
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/LTO/
LTO.h 84 class InputFile {
91 InputFile() = default;
104 ~InputFile();
106 /// Create an InputFile.
107 static Expected<std::unique_ptr<InputFile>> create(MemoryBufferRef Object);
132 /// A range over the symbols in this InputFile.
138 /// Returns the path to the InputFile.
222 /// - Create lto::InputFile objects using lto::InputFile::create(), then use
226 /// file) and computed a resolution for each symbol, take each lto::InputFile
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/LTO/
LTO.h 84 class InputFile {
91 InputFile() = default;
104 ~InputFile();
106 /// Create an InputFile.
107 static Expected<std::unique_ptr<InputFile>> create(MemoryBufferRef Object);
133 /// A range over the symbols in this InputFile.
139 /// Returns the path to the InputFile.
223 /// - Create lto::InputFile objects using lto::InputFile::create(), then use
227 /// file) and computed a resolution for each symbol, take each lto::InputFile
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/LTO/
LTO.h 84 class InputFile {
91 InputFile() = default;
104 ~InputFile();
106 /// Create an InputFile.
107 static Expected<std::unique_ptr<InputFile>> create(MemoryBufferRef Object);
133 /// A range over the symbols in this InputFile.
139 /// Returns the path to the InputFile.
223 /// - Create lto::InputFile objects using lto::InputFile::create(), then use
227 /// file) and computed a resolution for each symbol, take each lto::InputFile
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/LTO/
LTO.h 84 class InputFile {
91 InputFile() = default;
104 ~InputFile();
106 /// Create an InputFile.
107 static Expected<std::unique_ptr<InputFile>> create(MemoryBufferRef Object);
133 /// A range over the symbols in this InputFile.
139 /// Returns the path to the InputFile.
223 /// - Create lto::InputFile objects using lto::InputFile::create(), then use
227 /// file) and computed a resolution for each symbol, take each lto::InputFile
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/LTO/
LTO.h 84 class InputFile {
91 InputFile() = default;
104 ~InputFile();
106 /// Create an InputFile.
107 static Expected<std::unique_ptr<InputFile>> create(MemoryBufferRef Object);
133 /// A range over the symbols in this InputFile.
139 /// Returns the path to the InputFile.
223 /// - Create lto::InputFile objects using lto::InputFile::create(), then use
227 /// file) and computed a resolution for each symbol, take each lto::InputFile
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/LTO/
LTO.h 84 class InputFile {
91 InputFile() = default;
104 ~InputFile();
106 /// Create an InputFile.
107 static Expected<std::unique_ptr<InputFile>> create(MemoryBufferRef Object);
131 /// A range over the symbols in this InputFile.
137 /// Returns the path to the InputFile.
218 /// - Create lto::InputFile objects using lto::InputFile::create(), then use
222 /// file) and computed a resolution for each symbol, take each lto::InputFile
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/LTO/
LTO.h 84 class InputFile {
91 InputFile() = default;
104 ~InputFile();
106 /// Create an InputFile.
107 static Expected<std::unique_ptr<InputFile>> create(MemoryBufferRef Object);
132 /// A range over the symbols in this InputFile.
138 /// Returns the path to the InputFile.
222 /// - Create lto::InputFile objects using lto::InputFile::create(), then use
226 /// file) and computed a resolution for each symbol, take each lto::InputFile
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/LTO/
LTO.h 84 class InputFile {
91 InputFile() = default;
104 ~InputFile();
106 /// Create an InputFile.
107 static Expected<std::unique_ptr<InputFile>> create(MemoryBufferRef Object);
132 /// A range over the symbols in this InputFile.
138 /// Returns the path to the InputFile.
222 /// - Create lto::InputFile objects using lto::InputFile::create(), then use
226 /// file) and computed a resolution for each symbol, take each lto::InputFile
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/LTO/
LTO.h 84 class InputFile {
91 InputFile() = default;
104 ~InputFile();
106 /// Create an InputFile.
107 static Expected<std::unique_ptr<InputFile>> create(MemoryBufferRef Object);
133 /// A range over the symbols in this InputFile.
139 /// Returns the path to the InputFile.
223 /// - Create lto::InputFile objects using lto::InputFile::create(), then use
227 /// file) and computed a resolution for each symbol, take each lto::InputFile
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/LTO/
LTO.h 84 class InputFile {
91 InputFile() = default;
104 ~InputFile();
106 /// Create an InputFile.
107 static Expected<std::unique_ptr<InputFile>> create(MemoryBufferRef Object);
133 /// A range over the symbols in this InputFile.
139 /// Returns the path to the InputFile.
223 /// - Create lto::InputFile objects using lto::InputFile::create(), then use
227 /// file) and computed a resolution for each symbol, take each lto::InputFile
    [all...]

Completed in 571 milliseconds

1 2 3 4 5