Searched refs:LastChar (Results 1 – 9 of 9) sorted by relevance
| /freebsd/contrib/tcsh/ |
| H A D | ed.chared.c | 166 if (LastChar + num >= InputLim) in c_insert() 169 if (Cursor < LastChar) { /* if I must move chars */ in c_insert() 170 for (cp = LastChar; cp >= Cursor; cp--) in c_insert() 175 LastChar += num; in c_insert() 183 if (num > LastChar - Cursor) in c_delafter() 184 num = (int) (LastChar - Cursor); /* bounds check */ in c_delafter() 192 for (cp = Cursor; cp <= LastChar; cp++) { in c_delafter() 198 for (cp = Cursor; cp + num <= LastChar; cp++) in c_delafter() 200 LastChar -= num; in c_delafter() 233 for (cp = Cursor - num; cp <= LastChar; cp++) { in c_delbefore() [all …]
|
| H A D | ed.inputl.c | 71 return (int) (LastChar - InputBuf); in Repair() 138 LastChar = InputBuf + LastSaved; in Inputl() 157 if (Cursor > LastChar) in Inputl() 163 if (LastChar > InputLim) in Inputl() 207 curlen = (int) (LastChar - InputBuf); in Inputl() 212 curlen = (int) (LastChar - InputBuf); in Inputl() 218 *LastChar++ = '\n'; /* for the benifit of CSH */ in Inputl() 219 num = (int) (LastChar - InputBuf); /* number characters read */ in Inputl() 233 SaveChar = LastChar; in Inputl() 241 CorrChar = LastChar; /* Save the corrected end */ in Inputl() [all …]
|
| H A D | ed.h | 125 EXTERN Char *LastChar, *Cursor; /* point to the next open space */ variable
|
| H A D | ed.refresh.c | 377 for (cp = InputBuf; (cp < LastChar); ) { in Refresh() 1270 if (Cursor != LastChar) { in RefPlusOne()
|
| H A D | ed.init.c | 585 LastChar = InputBuf; in ResetInLine()
|
| /freebsd/sys/contrib/dev/acpica/compiler/ |
| H A D | asllistsup.c | 225 UINT8 LastChar; in LsDumpAsciiInComment() local 232 LastChar = BufChar; in LsDumpAsciiInComment() 239 if (((LastChar == '*') && (BufChar == '/')) || in LsDumpAsciiInComment() 240 ((LastChar == '/') && (BufChar == '*'))) in LsDumpAsciiInComment()
|
| /freebsd/contrib/llvm-project/llvm/lib/Support/ |
| H A D | SuffixTree.cpp | 228 unsigned LastChar = Str[EndIdx]; in extend() local 231 if (Str[NextNode->getStartIdx() + Active.Len] == LastChar) { in extend() 264 insertLeaf(*SplitNode, EndIdx, LastChar); in extend()
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/orc/ |
| H A D | coff_platform.cpp | 473 char LastChar = KV.first.data()[KV.first.size() - 1]; in registerObjectSections() local 479 JDState.CInitSection.Register(LastChar, in registerObjectSections() 482 JDState.CInitSection.RegisterNoRun(LastChar, in registerObjectSections() 486 JDState.CXXInitSection.Register(LastChar, in registerObjectSections() 490 LastChar, KV.second.toSpan<void (*)(void)>()); in registerObjectSections() 492 JDState.CPreTermSection.Register(LastChar, in registerObjectSections() 495 JDState.CTermSection.Register(LastChar, in registerObjectSections()
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | RawCommentList.cpp | 368 auto LastChar = Result.find_last_not_of('\n'); in getFormattedText() local 369 Result.erase(LastChar + 1, Result.size()); in getFormattedText()
|