HomeSort by relevance Sort by last modified time
    Searched refs:NumVal (Results 1 - 12 of 12) 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 44 static double NumVal; // Filled in if tok_number
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/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/Chapter4/
toy.cpp 37 static double NumVal; // Filled in if tok_number
64 NumVal = strtod(NumStr.c_str(), 0);
229 ExprAST *Result = new NumberExprAST(NumVal);
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 47 static double NumVal; // Filled in if tok_number
82 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/cached/
toy-jit.cpp 65 static double NumVal; // Filled in if tok_number
100 NumVal = strtod(NumStr.c_str(), 0);
321 ExprAST *Result = new NumberExprAST(NumVal);
567 if (NumVal < 1 || NumVal > 100)
569 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 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...]
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/Chapter5/
toy.cpp 41 static double NumVal; // Filled in if tok_number
73 NumVal = strtod(NumStr.c_str(), 0);
258 ExprAST *Result = new NumberExprAST(NumVal);
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 95 static double NumVal; // Filled in if tok_number
130 NumVal = strtod(NumStr.c_str(), 0);
351 ExprAST *Result = new NumberExprAST(NumVal);
597 if (NumVal < 1 || NumVal > 100)
599 BinaryPrecedence = (unsigned)NumVal;
    [all...]

Completed in 53 milliseconds