Home
last modified time | relevance | path

Searched refs:LastChar (Results 1 – 9 of 9) sorted by relevance

/freebsd/contrib/tcsh/
H A Ded.chared.c166 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 Ded.inputl.c71 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 Ded.h125 EXTERN Char *LastChar, *Cursor; /* point to the next open space */ variable
H A Ded.refresh.c377 for (cp = InputBuf; (cp < LastChar); ) { in Refresh()
1270 if (Cursor != LastChar) { in RefPlusOne()
H A Ded.init.c585 LastChar = InputBuf; in ResetInLine()
/freebsd/sys/contrib/dev/acpica/compiler/
H A Dasllistsup.c225 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/compiler-rt/lib/orc/
H A Dcoff_platform.cpp473 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/llvm/lib/Support/
H A DSuffixTree.cpp228 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/clang/lib/ARCMigrate/
H A DObjCMT.cpp536 char LastChar = TypeString[TypeString.size()-1]; in rewriteToObjCProperty() local
538 if (LastChar != '*') in rewriteToObjCProperty()