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

1 2 3 4

  /device/linaro/bootloader/edk2/BaseTools/Source/C/Common/
MemoryFile.c 78 NewMemoryFile->Eof = InputFileImage + BytesRead;
120 MemoryFile->Eof -= 1;
148 NULL if error or EOF
169 if (InputFile->CurrentFilePointer >= InputFile->Eof) {
174 // Determine the number of bytes remaining until the EOF
176 BytesToEof = InputFile->Eof - InputFile->CurrentFilePointer;
190 CharsToCopy = InputFile->Eof - InputFile->CurrentFilePointer;
225 if (InputFile->CurrentFilePointer > InputFile->Eof) {
226 InputFile->CurrentFilePointer = InputFile->Eof;
251 assert (MemoryFile->Eof != NULL);
    [all...]
MemoryFile.h 27 CHAR8 *Eof;
105 NULL if error or EOF
ParseInf.c 48 NULL if error or EOF
62 assert (InputFile->Eof);
68 if (InputFile->CurrentFilePointer >= InputFile->Eof) {
83 CharsToCopy = InputFile->Eof - InputFile->CurrentFilePointer;
84 } else if (EndOfLine >= InputFile->Eof) {
86 // If the newline found was beyond the end of file, copy to the eof.
88 CharsToCopy = InputFile->Eof - InputFile->CurrentFilePointer;
157 FALSE if error or EOF
169 assert (InputFile->Eof);
181 while (InputFile->CurrentFilePointer < InputFile->Eof) {
    [all...]
  /external/lzma/CPP/Common/
StdInStream.h 25 // true, if EOF or '\n'
30 bool Eof() const throw() { return (feof(_stream) != 0); }
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/Common/
ParseInf.c 52 NULL if error or EOF
66 assert (InputFile->Eof);
72 if (InputFile->CurrentFilePointer >= InputFile->Eof) {
87 CharsToCopy = InputFile->Eof - InputFile->CurrentFilePointer;
88 } else if (EndOfLine >= InputFile->Eof) {
90 // If the newline found was beyond the end of file, copy to the eof.
92 CharsToCopy = InputFile->Eof - InputFile->CurrentFilePointer;
153 FALSE if error or EOF
165 assert (InputFile->Eof);
177 while (InputFile->CurrentFilePointer < InputFile->Eof) {
    [all...]
ParseInf.h 34 CHAR8 *Eof;
67 NULL if error or EOF
91 FALSE if error or EOF
234 NULL if error or EOF
258 FALSE if error or EOF
  /external/freetype/src/lzw/
ftzopen.c 249 goto Eof; \
281 goto Eof;
288 goto Eof;
301 goto Eof;
324 goto Eof;
350 goto Eof;
359 goto Eof;
391 goto Eof;
407 default: /* state == EOF */
418 Eof
    [all...]
  /external/perfetto/src/trace_processor/
process_table.h 41 int Eof() override;
stats_table.h 43 int Eof() override;
string_table.h 47 int Eof() override;
thread_table.h 41 int Eof() override;
sql_stats_table.h 52 int Eof() override;
storage_table.h 42 int Eof() override;
window_operator_table.h 48 int Eof() override;
string_table.cc 74 int StringTable::Cursor::Eof() {
span_join_operator_table.cc 322 if (t1_.Eof() || t2_.Eof()) {
328 if (partitioned->Eof())
411 int SpanJoinOperatorTable::Cursor::Eof() {
412 return t1_.Eof() || t2_.Eof();
416 PERFETTO_DCHECK(!t1_.Eof());
417 PERFETTO_DCHECK(!t2_.Eof());
465 PERFETTO_DCHECK(!Eof());
554 PERFETTO_DCHECK(!Eof());
    [all...]
sql_stats_table.cc 76 int SqlStatsTable::Cursor::Eof() {
  /external/lzma/CPP/7zip/UI/Console/
UserInputUtils.cpp 40 if (scannedString.IsEmpty() && g_StdIn.Eof())
107 if (g_StdIn.Eof() && psw.IsEmpty())
  /external/llvm/lib/CodeGen/MIRParser/
MILexer.h 31 Eof,
145 bool isNewlineOrEOF() const { return Kind == Newline || Kind == Eof; }
147 bool isErrorOrEOF() const { return Kind == Error || Kind == Eof; }
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/MIRParser/
MILexer.h 31 Eof,
172 bool isNewlineOrEOF() const { return Kind == Newline || Kind == Eof; }
174 bool isErrorOrEOF() const { return Kind == Error || Kind == Eof; }
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Object/
COFFModuleDefinition.cpp 36 Eof,
96 return Token(Eof);
100 return Token(Eof);
156 } while (Tok.K != Eof);
189 case Eof:
  /external/swiftshader/third_party/LLVM/lib/TableGen/
TGLexer.h 31 Eof, Error,
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/
scan.c 157 NLA = Eof;
162 if ( new_input == NULL ) { NLA=Eof; return; }
166 zzskip(); /* Skip the Eof (@) char i.e continue */
584 NLA = Eof;
657 NLA = Eof;
730 NLA = Eof;
796 NLA = Eof;
859 NLA = Eof;
923 NLA = Eof;
972 NLA = Eof;
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/h/
AParser.cpp 358 const int Eof=1; // MR1
359 while ( !set_el( (tmp=LA(1)), st) && tmp!=Eof) { consume(); } // MR1
370 const int Eof=1; // MR1
371 while ( (tmp=LA(1)) !=t && tmp!=Eof) { consume(); } // MR1
416 "<eof>":LT(1)->getText() /* MR21a */);
580 (LA(1)==eofToken && LT(1)->getText()[0] == '@')?"<eof>":LT(1)->getText(), /* MR21a */
606 (LA(1)==eofToken && LT(1)->getText()[0] == '@')?"<eof>":LT(1)->getText(), /* MR21a */
  /external/llvm/lib/TableGen/
TGLexer.h 32 Eof, Error,

Completed in 594 milliseconds

1 2 3 4