OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:NumVal
(Results
1 - 18
of
18
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter2/
toy.cpp
29
static double
NumVal
; // Filled in if tok_number
58
NumVal
= strtod(NumStr.c_str(), nullptr);
199
auto Result = std::make_unique<NumberExprAST>(
NumVal
);
/src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter3/
toy.cpp
42
static double
NumVal
; // Filled in if tok_number
71
NumVal
= strtod(NumStr.c_str(), nullptr);
226
auto Result = std::make_unique<NumberExprAST>(
NumVal
);
/src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp
52
static double
NumVal
; // Filled in if tok_number
81
NumVal
= strtod(NumStr.c_str(), nullptr);
236
auto Result = std::make_unique<NumberExprAST>(
NumVal
);
/src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
toy.cpp
64
static double
NumVal
; // Filled in if tok_number
109
NumVal
= strtod(NumStr.c_str(), nullptr);
332
auto Result = std::make_unique<NumberExprAST>(
NumVal
);
638
if (
NumVal
< 1 ||
NumVal
> 100)
640
BinaryPrecedence = (unsigned)
NumVal
;
/src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
toy.cpp
64
static double
NumVal
; // Filled in if tok_number
109
NumVal
= strtod(NumStr.c_str(), nullptr);
332
auto Result = std::make_unique<NumberExprAST>(
NumVal
);
638
if (
NumVal
< 1 ||
NumVal
> 100)
640
BinaryPrecedence = (unsigned)
NumVal
;
/src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
toy.cpp
64
static double
NumVal
; // Filled in if tok_number
109
NumVal
= strtod(NumStr.c_str(), nullptr);
332
auto Result = std::make_unique<NumberExprAST>(
NumVal
);
638
if (
NumVal
< 1 ||
NumVal
> 100)
640
BinaryPrecedence = (unsigned)
NumVal
;
/src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
toy.cpp
64
static double
NumVal
; // Filled in if tok_number
109
NumVal
= strtod(NumStr.c_str(), nullptr);
315
auto Result = std::make_unique<NumberExprAST>(
NumVal
);
621
if (
NumVal
< 1 ||
NumVal
> 100)
623
BinaryPrecedence = (unsigned)
NumVal
;
/src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp
60
static double
NumVal
; // Filled in if tok_number
99
NumVal
= strtod(NumStr.c_str(), nullptr);
281
auto Result = std::make_unique<NumberExprAST>(
NumVal
);
/src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp
64
static double
NumVal
; // Filled in if tok_number
107
NumVal
= strtod(NumStr.c_str(), nullptr);
315
auto Result = std::make_unique<NumberExprAST>(
NumVal
);
570
if (
NumVal
< 1 ||
NumVal
> 100)
572
BinaryPrecedence = (unsigned)
NumVal
;
/src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp
69
static double
NumVal
; // Filled in if tok_number
114
NumVal
= strtod(NumStr.c_str(), nullptr);
337
auto Result = std::make_unique<NumberExprAST>(
NumVal
);
643
if (
NumVal
< 1 ||
NumVal
> 100)
645
BinaryPrecedence = (unsigned)
NumVal
;
/src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter8/
toy.cpp
70
static double
NumVal
; // Filled in if tok_number
115
NumVal
= strtod(NumStr.c_str(), nullptr);
338
auto Result = std::make_unique<NumberExprAST>(
NumVal
);
644
if (
NumVal
< 1 ||
NumVal
> 100)
646
BinaryPrecedence = (unsigned)
NumVal
;
/src/external/apache2/llvm/dist/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
;
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
;
/src/external/apache2/llvm/dist/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
;
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
;
/src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter9/
toy.cpp
120
static double
NumVal
; // Filled in if tok_number
167
NumVal
= strtod(NumStr.c_str(), nullptr);
445
auto Result = std::make_unique<NumberExprAST>(
NumVal
);
758
if (
NumVal
< 1 ||
NumVal
> 100)
760
BinaryPrecedence = (unsigned)
NumVal
;
/src/external/apache2/llvm/dist/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
;
/src/external/apache2/llvm/dist/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
;
Completed in 105 milliseconds
Indexes created Sun Sep 27 00:26:35 UTC 2026