/external/llvm/examples/Kaleidoscope/Chapter2/ |
D | toy.cpp | 46 std::string NumStr; in gettok() local 48 NumStr += LastChar; in gettok() 52 NumVal = strtod(NumStr.c_str(), 0); in gettok()
|
/external/llvm/examples/Kaleidoscope/Chapter3/ |
D | toy.cpp | 51 std::string NumStr; in gettok() local 53 NumStr += LastChar; in gettok() 57 NumVal = strtod(NumStr.c_str(), 0); in gettok()
|
/external/llvm/examples/Kaleidoscope/Chapter4/ |
D | toy.cpp | 63 std::string NumStr; in gettok() local 65 NumStr += LastChar; in gettok() 69 NumVal = strtod(NumStr.c_str(), 0); in gettok()
|
/external/llvm/examples/Kaleidoscope/Chapter5/ |
D | toy.cpp | 81 std::string NumStr; in gettok() local 83 NumStr += LastChar; in gettok() 87 NumVal = strtod(NumStr.c_str(), 0); in gettok()
|
/external/llvm/examples/Kaleidoscope/Chapter6/ |
D | toy.cpp | 89 std::string NumStr; in gettok() local 91 NumStr += LastChar; in gettok() 95 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 | 94 std::string NumStr; in gettok() local 96 NumStr += LastChar; in gettok() 100 NumVal = strtod(NumStr.c_str(), 0); 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/docs/tutorial/ |
D | LangImpl1.rst | 232 std::string NumStr; 234 NumStr += LastChar; 238 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/Chapter8/ |
D | toy.cpp | 164 std::string NumStr; in gettok() local 166 NumStr += LastChar; in gettok() 170 NumVal = strtod(NumStr.c_str(), 0); 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(), 0); 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(), 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(), 0); 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(), 0); in gettok()
|