Lines Matching refs:sFilePtr
100 sFilePtr = dpBuffer; in LoadList()
103 while ( sFilePtr != sLastChar && *sFilePtr <= 32 ) in LoadList()
105 if ( sFilePtr == sLastChar ) in LoadList()
107 if ( *sFilePtr <= 32 ) in LoadList()
141 sFilePtr = 0; in LoadList()
197 if ( *sFilePtr == '\0' ) // See initialising of dpBuffer and sLastChar in LoadList(). in ReadLine()
203 sCurParsePosition = sFilePtr; in ReadLine()
204 while ( *sFilePtr != '\n' ) in ReadLine()
205 ++sFilePtr; in ReadLine()
209 while ( sCurParsePosition != sFilePtr && *sCurParsePosition <= 32 ) in ReadLine()
212 char * sEndOfLine = sFilePtr; in ReadLine()
219 ++sFilePtr; // Go beyond line end to first character of next line. in ReadLine()