HomeSort by relevance Sort by last modified time
    Searched refs:NumVal (Results 1 - 25 of 27) sorted by null

1 2

  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter2/
toy.cpp 24 static double NumVal; // Filled in if tok_number
51 NumVal = strtod(NumStr.c_str(), 0);
208 ExprAST *Result = new NumberExprAST(NumVal);
  /external/llvm/lib/CodeGen/GlobalISel/
RegisterBankInfo.cpp 548 unsigned NumVal) const {
549 return const_cast<OperandsMapper *>(this)->getNewVRegsEnd(StartIdx, NumVal);
553 unsigned NumVal) {
554 assert((NewVRegs.size() == StartIdx + NumVal ||
555 NewVRegs.size() > StartIdx + NumVal) &&
557 return NewVRegs.size() <= StartIdx + NumVal ? NewVRegs.end()
558 : &NewVRegs[StartIdx + NumVal];
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter6/
toy.cpp 43 static double NumVal; // Filled in if tok_number
77 NumVal = strtod(NumStr.c_str(), 0);
284 ExprAST *Result = new NumberExprAST(NumVal);
483 if (NumVal < 1 || NumVal > 100)
485 BinaryPrecedence = (unsigned)NumVal;
  /external/llvm/examples/Kaleidoscope/Chapter2/
toy.cpp 40 static double NumVal; // Filled in if tok_number
69 NumVal = strtod(NumStr.c_str(), nullptr);
205 auto Result = helper::make_unique<NumberExprAST>(NumVal);
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter3/
toy.cpp 29 static double NumVal; // Filled in if tok_number
56 NumVal = strtod(NumStr.c_str(), 0);
220 ExprAST *Result = new NumberExprAST(NumVal);
  /external/llvm/include/llvm/CodeGen/GlobalISel/
RegisterBankInfo.h 220 /// spannig \p NumVal in NewVRegs.
221 /// \pre StartIdx + NumVal <= NewVRegs.size()
223 getNewVRegsEnd(unsigned StartIdx, unsigned NumVal) const;
225 unsigned NumVal);
  /external/llvm/examples/Kaleidoscope/Chapter3/
toy.cpp 41 static double NumVal; // Filled in if tok_number
70 NumVal = strtod(NumStr.c_str(), nullptr);
215 auto Result = llvm::make_unique<NumberExprAST>(NumVal);
  /external/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 50 static double NumVal; // Filled in if tok_number
79 NumVal = strtod(NumStr.c_str(), nullptr);
224 auto Result = llvm::make_unique<NumberExprAST>(NumVal);
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter4/
toy.cpp 36 static double NumVal; // Filled in if tok_number
63 NumVal = strtod(NumStr.c_str(), 0);
227 ExprAST *Result = new NumberExprAST(NumVal);
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
toy.cpp 66 static double NumVal; // Filled in if tok_number
111 NumVal = strtod(NumStr.c_str(), nullptr);
320 auto Result = llvm::make_unique<NumberExprAST>(NumVal);
626 if (NumVal < 1 || NumVal > 100)
628 BinaryPrecedence = (unsigned)NumVal;
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
toy.cpp 66 static double NumVal; // Filled in if tok_number
111 NumVal = strtod(NumStr.c_str(), nullptr);
320 auto Result = llvm::make_unique<NumberExprAST>(NumVal);
626 if (NumVal < 1 || NumVal > 100)
628 BinaryPrecedence = (unsigned)NumVal;
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
toy.cpp 66 static double NumVal; // Filled in if tok_number
111 NumVal = strtod(NumStr.c_str(), nullptr);
320 auto Result = llvm::make_unique<NumberExprAST>(NumVal);
626 if (NumVal < 1 || NumVal > 100)
628 BinaryPrecedence = (unsigned)NumVal;
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
toy.cpp 67 static double NumVal; // Filled in if tok_number
112 NumVal = strtod(NumStr.c_str(), nullptr);
308 auto Result = llvm::make_unique<NumberExprAST>(NumVal);
614 if (NumVal < 1 || NumVal > 100)
616 BinaryPrecedence = (unsigned)NumVal;
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/
toy.cpp 82 static double NumVal; // Filled in if tok_number
127 NumVal = strtod(NumStr.c_str(), nullptr);
323 auto Result = llvm::make_unique<NumberExprAST>(NumVal);
629 if (NumVal < 1 || NumVal > 100)
631 BinaryPrecedence = (unsigned)NumVal;
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 62 static double NumVal; // Filled in if tok_number
105 NumVal = strtod(NumStr.c_str(), nullptr);
300 auto Result = llvm::make_unique<NumberExprAST>(NumVal);
555 if (NumVal < 1 || NumVal > 100)
557 BinaryPrecedence = (unsigned)NumVal;
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 66 static double NumVal; // Filled in if tok_number
111 NumVal = strtod(NumStr.c_str(), nullptr);
320 auto Result = llvm::make_unique<NumberExprAST>(NumVal);
626 if (NumVal < 1 || NumVal > 100)
628 BinaryPrecedence = (unsigned)NumVal;
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter8/
toy.cpp 63 static double NumVal; // Filled in if tok_number
108 NumVal = strtod(NumStr.c_str(), nullptr);
317 auto Result = llvm::make_unique<NumberExprAST>(NumVal);
623 if (NumVal < 1 || NumVal > 100)
625 BinaryPrecedence = (unsigned)NumVal;
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 64 static double NumVal; // Filled in if tok_number
99 NumVal = strtod(NumStr.c_str(), 0);
320 ExprAST *Result = new NumberExprAST(NumVal);
566 if (NumVal < 1 || NumVal > 100)
568 BinaryPrecedence = (unsigned)NumVal;
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 48 static double NumVal; // Filled in if tok_number
83 NumVal = strtod(NumStr.c_str(), 0);
304 ExprAST *Result = new NumberExprAST(NumVal);
550 if (NumVal < 1 || NumVal > 100)
552 BinaryPrecedence = (unsigned)NumVal;
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 49 static double NumVal; // Filled in if tok_number
84 NumVal = strtod(NumStr.c_str(), 0);
305 ExprAST *Result = new NumberExprAST(NumVal);
551 if (NumVal < 1 || NumVal > 100)
553 BinaryPrecedence = (unsigned)NumVal;
    [all...]
toy.cpp 50 static double NumVal; // Filled in if tok_number
85 NumVal = strtod(NumStr.c_str(), 0);
306 ExprAST *Result = new NumberExprAST(NumVal);
552 if (NumVal < 1 || NumVal > 100)
554 BinaryPrecedence = (unsigned)NumVal;
    [all...]
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter7/
toy.cpp 46 static double NumVal; // Filled in if tok_number
81 NumVal = strtod(NumStr.c_str(), 0);
302 ExprAST *Result = new NumberExprAST(NumVal);
548 if (NumVal < 1 || NumVal > 100)
550 BinaryPrecedence = (unsigned)NumVal;
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 58 static double NumVal; // Filled in if tok_number
97 NumVal = strtod(NumStr.c_str(), nullptr);
267 auto Result = llvm::make_unique<NumberExprAST>(NumVal);
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter5/
toy.cpp 40 static double NumVal; // Filled in if tok_number
72 NumVal = strtod(NumStr.c_str(), 0);
256 ExprAST *Result = new NumberExprAST(NumVal);
  /external/llvm/examples/Kaleidoscope/Chapter9/
toy.cpp 120 static double NumVal; // Filled in if tok_number
167 NumVal = strtod(NumStr.c_str(), nullptr);
445 auto Result = llvm::make_unique<NumberExprAST>(NumVal);
758 if (NumVal < 1 || NumVal > 100)
760 BinaryPrecedence = (unsigned)NumVal;
    [all...]

Completed in 262 milliseconds

1 2