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

1 2 3 4

  /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);
CommonLib.c 182 FILE *InputFile;
197 InputFile = fopen (LongFilePath (InputFileName), "rb");
198 if (InputFile == NULL) {
205 if (fseek (InputFile, 0, SEEK_END)) {
207 fclose (InputFile);
213 FileSize = ftell (InputFile);
216 fclose (InputFile);
224 fclose (InputFile);
230 if (fseek (InputFile, 0, SEEK_SET)) {
232 fclose (InputFile);
    [all...]
OsPath.c 290 FILE *InputFile;
291 InputFile = fopen (LongFilePath (InputFileName), "rb");
292 if (InputFile == NULL) {
295 fclose (InputFile);
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-pdbutil/
InputFile.h 1 //===- InputFile.h -------------------------------------------- *- C++ --*-===//
34 class InputFile;
41 class InputFile {
42 InputFile();
59 ~InputFile();
60 InputFile(InputFile &&Other) = default;
62 static Expected<InputFile> open(StringRef Path,
93 explicit SymbolGroup(InputFile *File, uint32_t GroupIndex = 0);
110 const InputFile &getFile() const { return *File;
    [all...]
ExplainOutputStyle.h 24 class InputFile;
29 ExplainOutputStyle(InputFile &File, uint64_t FileOffset);
61 InputFile &File;
InputFile.cpp 1 //===- InputFile.cpp ------------------------------------------ *- C++ --*-===//
10 #include "InputFile.h"
35 InputFile::InputFile() {}
36 InputFile::~InputFile() {}
127 SymbolGroup::SymbolGroup(InputFile *File, uint32_t GroupIndex) : File(File) {
246 Expected<InputFile> InputFile::open(StringRef Path, bool AllowUnknownFile) {
247 InputFile IF
    [all...]
DumpOutputStyle.h 37 class InputFile;
65 DumpOutputStyle(InputFile &File);
101 InputFile &File;
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/dsymutil/
dsymutil.h 39 parseDebugMap(StringRef InputFile, ArrayRef<std::string> Archs,
44 bool dumpStab(StringRef InputFile, ArrayRef<std::string> Archs,
dsymutil.cpp 279 static std::string getOutputFileName(llvm::StringRef InputFile) {
282 return InputFile;
287 if (InputFile == "-")
289 return (InputFile + ".dwarf").str();
304 InputFile == "-" ? llvm::StringRef("a.out") : InputFile;
462 for (auto &InputFile : *InputsOrErr) {
465 if (!dumpStab(InputFile, ArchFlags, OsoPrependPath))
471 parseDebugMap(InputFile, ArchFlags, OsoPrependPath, PaperTrailWarnings,
475 WithColor::error() << "cannot parse the debug map for '" << InputFile
    [all...]
  /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...]
  /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...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/LTO/
LTO.h 83 class InputFile {
90 InputFile() = default;
103 ~InputFile();
105 /// Create an InputFile.
106 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.
228 /// - Create lto::InputFile objects using lto::InputFile::create(), then use
232 /// file) and computed a resolution for each symbol, take each lto::InputFile
    [all...]
  /external/clang/include/clang/Serialization/
Module.h 57 class InputFile {
66 InputFile() {}
67 InputFile(const FileEntry *File,
79 static InputFile getNotFound() {
80 InputFile File;
210 std::vector<InputFile> InputFilesLoaded;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/GenCRC32Section/
GenCRC32Section.c 171 FILE *InputFile;
176 InputFile = NULL;
186 InputFile = fopen (FileName, "rb");
187 if (InputFile == NULL) {
192 fread (&Temp, sizeof (UINT8), 1, InputFile);
193 while (!feof (InputFile)) {
195 fread (&Temp, sizeof (UINT8), 1, InputFile);
198 fclose (InputFile);
199 InputFile = NULL;
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/charsetdet/sbcs/
Checker.java 41 public Checker(NGramList list, InputFile dataFile)
93 private boolean nextBuffer(InputFile inputFile)
96 bufMax = inputFile.read(buffer);
130 public void setMapper(InputFile file)
145 public void check(InputFile dataFile)
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/GenFds/
DepexSection.py 114 InputFile = os.path.join (OutputPath, ModuleName + 'SEC' + SecNum + '.depex')
115 InputFile = os.path.normpath(InputFile)
117 Depex.Generate(InputFile)
122 GenFdsGlobalVariable.GenerateSection(OutputFile, [InputFile], Section.Section.SectionType.get (SecType))
  /external/swiftshader/third_party/LLVM/tools/lli/
lli.cpp 50 InputFile(cl::desc("<input bitcode>"), cl::Positional, cl::init("-"));
179 Module *Mod = ParseIRFile(InputFile, Err, Context);
243 InputFile = FakeArgv0;
247 if (StringRef(InputFile).endswith(".bc"))
248 InputFile.erase(InputFile.length() - 3);
252 InputArgv.insert(InputArgv.begin(), InputFile);

Completed in 869 milliseconds

1 2 3 4