HomeSort by relevance Sort by last modified time
    Searched defs:LookAhead (Results 1 - 7 of 7) sorted by null

  /external/llvm/lib/MC/MCParser/
AsmLexer.cpp 224 const char *LookAhead = CurPtr;
226 if (isdigit(*LookAhead)) {
227 ++LookAhead;
228 } else if (isxdigit(*LookAhead)) {
230 FirstHex = LookAhead;
231 ++LookAhead;
236 bool isHex = *LookAhead == 'h' || *LookAhead == 'H';
237 CurPtr = isHex || !FirstHex ? LookAhead : FirstHex;
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/MC/MCParser/
AsmLexer.cpp 248 const char *LookAhead = CurPtr;
250 if (isDigit(*LookAhead)) {
251 ++LookAhead;
252 } else if (isHexDigit(*LookAhead)) {
254 FirstHex = LookAhead;
255 ++LookAhead;
260 bool isHex = *LookAhead == 'h' || *LookAhead == 'H';
261 CurPtr = isHex || !FirstHex ? LookAhead : FirstHex;
  /external/tensorflow/tensorflow/compiler/xla/service/
hlo_lexer.cc 87 TokKind HloLexer::LookAhead() {
  /external/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGRRList.cpp 895 unsigned LookAhead = std::min((unsigned)Sequence.size(),
897 if (LookAhead == 0)
900 std::vector<SUnit*>::const_iterator I = (Sequence.end() - LookAhead)
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGRRList.cpp     [all...]
  /external/clang/include/clang/Lex/
Preprocessor.h 618 /// lookahead. They are "lexed" by the CachingLex() method.
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
ScheduleDAGRRList.cpp 725 unsigned LookAhead = std::min((unsigned)Sequence.size(),
727 if (LookAhead == 0)
730 std::vector<SUnit*>::const_iterator I = (Sequence.end() - LookAhead);
    [all...]

Completed in 3088 milliseconds