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

  /external/llvm/examples/Kaleidoscope/Chapter2/
toy.cpp 25 static double NumVal; // Filled in if tok_number
52 NumVal = strtod(NumStr.c_str(), 0);
201 ExprAST *Result = new NumberExprAST(NumVal);
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 52 static double NumVal; // Filled in if tok_number
95 NumVal = strtod(NumStr.c_str(), 0);
321 ExprAST *Result = new NumberExprAST(NumVal);
536 if (NumVal < 1 || NumVal > 100)
538 BinaryPrecedence = (unsigned)NumVal;
  /external/llvm/examples/Kaleidoscope/Chapter3/
toy.cpp 30 static double NumVal; // Filled in if tok_number
57 NumVal = strtod(NumStr.c_str(), 0);
222 ExprAST *Result = new NumberExprAST(NumVal);
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 55 static double NumVal; // Filled in if tok_number
100 NumVal = strtod(NumStr.c_str(), 0);
341 ExprAST *Result = new NumberExprAST(NumVal);
607 if (NumVal < 1 || NumVal > 100)
609 BinaryPrecedence = (unsigned)NumVal;
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter8/
toy.cpp 106 static double NumVal; // Filled in if tok_number
170 NumVal = strtod(NumStr.c_str(), 0);
485 ExprAST *Result = new NumberExprAST(NumVal);
756 if (NumVal < 1 || NumVal > 100)
758 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...]
toy.cpp 71 static double NumVal; // Filled in if tok_number
106 NumVal = strtod(NumStr.c_str(), 0);
327 ExprAST *Result = new NumberExprAST(NumVal);
573 if (NumVal < 1 || NumVal > 100)
575 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/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 40 static double NumVal; // Filled in if tok_number
69 NumVal = strtod(NumStr.c_str(), 0);
250 ExprAST *Result = new NumberExprAST(NumVal);
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 48 static double NumVal; // Filled in if tok_number
87 NumVal = strtod(NumStr.c_str(), 0);
290 ExprAST *Result = new NumberExprAST(NumVal);
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 90 static double NumVal; // Filled in if tok_number
125 NumVal = strtod(NumStr.c_str(), 0);
346 ExprAST *Result = new NumberExprAST(NumVal);
592 if (NumVal < 1 || NumVal > 100)
594 BinaryPrecedence = (unsigned)NumVal;
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/fully_lazy/
toy.cpp 55 static double NumVal; // Filled in if tok_number
90 NumVal = strtod(NumStr.c_str(), 0);
328 auto Result = llvm::make_unique<NumberExprAST>(NumVal);
590 if (NumVal < 1 || NumVal > 100)
592 BinaryPrecedence = (unsigned)NumVal;
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/initial/
toy.cpp 54 static double NumVal; // Filled in if tok_number
89 NumVal = strtod(NumStr.c_str(), 0);
327 auto Result = llvm::make_unique<NumberExprAST>(NumVal);
589 if (NumVal < 1 || NumVal > 100)
591 BinaryPrecedence = (unsigned)NumVal;
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/lazy_codegen/
toy.cpp 54 static double NumVal; // Filled in if tok_number
89 NumVal = strtod(NumStr.c_str(), 0);
327 auto Result = llvm::make_unique<NumberExprAST>(NumVal);
589 if (NumVal < 1 || NumVal > 100)
591 BinaryPrecedence = (unsigned)NumVal;
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/lazy_irgen/
toy.cpp 54 static double NumVal; // Filled in if tok_number
89 NumVal = strtod(NumStr.c_str(), 0);
327 auto Result = llvm::make_unique<NumberExprAST>(NumVal);
589 if (NumVal < 1 || NumVal > 100)
591 BinaryPrecedence = (unsigned)NumVal;
    [all...]

Completed in 79 milliseconds