Home
last modified time | relevance | path

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

/NextBSD/contrib/tcsh/
HDed.chared.c170 if (LastChar + num >= InputLim) in c_insert()
173 if (Cursor < LastChar) { /* if I must move chars */ in c_insert()
174 for (cp = LastChar; cp >= Cursor; cp--) in c_insert()
179 LastChar += num; in c_insert()
187 if (num > LastChar - Cursor) in c_delafter()
188 num = (int) (LastChar - Cursor); /* bounds check */ in c_delafter()
196 for (cp = Cursor; cp <= LastChar; cp++) { in c_delafter()
202 for (cp = Cursor; cp + num <= LastChar; cp++) in c_delafter()
204 LastChar -= num; in c_delafter()
237 for (cp = Cursor - num; cp <= LastChar; cp++) { in c_delbefore()
[all …]
HDed.inputl.c75 return (int) (LastChar - InputBuf); in Repair()
142 LastChar = InputBuf + LastSaved; in Inputl()
161 if (Cursor > LastChar) in Inputl()
167 if (LastChar > InputLim) in Inputl()
211 curlen = (int) (LastChar - InputBuf); in Inputl()
216 curlen = (int) (LastChar - InputBuf); in Inputl()
222 *LastChar++ = '\n'; /* for the benifit of CSH */ in Inputl()
223 num = (int) (LastChar - InputBuf); /* number characters read */ in Inputl()
237 SaveChar = LastChar; in Inputl()
245 CorrChar = LastChar; /* Save the corrected end */ in Inputl()
[all …]
HDed.h126 EXTERN Char *LastChar, *Cursor; /* point to the next open space */ variable
HDed.refresh.c351 for (cp = InputBuf; (cp < LastChar); ) { in Refresh()
1244 if (Cursor != LastChar) { in RefPlusOne()
HDed.init.c589 LastChar = InputBuf; in ResetInLine()
/NextBSD/contrib/llvm/lib/Support/
HDStreamingMemoryObject.cpp21 FirstChar(Start), LastChar(End) { in RawMemoryObject()
22 assert(LastChar >= FirstChar && "Invalid start/end range"); in RawMemoryObject()
26 return LastChar - FirstChar; in getExtent()
37 const uint8_t* const LastChar; member in __anon030acba50111::RawMemoryObject
42 return static_cast<std::ptrdiff_t>(address) < LastChar - FirstChar; in validAddress()
51 uint64_t BufferSize = LastChar - FirstChar; in readBytes()
/NextBSD/sys/contrib/dev/acpica/compiler/
HDasllistsup.c116 UINT8 LastChar; in LsDumpAsciiInComment() local
123 LastChar = BufChar; in LsDumpAsciiInComment()
130 if (((LastChar == '*') && (BufChar == '/')) || in LsDumpAsciiInComment()
131 ((LastChar == '/') && (BufChar == '*'))) in LsDumpAsciiInComment()
/NextBSD/contrib/llvm/tools/clang/lib/ARCMigrate/
HDObjCMT.cpp547 char LastChar = TypeString[TypeString.size()-1]; in rewriteToObjCProperty() local
549 if (LastChar != '*') in rewriteToObjCProperty()