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

/external/llvm/examples/Kaleidoscope/Chapter2/
H A Dtoy.cpp25 static double NumVal; // Filled in if tok_number variable
52 NumVal = strtod(NumStr.c_str(), 0);
201 ExprAST *Result = new NumberExprAST(NumVal);
/external/llvm/examples/Kaleidoscope/Chapter3/
H A Dtoy.cpp30 static double NumVal; // Filled in if tok_number variable
57 NumVal = strtod(NumStr.c_str(), 0);
222 ExprAST *Result = new NumberExprAST(NumVal);
/external/llvm/examples/Kaleidoscope/Chapter4/
H A Dtoy.cpp37 static double NumVal; // Filled in if tok_number variable
64 NumVal = strtod(NumStr.c_str(), 0);
229 ExprAST *Result = new NumberExprAST(NumVal);
/external/llvm/examples/Kaleidoscope/Chapter5/
H A Dtoy.cpp41 static double NumVal; // Filled in if tok_number variable
73 NumVal = strtod(NumStr.c_str(), 0);
258 ExprAST *Result = new NumberExprAST(NumVal);
/external/llvm/examples/Kaleidoscope/Chapter6/
H A Dtoy.cpp44 static double NumVal; // Filled in if tok_number variable
78 NumVal = strtod(NumStr.c_str(), 0);
286 ExprAST *Result = new NumberExprAST(NumVal);
485 if (NumVal < 1 || NumVal > 100)
487 BinaryPrecedence = (unsigned)NumVal;
/external/llvm/examples/Kaleidoscope/Chapter7/
H A Dtoy.cpp47 static double NumVal; // Filled in if tok_number variable
82 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/cached/
H A Dtoy-jit.cpp65 static double NumVal; // Filled in if tok_number variable
100 NumVal = strtod(NumStr.c_str(), 0);
321 ExprAST *Result = new NumberExprAST(NumVal);
567 if (NumVal < 1 || NumVal > 100)
569 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.cpp95 static double NumVal; // Filled in if tok_number variable
130 NumVal = strtod(NumStr.c_str(), 0);
351 ExprAST *Result = new NumberExprAST(NumVal);
597 if (NumVal < 1 || NumVal > 100)
599 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.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;
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;

Completed in 153 milliseconds