/external/swiftshader/third_party/LLVM/include/llvm/Bitcode/ |
D | BitstreamReader.h | 125 const unsigned char *NextChar; variable 152 BitstreamCursor() : BitStream(0), NextChar(0) { in BitstreamCursor() 154 BitstreamCursor(const BitstreamCursor &RHS) : BitStream(0), NextChar(0) { in BitstreamCursor() 159 NextChar = R.getFirstChar(); in BitstreamCursor() 160 assert(NextChar && "Bitstream not initialized yet"); in BitstreamCursor() 170 NextChar = R.getFirstChar(); in init() 171 assert(NextChar && "Bitstream not initialized yet"); in init() 185 NextChar = RHS.NextChar; 229 return NextChar == BitStream->getLastChar() && BitsInCurWord == 0; in AtEndOfStream() 234 return (NextChar-BitStream->getFirstChar())*CHAR_BIT - BitsInCurWord; in GetCurrentBitNo() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Bitcode/ |
D | BitstreamReader.h | 83 size_t NextChar = 0; variable 118 return BitsInCurWord == 0 && BitcodeBytes.size() <= NextChar; in AtEndOfStream() 123 return NextChar*CHAR_BIT - BitsInCurWord; in GetCurrentBitNo() 138 NextChar = ByteNo; in JumpToBit() 160 if (NextChar >= BitcodeBytes.size()) in fillCurWord() 164 const uint8_t *NextCharPtr = BitcodeBytes.data() + NextChar; in fillCurWord() 166 if (BitcodeBytes.size() >= NextChar + sizeof(word_t)) { in fillCurWord() 173 BytesRead = BitcodeBytes.size() - NextChar; in fillCurWord() 178 NextChar += BytesRead; in fillCurWord() 274 void skipToEnd() { NextChar = BitcodeBytes.size(); } in skipToEnd()
|
/external/llvm/lib/TableGen/ |
D | TGLexer.cpp | 138 int NextChar = 0; in LexToken() local 145 NextChar = peekNextChar(i++); in LexToken() 146 } while (isdigit(NextChar)); in LexToken() 148 if (NextChar == 'x' || NextChar == 'b') { in LexToken() 156 if (NextChar == 'b') in LexToken() 163 if (NextChar == 'x') in LexToken() 170 if (isalpha(NextChar) || NextChar == '_') in LexToken()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/TableGen/ |
D | TGLexer.cpp | 140 int NextChar = 0; in LexToken() local 147 NextChar = peekNextChar(i++); in LexToken() 148 } while (isdigit(NextChar)); in LexToken() 150 if (NextChar == 'x' || NextChar == 'b') { in LexToken() 158 if (NextChar == 'b') in LexToken() 165 if (NextChar == 'x') in LexToken() 172 if (isalpha(NextChar) || NextChar == '_') in LexToken()
|
/external/protobuf/src/google/protobuf/io/ |
D | tokenizer.cc | 223 void Tokenizer::NextChar() { in NextChar() function in google::protobuf::io::Tokenizer 315 NextChar(); in TryConsumeOne() 324 NextChar(); in TryConsume() 334 NextChar(); in ConsumeZeroOrMore() 344 NextChar(); in ConsumeOneOrMore() 365 NextChar(); in ConsumeString() 371 NextChar(); in ConsumeString() 412 NextChar(); in ConsumeString() 415 NextChar(); in ConsumeString() 481 NextChar(); in ConsumeLineComment() [all …]
|
D | tokenizer.h | 297 void NextChar();
|
/external/llvm/include/llvm/Bitcode/ |
D | BitstreamReader.h | 137 size_t NextChar = 0; variable 175 return Size <= NextChar; in AtEndOfStream() 182 return NextChar*CHAR_BIT - BitsInCurWord; in GetCurrentBitNo() 198 NextChar = ByteNo; in JumpToBit() 238 if (Size != 0 && NextChar >= Size) in fillCurWord() 245 R->getBitcodeBytes().readBytes(Array, sizeof(Array), NextChar); in fillCurWord() 251 Size = NextChar; in fillCurWord() 258 NextChar += BytesRead; in fillCurWord() 354 void skipToEnd() { NextChar = R->getBitcodeBytes().getExtent(); } in skipToEnd()
|
/external/swiftshader/third_party/subzero/pnacl-llvm/include/llvm/Bitcode/NaCl/ |
D | NaClBitstreamReader.h | 400 size_t NextChar; variable 494 NextChar = (BitStream == nullptr) ? 0 : BitStream->getInitialAddress(); in init() 529 return Size == NextChar; in AtEndOfStream() 541 return NextChar*CHAR_BIT - BitsInCurWord; in GetCurrentBitNo() 652 NextChar = ByteNo; in JumpToBit() 661 assert(Size == 0 || NextChar < (unsigned)Size); in fillCurWord() 666 uint64_t BytesRead = fillBuffer(Array, sizeof(Array), NextChar); in fillCurWord() 670 Size = NextChar; in fillCurWord() 677 NextChar += BytesRead; in fillCurWord()
|
/external/libchrome/base/json/ |
D | json_parser.h | 241 FRIEND_TEST_ALL_PREFIXES(JSONParserTest, NextChar);
|
D | json_parser_unittest.cc | 52 TEST_F(JSONParserTest, NextChar) { in TEST_F() argument
|
/external/swiftshader/third_party/PowerVR_SDK/Tools/ |
D | PVRTPrint3D.cpp | 865 PVRTint32 NextChar; in UpdateLine() local 896 NextChar = Text[uiIndex + 1]; in UpdateLine() 897 ApplyKerning(Text[uiIndex], NextChar, fKernOffset); in UpdateLine()
|
/external/llvm/utils/FileCheck/ |
D | FileCheck.cpp | 732 char NextChar = Buffer[Prefix.size()]; in FindCheckType() local 735 if (NextChar == ':') in FindCheckType() 738 if (NextChar != '-') in FindCheckType()
|
/external/swiftshader/third_party/llvm-7.0/llvm/utils/FileCheck/ |
D | FileCheck.cpp | 803 char NextChar = Buffer[Prefix.size()]; in FindCheckType() local 806 if (NextChar == ':') in FindCheckType() 809 if (NextChar != '-') in FindCheckType()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/ |
D | X86ISelLowering.cpp | 40108 char NextChar = Size == 2 ? constraint[1] : 'i'; in getSingleConstraintMatchWeight() local 40111 switch (NextChar) { in getSingleConstraintMatchWeight()
|