Lines Matching defs:End
57 uint64_t LLLexer::atoull(const char *Buffer, const char *End) {
59 for (; Buffer != End; Buffer++) {
71 uint64_t LLLexer::HexIntToVal(const char *Buffer, const char *End) {
73 for (; Buffer != End; ++Buffer) {
86 void LLLexer::HexToIntPair(const char *Buffer, const char *End,
89 if (End - Buffer >= 16) {
91 assert(Buffer != End);
97 for (int i = 0; i < 16 && Buffer != End; i++, Buffer++) {
101 if (Buffer != End)
107 void LLLexer::FP80HexToIntPair(const char *Buffer, const char *End,
110 for (int i=0; i<4 && Buffer != End; i++, Buffer++) {
111 assert(Buffer != End);
116 for (int i = 0; i < 16 && Buffer != End; i++, Buffer++) {
120 if (Buffer != End)
280 // End of the comment?
1137 if (const char *End = isLabelTail(CurPtr)) {
1138 StrVal.assign(TokStart, End-1);
1139 CurPtr = End;
1164 if (const char *End = isLabelTail(CurPtr)) {
1165 StrVal.assign(TokStart, End-1);
1166 CurPtr = End;