Home
last modified time | relevance | path

Searched refs:EndOfLine (Results 1 – 4 of 4) sorted by relevance

/freebsd-12.1/sys/contrib/dev/acpica/common/
H A Dacgetline.c174 UINT32 EndOfLine,
224 UINT32 EndOfLine, in AcpiAcClearLine() argument
230 if (CursorPosition < EndOfLine) in AcpiAcClearLine()
242 for (; EndOfLine > 0; EndOfLine--) in AcpiAcClearLine()
312 EndOfLine++; in AcpiOsGetLine()
314 Buffer[EndOfLine] = 0; in AcpiOsGetLine()
324 Buffer [EndOfLine + 1] = 0; in AcpiOsGetLine()
334 EndOfLine++; in AcpiOsGetLine()
347 EndOfLine--; in AcpiOsGetLine()
370 EndOfLine--; in AcpiOsGetLine()
[all …]
/freebsd-12.1/sys/contrib/dev/acpica/os_specific/service_layers/
H A Dosunixxf.c656 UINT32 EndOfLine; in AcpiOsGetLine() local
661 for (EndOfLine = 0; ; EndOfLine++) in AcpiOsGetLine()
663 if (EndOfLine >= BufferLength) in AcpiOsGetLine()
678 Buffer[EndOfLine] = (char) InputChar; in AcpiOsGetLine()
683 Buffer[EndOfLine] = 0; in AcpiOsGetLine()
689 *BytesRead = EndOfLine; in AcpiOsGetLine()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Format/
H A DBreakableToken.cpp769 size_t EndOfLine = Content[i].find_last_not_of(Blanks); in BreakableLineCommentSection() local
770 if (EndOfLine == StringRef::npos) in BreakableLineCommentSection()
771 EndOfLine = Content[i].size(); in BreakableLineCommentSection()
773 ++EndOfLine; in BreakableLineCommentSection()
774 Content[i] = Content[i].substr(0, EndOfLine); in BreakableLineCommentSection()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Frontend/
H A DCompilerInvocation.cpp3098 unsigned EndOfLine = 0; in ParsePreprocessorArgs() local
3102 Value.substr(Comma + 1).getAsInteger(10, EndOfLine)) in ParsePreprocessorArgs()
3106 Opts.PrecompiledPreambleBytes.second = (EndOfLine != 0); in ParsePreprocessorArgs()