/external/llvm/lib/CodeGen/GlobalISel/ |
D | RegisterBankInfo.cpp | 548 unsigned NumVal) const { in getNewVRegsEnd() 549 return const_cast<OperandsMapper *>(this)->getNewVRegsEnd(StartIdx, NumVal); in getNewVRegsEnd() 553 unsigned NumVal) { in getNewVRegsEnd() argument 554 assert((NewVRegs.size() == StartIdx + NumVal || in getNewVRegsEnd() 555 NewVRegs.size() > StartIdx + NumVal) && in getNewVRegsEnd() 557 return NewVRegs.size() <= StartIdx + NumVal ? NewVRegs.end() in getNewVRegsEnd() 558 : &NewVRegs[StartIdx + NumVal]; in getNewVRegsEnd()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/GlobalISel/ |
D | RegisterBankInfo.cpp | 637 unsigned NumVal) const { in getNewVRegsEnd() 638 return const_cast<OperandsMapper *>(this)->getNewVRegsEnd(StartIdx, NumVal); in getNewVRegsEnd() 642 unsigned NumVal) { in getNewVRegsEnd() argument 643 assert((NewVRegs.size() == StartIdx + NumVal || in getNewVRegsEnd() 644 NewVRegs.size() > StartIdx + NumVal) && in getNewVRegsEnd() 646 return NewVRegs.size() <= StartIdx + NumVal ? NewVRegs.end() in getNewVRegsEnd() 647 : &NewVRegs[StartIdx + NumVal]; in getNewVRegsEnd()
|
/external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/Chapter2/ |
D | toy.cpp | 30 static double NumVal; // Filled in if tok_number variable 59 NumVal = strtod(NumStr.c_str(), nullptr); in gettok() 200 auto Result = llvm::make_unique<NumberExprAST>(NumVal); in ParseNumberExpr()
|
/external/llvm/examples/Kaleidoscope/Chapter2/ |
D | toy.cpp | 40 static double NumVal; // Filled in if tok_number variable 69 NumVal = strtod(NumStr.c_str(), nullptr); in gettok() 205 auto Result = helper::make_unique<NumberExprAST>(NumVal); in ParseNumberExpr()
|
/external/llvm/examples/Kaleidoscope/Chapter6/ |
D | toy.cpp | 62 static double NumVal; // Filled in if tok_number variable 105 NumVal = strtod(NumStr.c_str(), nullptr); in gettok() 300 auto Result = llvm::make_unique<NumberExprAST>(NumVal); in ParseNumberExpr() 555 if (NumVal < 1 || NumVal > 100) in ParsePrototype() 557 BinaryPrecedence = (unsigned)NumVal; in ParsePrototype()
|
/external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/Chapter6/ |
D | toy.cpp | 64 static double NumVal; // Filled in if tok_number variable 107 NumVal = strtod(NumStr.c_str(), nullptr); in gettok() 315 auto Result = llvm::make_unique<NumberExprAST>(NumVal); in ParseNumberExpr() 570 if (NumVal < 1 || NumVal > 100) in ParsePrototype() 572 BinaryPrecedence = (unsigned)NumVal; in ParsePrototype()
|
/external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/MCJIT/lazy/ |
D | toy-jit.cpp | 49 static double NumVal; // Filled in if tok_number variable 84 NumVal = strtod(NumStr.c_str(), 0); in gettok() 305 ExprAST *Result = new NumberExprAST(NumVal); in ParseNumberExpr() 551 if (NumVal < 1 || NumVal > 100) in ParsePrototype() 553 BinaryPrecedence = (unsigned)NumVal; in ParsePrototype()
|
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/ |
D | toy-jit.cpp | 49 static double NumVal; // Filled in if tok_number variable 84 NumVal = strtod(NumStr.c_str(), 0); in gettok() 305 ExprAST *Result = new NumberExprAST(NumVal); in ParseNumberExpr() 551 if (NumVal < 1 || NumVal > 100) in ParsePrototype() 553 BinaryPrecedence = (unsigned)NumVal; in ParsePrototype()
|
/external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/MCJIT/cached/ |
D | toy-jit.cpp | 64 static double NumVal; // Filled in if tok_number variable 99 NumVal = strtod(NumStr.c_str(), 0); in gettok() 320 ExprAST *Result = new NumberExprAST(NumVal); in ParseNumberExpr() 566 if (NumVal < 1 || NumVal > 100) in ParsePrototype() 568 BinaryPrecedence = (unsigned)NumVal; in ParsePrototype()
|
/external/llvm/examples/Kaleidoscope/MCJIT/cached/ |
D | toy-jit.cpp | 64 static double NumVal; // Filled in if tok_number variable 99 NumVal = strtod(NumStr.c_str(), 0); in gettok() 320 ExprAST *Result = new NumberExprAST(NumVal); in ParseNumberExpr() 566 if (NumVal < 1 || NumVal > 100) in ParsePrototype() 568 BinaryPrecedence = (unsigned)NumVal; in ParsePrototype()
|
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/ |
D | toy.cpp | 66 static double NumVal; // Filled in if tok_number variable 111 NumVal = strtod(NumStr.c_str(), nullptr); in gettok() 320 auto Result = llvm::make_unique<NumberExprAST>(NumVal); in ParseNumberExpr() 626 if (NumVal < 1 || NumVal > 100) in ParsePrototype() 628 BinaryPrecedence = (unsigned)NumVal; in ParsePrototype()
|
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/ |
D | toy.cpp | 67 static double NumVal; // Filled in if tok_number variable 112 NumVal = strtod(NumStr.c_str(), nullptr); in gettok() 308 auto Result = llvm::make_unique<NumberExprAST>(NumVal); in ParseNumberExpr() 614 if (NumVal < 1 || NumVal > 100) in ParsePrototype() 616 BinaryPrecedence = (unsigned)NumVal; in ParsePrototype()
|
/external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/ |
D | toy.cpp | 64 static double NumVal; // Filled in if tok_number variable 109 NumVal = strtod(NumStr.c_str(), nullptr); in gettok() 332 auto Result = llvm::make_unique<NumberExprAST>(NumVal); in ParseNumberExpr() 638 if (NumVal < 1 || NumVal > 100) in ParsePrototype() 640 BinaryPrecedence = (unsigned)NumVal; in ParsePrototype()
|
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/ |
D | toy.cpp | 66 static double NumVal; // Filled in if tok_number variable 111 NumVal = strtod(NumStr.c_str(), nullptr); in gettok() 320 auto Result = llvm::make_unique<NumberExprAST>(NumVal); in ParseNumberExpr() 626 if (NumVal < 1 || NumVal > 100) in ParsePrototype() 628 BinaryPrecedence = (unsigned)NumVal; in ParsePrototype()
|
/external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/ |
D | toy.cpp | 66 static double NumVal; // Filled in if tok_number variable 111 NumVal = strtod(NumStr.c_str(), nullptr); in gettok() 317 auto Result = llvm::make_unique<NumberExprAST>(NumVal); in ParseNumberExpr() 623 if (NumVal < 1 || NumVal > 100) in ParsePrototype() 625 BinaryPrecedence = (unsigned)NumVal; in ParsePrototype()
|
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/ |
D | toy.cpp | 66 static double NumVal; // Filled in if tok_number variable 111 NumVal = strtod(NumStr.c_str(), nullptr); in gettok() 320 auto Result = llvm::make_unique<NumberExprAST>(NumVal); in ParseNumberExpr() 626 if (NumVal < 1 || NumVal > 100) in ParsePrototype() 628 BinaryPrecedence = (unsigned)NumVal; in ParsePrototype()
|
/external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/ |
D | toy.cpp | 64 static double NumVal; // Filled in if tok_number variable 109 NumVal = strtod(NumStr.c_str(), nullptr); in gettok() 332 auto Result = llvm::make_unique<NumberExprAST>(NumVal); in ParseNumberExpr() 638 if (NumVal < 1 || NumVal > 100) in ParsePrototype() 640 BinaryPrecedence = (unsigned)NumVal; in ParsePrototype()
|
/external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/ |
D | toy.cpp | 64 static double NumVal; // Filled in if tok_number variable 109 NumVal = strtod(NumStr.c_str(), nullptr); in gettok() 332 auto Result = llvm::make_unique<NumberExprAST>(NumVal); in ParseNumberExpr() 638 if (NumVal < 1 || NumVal > 100) in ParsePrototype() 640 BinaryPrecedence = (unsigned)NumVal; in ParsePrototype()
|
/external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/Chapter8/ |
D | toy.cpp | 70 static double NumVal; // Filled in if tok_number variable 115 NumVal = strtod(NumStr.c_str(), nullptr); in gettok() 338 auto Result = llvm::make_unique<NumberExprAST>(NumVal); in ParseNumberExpr() 644 if (NumVal < 1 || NumVal > 100) in ParsePrototype() 646 BinaryPrecedence = (unsigned)NumVal; in ParsePrototype()
|
/external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/Chapter7/ |
D | toy.cpp | 69 static double NumVal; // Filled in if tok_number variable 114 NumVal = strtod(NumStr.c_str(), nullptr); in gettok() 337 auto Result = llvm::make_unique<NumberExprAST>(NumVal); in ParseNumberExpr() 643 if (NumVal < 1 || NumVal > 100) in ParsePrototype() 645 BinaryPrecedence = (unsigned)NumVal; in ParsePrototype()
|
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/ |
D | toy.cpp | 82 static double NumVal; // Filled in if tok_number variable 127 NumVal = strtod(NumStr.c_str(), nullptr); in gettok() 323 auto Result = llvm::make_unique<NumberExprAST>(NumVal); in ParseNumberExpr() 629 if (NumVal < 1 || NumVal > 100) in ParsePrototype() 631 BinaryPrecedence = (unsigned)NumVal; in ParsePrototype()
|
/external/llvm/examples/Kaleidoscope/Chapter7/ |
D | toy.cpp | 66 static double NumVal; // Filled in if tok_number variable 111 NumVal = strtod(NumStr.c_str(), nullptr); in gettok() 320 auto Result = llvm::make_unique<NumberExprAST>(NumVal); in ParseNumberExpr() 626 if (NumVal < 1 || NumVal > 100) in ParsePrototype() 628 BinaryPrecedence = (unsigned)NumVal; in ParsePrototype()
|
/external/llvm/examples/Kaleidoscope/Chapter8/ |
D | toy.cpp | 63 static double NumVal; // Filled in if tok_number variable 108 NumVal = strtod(NumStr.c_str(), nullptr); in gettok() 317 auto Result = llvm::make_unique<NumberExprAST>(NumVal); in ParseNumberExpr() 623 if (NumVal < 1 || NumVal > 100) in ParsePrototype() 625 BinaryPrecedence = (unsigned)NumVal; in ParsePrototype()
|
/external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/ |
D | toy.cpp | 83 static double NumVal; // Filled in if tok_number variable 128 NumVal = strtod(NumStr.c_str(), nullptr); in gettok() 334 auto Result = llvm::make_unique<NumberExprAST>(NumVal); in ParseNumberExpr() 640 if (NumVal < 1 || NumVal > 100) in ParsePrototype() 642 BinaryPrecedence = (unsigned)NumVal; in ParsePrototype()
|
/external/llvm/examples/Kaleidoscope/Chapter3/ |
D | toy.cpp | 41 static double NumVal; // Filled in if tok_number variable 70 NumVal = strtod(NumStr.c_str(), nullptr); in gettok() 215 auto Result = llvm::make_unique<NumberExprAST>(NumVal); in ParseNumberExpr()
|