Home
last modified time | relevance | path

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

/freebsd/sys/contrib/dev/acpica/common/
H A Dacgetline.c174 UINT32 EndOfLine,
222 UINT32 EndOfLine, in AcpiAcClearLine() argument
228 if (CursorPosition < EndOfLine) in AcpiAcClearLine()
232 for (i = 0; i < (EndOfLine - CursorPosition); i++) in AcpiAcClearLine()
240 for (; EndOfLine > 0; EndOfLine--) in AcpiAcClearLine()
276 UINT32 EndOfLine = 0; in AcpiOsGetLine() local
293 if (EndOfLine >= (BufferLength - 1)) in AcpiOsGetLine()
305 if (EndOfLine == CursorPosition) in AcpiOsGetLine()
308 Buffer[EndOfLine] = (char) InputChar; in AcpiOsGetLine()
310 EndOfLine++; in AcpiOsGetLine()
[all …]
/freebsd/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/contrib/llvm-project/clang/lib/Format/
H A DBreakableToken.cpp983 size_t EndOfLine = Content[i].find_last_not_of(Blanks); in BreakableLineCommentSection() local
984 if (EndOfLine == StringRef::npos) in BreakableLineCommentSection()
985 EndOfLine = Content[i].size(); in BreakableLineCommentSection()
987 ++EndOfLine; in BreakableLineCommentSection()
988 Content[i] = Content[i].substr(0, EndOfLine); in BreakableLineCommentSection()
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DCompilerInvocation.cpp4603 unsigned EndOfLine = 0; in ParsePreprocessorArgs() local
4607 Value.substr(Comma + 1).getAsInteger(10, EndOfLine)) in ParsePreprocessorArgs()
4611 Opts.PrecompiledPreambleBytes.second = (EndOfLine != 0); in ParsePreprocessorArgs()