Lines Matching refs:string
19 void *loadOsLibrary(const std::string &PluginPath) { in loadOsLibrary()
38 void *getOsLibraryFuncAddress(void *Library, const std::string &FunctionName) { return dlsym(Librar… in getOsLibraryFuncAddress()
41 … const std::string &DeviceStepping, const std::string &UserArgs) { in prepareOclocArgs()
100 static std::vector<byte> compileToSPIRV(const std::string &Source, sycl::info::device_type DeviceTy… in compileToSPIRV()
101 … const std::string &DeviceStepping, void *&CompileToSPIRVHandle, void *&FreeSPIRVOutputsHandle, in compileToSPIRV()
102 const std::vector<std::string> &UserArgs) { in compileToSPIRV()
105 static const std::string OclocLibraryName = "ocloc64.dll"; in compileToSPIRV()
107 static const std::string OclocLibraryName = "libocloc.so"; in compileToSPIRV()
127 …throw online_compile_error(std::string("Found incompatible version of ocloc library: (") + std::to… in compileToSPIRV()
137 std::string CombinedUserArgs; in compileToSPIRV()
162 std::string CompileLog; in compileToSPIRV()
169 CompileLog = std::string(reinterpret_cast<const char *>(Outputs[I])); in compileToSPIRV()
186 …mpiler<source_language::opencl_c>::compile(const std::string &Source, const std::vector<std::strin… in compile()
188 …std::string Version = std::to_string(OutputFormatVersion.first) + ", " + std::to_string(OutputForm… in compile()
189 …throw online_compile_error(std::string("The output format version (") + Version + ") is not suppor… in compile()
197 …ine_compiler<source_language::cm>::compile(const std::string &Source, const std::vector<std::strin… in compile()
199 …std::string Version = std::to_string(OutputFormatVersion.first) + ", " + std::to_string(OutputForm… in compile()
200 …throw online_compile_error(std::string("The output format version (") + Version + ") is not suppor… in compile()
203 std::vector<std::string> CMUserArgs = UserArgs; in compile()