HomeSort by relevance Sort by last modified time
    Searched defs:ErrStr (Results 1 - 11 of 11) sorted by null

  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter4/
toy.cpp 576 std::string ErrStr;
577 TheExecutionEngine = EngineBuilder(TheModule).setErrorStr(&ErrStr).create();
579 fprintf(stderr, "Could not create ExecutionEngine: %s\n", ErrStr.c_str());
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter5/
toy.cpp 821 std::string ErrStr;
822 TheExecutionEngine = EngineBuilder(TheModule).setErrorStr(&ErrStr).create();
824 fprintf(stderr, "Could not create ExecutionEngine: %s\n", ErrStr.c_str());
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp     [all...]
toy.cpp 696 std::string ErrStr;
697 raw_fd_ostream IRObjectFile(IRCacheFile.c_str(), ErrStr, raw_fd_ostream::F_Binary);
897 std::string ErrStr;
899 .setErrorStr(&ErrStr)
903 fprintf(stderr, "Could not create ExecutionEngine: %s\n", ErrStr.c_str());
1019 char ErrStr[256];
1020 sprintf(ErrStr, "Unknown variable name %s", Name.c_str());
1021 if (V == 0) return ErrorV(ErrStr);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 1118 std::string ErrStr;
1119 TheExecutionEngine = EngineBuilder(TheModule).setErrorStr(&ErrStr).create();
1121 fprintf(stderr, "Could not create ExecutionEngine: %s\n", ErrStr.c_str());
    [all...]
toy.cpp 808 std::string ErrStr;
810 .setErrorStr(&ErrStr)
814 fprintf(stderr, "Could not create ExecutionEngine: %s\n", ErrStr.c_str());
917 char ErrStr[256];
918 sprintf(ErrStr, "Unknown variable name %s", Name.c_str());
919 if (V == 0) return ErrorV(ErrStr);
    [all...]
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter6/
toy.cpp 939 std::string ErrStr;
940 TheExecutionEngine = EngineBuilder(TheModule).setErrorStr(&ErrStr).create();
942 fprintf(stderr, "Could not create ExecutionEngine: %s\n", ErrStr.c_str());
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter7/
toy.cpp 1103 std::string ErrStr;
1104 TheExecutionEngine = EngineBuilder(TheModule).setErrorStr(&ErrStr).create();
1106 fprintf(stderr, "Could not create ExecutionEngine: %s\n", ErrStr.c_str());
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 715 std::string ErrStr;
716 raw_fd_ostream IRObjectFile(IRCacheFile.c_str(), ErrStr, raw_fd_ostream::F_Binary);
939 std::string ErrStr;
941 .setErrorStr(&ErrStr)
945 fprintf(stderr, "Could not create ExecutionEngine: %s\n", ErrStr.c_str());
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 778 std::string ErrStr;
780 .setErrorStr(&ErrStr)
784 fprintf(stderr, "Could not create ExecutionEngine: %s\n", ErrStr.c_str());
877 char ErrStr[256];
878 sprintf(ErrStr, "Unknown variable name %s", Name.c_str());
879 if (V == 0) return ErrorV(ErrStr);
    [all...]
  /external/llvm/lib/Target/AMDGPU/AsmParser/
AMDGPUAsmParser.cpp     [all...]

Completed in 1720 milliseconds