Home
last modified time | relevance | path

Searched refs:NextChar (Results 1 – 6 of 6) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/lib/TableGen/
DTGLexer.cpp224 int NextChar = 0; in LexToken() local
231 NextChar = peekNextChar(i++); in LexToken()
232 } while (isdigit(NextChar)); in LexToken()
234 if (NextChar == 'x' || NextChar == 'b') { in LexToken()
242 if (NextChar == 'b') in LexToken()
249 if (NextChar == 'x') in LexToken()
256 if (isalpha(NextChar) || NextChar == '_') in LexToken()
623 int NextChar = *CurPtr; in prepIsDirective() local
627 if (NextChar != PD.Word[I]) { in prepIsDirective()
632 NextChar = peekNextChar(I + 1); in prepIsDirective()
[all …]
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Bitstream/
DBitstreamReader.h83 size_t NextChar = 0; variable
117 return BitsInCurWord == 0 && BitcodeBytes.size() <= NextChar; in AtEndOfStream()
122 return NextChar*CHAR_BIT - BitsInCurWord; in GetCurrentBitNo()
137 NextChar = ByteNo; in JumpToBit()
165 if (NextChar >= BitcodeBytes.size()) in fillCurWord()
168 NextChar, BitcodeBytes.size()); in fillCurWord()
171 const uint8_t *NextCharPtr = BitcodeBytes.data() + NextChar; in fillCurWord()
173 if (BitcodeBytes.size() >= NextChar + sizeof(word_t)) { in fillCurWord()
180 BytesRead = BitcodeBytes.size() - NextChar; in fillCurWord()
185 NextChar += BytesRead; in fillCurWord()
[all …]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
DEHFrameSupport.cpp568 uint8_t NextChar; in parseAugmentationString() local
571 if (auto Err = RecordReader.readInteger(NextChar)) in parseAugmentationString()
574 while (NextChar != 0) { in parseAugmentationString()
575 switch (NextChar) { in parseAugmentationString()
580 if (auto Err = RecordReader.readInteger(NextChar)) in parseAugmentationString()
582 if (NextChar != 'h') in parseAugmentationString()
584 Twine(NextChar) + in parseAugmentationString()
591 *NextField++ = NextChar; in parseAugmentationString()
595 Twine(NextChar) + in parseAugmentationString()
599 if (auto Err = RecordReader.readInteger(NextChar)) in parseAugmentationString()
/freebsd-12-stable/contrib/bearssl/T0/
DT0Comp.cs759 int c = NextChar(); in T0Comp()
1037 int NextChar() in NextChar() method in T0Comp
1095 c = NextChar(); in Next()
1108 c = NextChar(); in Next()
1140 int c = NextChar(); in ParseCCodeNF()
1165 int c = NextChar(); in ParseCCodeNF()
1233 int c = NextChar(); in ParseString()
1299 int c = NextChar(); in SkipNL()
1381 int c = NextChar(); in ReadTerm()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Demangle/
DMicrosoftDemangle.cpp1371 unsigned NextChar = in demangleStringLiteral() local
1374 outputEscapedChar(OS, NextChar); in demangleStringLiteral()
/freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/
DSemaType.cpp4241 const char *NextChar = S.SourceMgr.getCharacterData(FixItLoc); in fixItNullability() local
4242 if (!NextChar) in fixItNullability()
4250 if (isWhitespace(*NextChar)) { in fixItNullability()
4252 } else if (NextChar[-1] == '[') { in fixItNullability()
4253 if (NextChar[0] == ']') in fixItNullability()
4257 } else if (!isIdentifierBody(NextChar[0], /*allow dollar*/true) && in fixItNullability()
4258 !isIdentifierBody(NextChar[-1], /*allow dollar*/true)) { in fixItNullability()