/external/llvm/examples/Kaleidoscope/Chapter2/ |
D | toy.cpp | 62 std::string NumStr; in gettok() local 64 NumStr += LastChar; in gettok() 68 NumVal = strtod(NumStr.c_str(), nullptr); in gettok()
|
/external/llvm/examples/Kaleidoscope/Chapter3/ |
D | toy.cpp | 56 std::string NumStr; in gettok() local 58 NumStr += LastChar; in gettok() 62 NumVal = strtod(NumStr.c_str(), nullptr); in gettok()
|
/external/llvm/examples/Kaleidoscope/Chapter4/ |
D | toy.cpp | 62 std::string NumStr; in gettok() local 64 NumStr += LastChar; in gettok() 68 NumVal = strtod(NumStr.c_str(), nullptr); in gettok()
|
/external/llvm/examples/Kaleidoscope/Chapter5/ |
D | toy.cpp | 79 std::string NumStr; in gettok() local 81 NumStr += LastChar; in gettok() 85 NumVal = strtod(NumStr.c_str(), nullptr); in gettok()
|
/external/llvm/examples/Kaleidoscope/Chapter6/ |
D | toy.cpp | 87 std::string NumStr; in gettok() local 89 NumStr += LastChar; in gettok() 93 NumVal = strtod(NumStr.c_str(), nullptr); in gettok()
|
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/ |
D | toy-jit.cpp | 78 std::string NumStr; in gettok() local 80 NumStr += LastChar; in gettok() 84 NumVal = strtod(NumStr.c_str(), 0); in gettok()
|
D | toy.cpp | 79 std::string NumStr; in gettok() local 81 NumStr += LastChar; in gettok() 85 NumVal = strtod(NumStr.c_str(), 0); in gettok()
|
/external/llvm/examples/Kaleidoscope/MCJIT/cached/ |
D | toy-jit.cpp | 93 std::string NumStr; in gettok() local 95 NumStr += LastChar; in gettok() 99 NumVal = strtod(NumStr.c_str(), 0); in gettok()
|
D | toy.cpp | 100 std::string NumStr; in gettok() local 102 NumStr += LastChar; in gettok() 106 NumVal = strtod(NumStr.c_str(), 0); in gettok()
|
/external/llvm/examples/Kaleidoscope/Chapter7/ |
D | toy.cpp | 92 std::string NumStr; in gettok() local 94 NumStr += LastChar; in gettok() 98 NumVal = strtod(NumStr.c_str(), nullptr); in gettok()
|
/external/llvm/docs/tutorial/ |
D | LangImpl1.rst | 236 std::string NumStr; 238 NumStr += LastChar; 242 NumVal = strtod(NumStr.c_str(), 0);
|
/external/llvm/examples/Kaleidoscope/MCJIT/initial/ |
D | toy.cpp | 77 std::string NumStr; in gettok() local 79 NumStr += LastChar; in gettok() 83 NumVal = strtod(NumStr.c_str(), 0); in gettok()
|
/external/llvm/examples/Kaleidoscope/Orc/lazy_codegen/ |
D | toy.cpp | 83 std::string NumStr; in gettok() local 85 NumStr += LastChar; in gettok() 89 NumVal = strtod(NumStr.c_str(), nullptr); in gettok()
|
/external/llvm/examples/Kaleidoscope/Chapter8/ |
D | toy.cpp | 160 std::string NumStr; in gettok() local 162 NumStr += LastChar; in gettok() 166 NumVal = strtod(NumStr.c_str(), nullptr); in gettok()
|
/external/llvm/examples/Kaleidoscope/MCJIT/complete/ |
D | toy.cpp | 119 std::string NumStr; in gettok() local 121 NumStr += LastChar; in gettok() 125 NumVal = strtod(NumStr.c_str(), 0); in gettok()
|
/external/llvm/examples/Kaleidoscope/Orc/lazy_irgen/ |
D | toy.cpp | 83 std::string NumStr; in gettok() local 85 NumStr += LastChar; in gettok() 89 NumVal = strtod(NumStr.c_str(), nullptr); in gettok()
|
/external/llvm/examples/Kaleidoscope/Orc/initial/ |
D | toy.cpp | 83 std::string NumStr; in gettok() local 85 NumStr += LastChar; in gettok() 89 NumVal = strtod(NumStr.c_str(), nullptr); in gettok()
|
/external/llvm/examples/Kaleidoscope/Orc/fully_lazy/ |
D | toy.cpp | 84 std::string NumStr; in gettok() local 86 NumStr += LastChar; in gettok() 90 NumVal = strtod(NumStr.c_str(), nullptr); in gettok()
|