Searched defs:NumVal (Results 1 - 25 of 25) sorted by relevance

/external/llvm/examples/Kaleidoscope/Chapter2/
H A Dtoy.cpp40 static double NumVal; // Filled in if tok_number variable
69 NumVal = strtod(NumStr.c_str(), nullptr);
205 auto Result = helper::make_unique<NumberExprAST>(NumVal);
/external/llvm/examples/Kaleidoscope/Chapter3/
H A Dtoy.cpp41 static double NumVal; // Filled in if tok_number variable
70 NumVal = strtod(NumStr.c_str(), nullptr);
215 auto Result = llvm::make_unique<NumberExprAST>(NumVal);
/external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter2/
H A Dtoy.cpp24 static double NumVal; // Filled in if tok_number variable
51 NumVal = strtod(NumStr.c_str(), 0);
208 ExprAST *Result = new NumberExprAST(NumVal);
/external/llvm/examples/Kaleidoscope/Chapter4/
H A Dtoy.cpp50 static double NumVal; // Filled in if tok_number variable
79 NumVal = strtod(NumStr.c_str(), nullptr);
224 auto Result = llvm::make_unique<NumberExprAST>(NumVal);
/external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter3/
H A Dtoy.cpp29 static double NumVal; // Filled in if tok_number variable
56 NumVal = strtod(NumStr.c_str(), 0);
220 ExprAST *Result = new NumberExprAST(NumVal);
/external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter4/
H A Dtoy.cpp36 static double NumVal; // Filled in if tok_number variable
63 NumVal = strtod(NumStr.c_str(), 0);
227 ExprAST *Result = new NumberExprAST(NumVal);
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
H A Dtoy.cpp66 static double NumVal; // Filled in if tok_number variable
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;
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
H A Dtoy.cpp66 static double NumVal; // Filled in if tok_number variable
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;
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
H A Dtoy.cpp66 static double NumVal; // Filled in if tok_number variable
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;
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
H A Dtoy.cpp67 static double NumVal; // Filled in if tok_number variable
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;
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/
H A Dtoy.cpp82 static double NumVal; // Filled in if tok_number variable
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;
/external/llvm/examples/Kaleidoscope/Chapter5/
H A Dtoy.cpp58 static double NumVal; // Filled in if tok_number variable
97 NumVal = strtod(NumStr.c_str(), nullptr);
267 auto Result = llvm::make_unique<NumberExprAST>(NumVal);
/external/llvm/examples/Kaleidoscope/Chapter6/
H A Dtoy.cpp62 static double NumVal; // Filled in if tok_number variable
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/
H A Dtoy.cpp66 static double NumVal; // Filled in if tok_number variable
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;
/external/llvm/examples/Kaleidoscope/Chapter8/
H A Dtoy.cpp63 static double NumVal; // Filled in if tok_number variable
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;
/external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter5/
H A Dtoy.cpp40 static double NumVal; // Filled in if tok_number variable
72 NumVal = strtod(NumStr.c_str(), 0);
256 ExprAST *Result = new NumberExprAST(NumVal);
/external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter6/
H A Dtoy.cpp43 static double NumVal; // Filled in if tok_number variable
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/Chapter9/
H A Dtoy.cpp120 static double NumVal; // Filled in if tok_number variable
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;
/external/llvm/examples/Kaleidoscope/MCJIT/cached/
H A Dtoy-jit.cpp64 static double NumVal; // Filled in if tok_number variable
99 NumVal = strtod(NumStr.c_str(), 0);
320 ExprAST *Result = new NumberExprAST(NumVal);
566 if (NumVal < 1 || NumVal > 100)
568 BinaryPrecedence = (unsigned)NumVal;
H A Dtoy.cpp71 static double NumVal; // Filled in if tok_number variable
106 NumVal = strtod(NumStr.c_str(), 0);
327 ExprAST *Result = new NumberExprAST(NumVal);
573 if (NumVal < 1 || NumVal > 100)
575 BinaryPrecedence = (unsigned)NumVal;
/external/llvm/examples/Kaleidoscope/MCJIT/complete/
H A Dtoy.cpp90 static double NumVal; // Filled in if tok_number variable
125 NumVal = strtod(NumStr.c_str(), 0);
346 ExprAST *Result = new NumberExprAST(NumVal);
592 if (NumVal < 1 || NumVal > 100)
594 BinaryPrecedence = (unsigned)NumVal;
/external/llvm/examples/Kaleidoscope/MCJIT/initial/
H A Dtoy.cpp48 static double NumVal; // Filled in if tok_number variable
83 NumVal = strtod(NumStr.c_str(), 0);
304 ExprAST *Result = new NumberExprAST(NumVal);
550 if (NumVal < 1 || NumVal > 100)
552 BinaryPrecedence = (unsigned)NumVal;
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/
H A Dtoy-jit.cpp49 static double NumVal; // Filled in if tok_number variable
84 NumVal = strtod(NumStr.c_str(), 0);
305 ExprAST *Result = new NumberExprAST(NumVal);
551 if (NumVal < 1 || NumVal > 100)
553 BinaryPrecedence = (unsigned)NumVal;
H A Dtoy.cpp50 static double NumVal; // Filled in if tok_number variable
85 NumVal = strtod(NumStr.c_str(), 0);
306 ExprAST *Result = new NumberExprAST(NumVal);
552 if (NumVal < 1 || NumVal > 100)
554 BinaryPrecedence = (unsigned)NumVal;
/external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter7/
H A Dtoy.cpp46 static double NumVal; // Filled in if tok_number variable
81 NumVal = strtod(NumStr.c_str(), 0);
302 ExprAST *Result = new NumberExprAST(NumVal);
548 if (NumVal < 1 || NumVal > 100)
550 BinaryPrecedence = (unsigned)NumVal;

Completed in 192 milliseconds