Home
last modified time | relevance | path

Searched refs:name_app (Results 1 – 25 of 38) sorted by relevance

12

/dports/audio/faust/faust-2.37.3/compiler/generator/wasm/
H A Dwasm_dynamic_dsp_aux.cpp40 …_factory* wasm_dynamic_dsp_factory::createWasmDSPFactoryFromString2(const string& name_app, in createWasmDSPFactoryFromString2() argument
52 return createWasmDSPFactoryFromString(name_app, dsp_content, argc1, argv1, in createWasmDSPFactoryFromString2()
56 std::string wasm_dynamic_dsp_factory::generateWasmFromString2(const std::string& name_app, in generateWasmFromString2() argument
93 if ((expanded_dsp_content = sha1FromDSP(name_app, dsp_content, argc, argv, sha_key)) == "") { in createWasmDSPFactoryFromString()
112 dsp_factory_aux->setName(name_app); in createWasmDSPFactoryFromString()
124 EXPORT wasm_dsp_factory* createWasmDSPFactoryFromSignals(const std::string& name_app, tvec signals, in createWasmDSPFactoryFromSignals() argument
142 …dsp_factory_base* dsp_factory_aux = createFactory(name_app.c_str(), signals, argc1, argv1, error_m… in createWasmDSPFactoryFromSignals()
144 dsp_factory_aux->setName(name_app); in createWasmDSPFactoryFromSignals()
153 EXPORT std::string generateWasmFromString(const string& name_app, const string& dsp_content, int ar… in generateWasmFromString() argument
201 EXPORT wasm_dsp_factory* createWasmCDSPFactoryFromSignals2(const char* name_app, tvec signals, in createWasmCDSPFactoryFromSignals2() argument
[all …]
H A Dwasm_dynamic_dsp_aux.hh39 static wasm_dsp_factory* createWasmDSPFactoryFromString2(const std::string& name_app,
44 static std::string generateWasmFromString2(const std::string& name_app,
53 EXPORT wasm_dsp_factory* createWasmDSPFactoryFromString(const std::string& name_app, const std::str…
57 EXPORT wasm_dsp_factory* createWasmDSPFactoryFromSignals(const std::string& name_app, tvec signals,
61 EXPORT std::string generateWasmFromString(const std::string& name_app, const std::string& dsp_conte…
72 EXPORT wasm_dsp_factory* createWasmCDSPFactoryFromString2(const char* name_app, const char* dsp_con…
75 EXPORT wasm_dsp_factory* createWasmCDSPFactoryFromSignals2(const char* name_app, tvec signals,
129 EXPORT WasmModule* createWasmCDSPFactoryFromString(const char* name_app, const char* dsp_content, i…
/dports/audio/faust/faust-2.37.3/compiler/generator/interpreter/
H A Dinterpreter_dynamic_dsp_aux.cpp46 EXPORT interpreter_dsp_factory* createInterpreterDSPFactoryFromString(const string& name_app, const… in createInterpreterDSPFactoryFromString() argument
52 if ((expanded_dsp_content = sha1FromDSP(name_app, dsp_content, argc, argv, sha_key)) == "") { in createInterpreterDSPFactoryFromString()
76 …dsp_factory_base* dsp_factory_aux = createFactory(name_app.c_str(), dsp_content.c_str(), argc1, ar… in createInterpreterDSPFactoryFromString()
78 dsp_factory_aux->setName(name_app); in createInterpreterDSPFactoryFromString()
95 EXPORT interpreter_dsp_factory* createInterpreterDSPFactoryFromSignals(const std::string& name_app,… in createInterpreterDSPFactoryFromSignals() argument
113 …dsp_factory_base* dsp_factory_aux = createFactory(name_app.c_str(), signals, argc1, argv1, error_m… in createInterpreterDSPFactoryFromSignals()
115 dsp_factory_aux->setName(name_app); in createInterpreterDSPFactoryFromSignals()
128 EXPORT interpreter_dsp_factory* createInterpreterDSPFactoryFromBoxes(const std::string& name_app, T… in createInterpreterDSPFactoryFromBoxes() argument
135 return createInterpreterDSPFactoryFromSignals(name_app, signals, argc, argv, error_msg); in createInterpreterDSPFactoryFromBoxes()
H A Dinterpreter_dynamic_dsp_aux.hh30 EXPORT interpreter_dsp_factory* createInterpreterDSPFactoryFromString(const std::string& name_app,
34 EXPORT interpreter_dsp_factory* createInterpreterDSPFactoryFromSignals(const std::string& name_app,…
38 EXPORT interpreter_dsp_factory* createInterpreterDSPFactoryFromBoxes(const std::string& name_app, T…
/dports/audio/faust/faust-2.37.3/architecture/faust/dsp/
H A Dpoly-wasm-dsp.h29 wasm_dsp_factory* createWasmDSPFactoryFromString(const std::string& name_app, const std::string& ds… in createWasmDSPFactoryFromString() argument
46 wasm_dsp_poly_factory(const std::string& name_app, in wasm_dsp_poly_factory()
52 …fProcessFactory = createWasmDSPFactoryFromString(name_app, dsp_content, argc, argv, error_msg, int… in wasm_dsp_poly_factory()
54 …fEffectFactory = createWasmDSPFactoryFromString(name_app, getEffectCode(dsp_content), argc, argv, … in wasm_dsp_poly_factory()
87 …asm_dsp_poly_factory* createWasmPolyDSPFactoryFromString2(const std::string& name_app,
107 static wasm_dsp_poly_factory* createWasmPolyDSPFactoryFromString(const std::string& name_app, in createWasmPolyDSPFactoryFromString() argument
114 … return new wasm_dsp_poly_factory(name_app, dsp_content, argc, argv, error_msg, internal_memory); in createWasmPolyDSPFactoryFromString()
140 …asm_dsp_poly_factory::createWasmPolyDSPFactoryFromString2(const std::string& name_app, in createWasmPolyDSPFactoryFromString2() argument
152 …wasm_dsp_poly_factory* factory = createWasmPolyDSPFactoryFromString(name_app, dsp_content, argc1, … in createWasmPolyDSPFactoryFromString2()
H A Dpoly-interpreter-dsp.h37 interpreter_dsp_poly_factory(const std::string& name_app, in interpreter_dsp_poly_factory()
42 …fProcessFactory = createInterpreterDSPFactoryFromString(name_app, dsp_content, argc, argv, error_m… in interpreter_dsp_poly_factory()
44 …fEffectFactory = createInterpreterDSPFactoryFromString(name_app, getEffectCode(dsp_content), argc,… in interpreter_dsp_poly_factory()
74 …nterpreter_dsp_poly_factory* createInterpreterPolyDSPFactoryFromString(const std::string& name_app, in createInterpreterPolyDSPFactoryFromString() argument
80 return new interpreter_dsp_poly_factory(name_app, dsp_content, argc, argv, error_msg); in createInterpreterPolyDSPFactoryFromString()
H A Dfaust-dynamic-engine.cpp108 dsp_aux(const char* name_app, in dsp_aux()
130 …fFactory = createDSPFactoryFromString(name_app, dsp_content, argc1, argv1, "", gLastError, opt_lev… in dsp_aux()
139 createJSON(name_app); in dsp_aux()
164 void createJSON(const string& name_app) in createJSON()
167 JSONUI json(name_app, "", fDSP->getNumInputs(), fDSP->getNumOutputs()); in createJSON()
345 …dsp* create2Dsp(const char* name_app, const char* dsp_content, const char* argv, const char* targe… in create2Dsp() argument
349 … return reinterpret_cast<dsp*>(new dsp_aux(name_app, dsp_content, argv, target, opt_level)); in create2Dsp()
357 dsp* create1Dsp(const char* name_app, const char* dsp_content) in create1Dsp() argument
360 return create2Dsp(name_app, dsp_content, "", "", 3); in create1Dsp()
H A Dpoly-llvm-dsp.h37 llvm_dsp_poly_factory(const std::string& name_app,
44 …fProcessFactory = createDSPFactoryFromString(name_app, dsp_content, argc, argv, target, error_msg);
46 …fEffectFactory = createDSPFactoryFromString(name_app, getEffectCode(dsp_content), argc, argv, targ…
79 static llvm_dsp_poly_factory* createPolyDSPFactoryFromString(const std::string& name_app,
87 … return new llvm_dsp_poly_factory(name_app, dsp_content, argc, argv, target, error_msg, opt_level);
H A Dinterpreter-dsp.h176 interpreter_dsp_factory* createInterpreterDSPFactoryFromString(const std::string& name_app,
193 interpreter_dsp_factory* createInterpreterDSPFactoryFromSignals(const std::string& name_app,
211 interpreter_dsp_factory* createInterpreterDSPFactoryFromBoxes(const std::string& name_app,
H A Dllvm-dsp-c.h119 llvm_dsp_factory* createCDSPFactoryFromString(const char* name_app,
143 llvm_dsp_factory* createCDSPFactoryFromSignals(const char* name_app,
167 llvm_dsp_factory* createCDSPFactoryFromBoxes(const char* name_app,
H A Dllvm-dsp.h198 llvm_dsp_factory* createDSPFactoryFromString(const std::string& name_app,
222 llvm_dsp_factory* createDSPFactoryFromSignals(const std::string& name_app, tvec signals_vec,
245 llvm_dsp_factory* createDSPFactoryFromBoxes(const std::string& name_app, Box box,
H A Dfaust-dynamic-engine.h35 dsp* create1Dsp(const char* name_app, const char* dsp_content);
36 …dsp* create2Dsp(const char* name_app, const char* dsp_content, const char* argv, const char* targe…
H A Dwasm-dsp.h172 wasm_dsp_factory* createWasmDSPFactoryFromString(const std::string& name_app, const std::string& ds…
188 wasm_dsp_factory* createWasmDSPFactoryFromSignals(const std::string& name_app, tvec signals,
/dports/audio/faust/faust-2.37.3/compiler/generator/
H A Ddsp_aux.cpp213 string sha1FromDSP(const string& name_app, const string& dsp_content, int argc, const char* argv[],… in sha1FromDSP() argument
215 sha_key = generateSHA1(name_app + dsp_content + reorganizeCompilationOptions(argc, argv)); in sha1FromDSP()
232 EXPORT string expandDSPFromString(const string& name_app, const string& dsp_content, int argc, cons… in expandDSPFromString() argument
263 return expandDSP(argc1, argv1, name_app.c_str(), dsp_content.c_str(), sha_key, error_msg); in expandDSPFromString()
274 EXPORT bool generateAuxFilesFromString(const string& name_app, const string& dsp_content, int argc,… in generateAuxFilesFromString() argument
293 …dsp_factory_base* factory = createFactory(name_app.c_str(), dsp_content.c_str(), argc1, argv1, err… in generateAuxFilesFromString()
317 EXPORT const char* expandCDSPFromString(const char* name_app, const char* dsp_content, int argc, co… in expandCDSPFromString() argument
322 string res = expandDSPFromString(name_app, dsp_content, argc, argv, sha_key_aux, error_msg_aux); in expandCDSPFromString()
336 EXPORT bool generateCAuxFilesFromString(const char* name_app, const char* dsp_content, int argc, co… in generateCAuxFilesFromString() argument
340 bool res = generateAuxFilesFromString(name_app, dsp_content, argc, argv, error_msg_aux); in generateCAuxFilesFromString()
H A Dlibfaust-c.h74 LIBEXPORT const char* expandCDSPFromString(const char* name_app, const char* dsp_content, int argc,…
99 LIBEXPORT bool generateCAuxFilesFromString(const char* name_app, const char* dsp_content, int argc,…
H A Dlibfaust.h76 LIBEXPORT std::string expandDSPFromString(const std::string& name_app, const std::string& dsp_conte…
102 LIBEXPORT bool generateAuxFilesFromString(const std::string& name_app, const std::string& dsp_conte…
H A Ddsp_aux.hh295 std::string sha1FromDSP(const std::string& name_app, const std::string& dsp_content, int argc, cons…
310 EXPORT const char* expandCDSPFromString(const char* name_app, const char* dsp_content, int argc, co…
315 EXPORT bool generateCAuxFilesFromString(const char* name_app, const char* dsp_content, int argc, co…
/dports/audio/faust/faust-2.37.3/compiler/generator/llvm/
H A Dllvm_dynamic_dsp_aux.hh65 EXPORT llvm_dsp_factory* createDSPFactoryFromString(const std::string& name_app, const std::string&…
69 EXPORT llvm_dsp_factory* createDSPFactoryFromSignals(const std::string& name_app, tvec signals,
73 EXPORT llvm_dsp_factory* createDSPFactoryFromBoxes(const std::string& name_app, Tree box,
114 EXPORT llvm_dsp_factory* createCDSPFactoryFromString(const char* name_app, const char* dsp_content,…
118 EXPORT llvm_dsp_factory* createCDSPFactoryFromSignals(const char* name_app, Signal* signals,
124 EXPORT llvm_dsp_factory* createCDSPFactoryFromBoxes(const char* name_app,
H A Dllvm_dynamic_dsp_aux.cpp598 if ((expanded_dsp_content = sha1FromDSP(name_app, dsp_content, argc, argv, sha_key)) == "") {
623 = static_cast<llvm_dynamic_dsp_factory_aux*>(createFactory(name_app.c_str(),
632 factory_aux->setName(name_app);
650 EXPORT llvm_dsp_factory* createDSPFactoryFromSignals(const std::string& name_app, tvec signals, argument
677 factory_aux->setName(name_app);
691 EXPORT llvm_dsp_factory* createDSPFactoryFromBoxes(const std::string& name_app, Tree box, argument
700 … return createDSPFactoryFromSignals(name_app, signals, argc, argv, target, error_msg, opt_level);
800 EXPORT llvm_dsp_factory* createCDSPFactoryFromSignals(const char* name_app, Signal* signals_aux, argument
811 … createDSPFactoryFromSignals(name_app, signals, argc, argv, target, error_msg_aux, opt_level);
816 EXPORT llvm_dsp_factory* createCDSPFactoryFromBoxes(const char* name_app, argument
[all …]
/dports/audio/faust/faust-2.37.3/embedded/faustjava/com/grame/faust/
H A DFaust.java36 …public static String expandCDSPFromString(String name_app, String dsp_content, int argc, SWIGTYPE_… in expandCDSPFromString() argument
37 …return FaustJNI.expandCDSPFromString(name_app, dsp_content, argc, SWIGTYPE_p_p_char.getCPtr(argv),… in expandCDSPFromString()
44 …public static boolean generateCAuxFilesFromString(String name_app, String dsp_content, int argc, S… in generateCAuxFilesFromString() argument
45 …return FaustJNI.generateCAuxFilesFromString(name_app, dsp_content, argc, SWIGTYPE_p_p_char.getCPtr… in generateCAuxFilesFromString()
70 …public static llvm_dsp_factory createCDSPFactoryFromString(String name_app, String dsp_content, in… in createCDSPFactoryFromString() argument
71 …long cPtr = FaustJNI.createCDSPFactoryFromString(name_app, dsp_content, argc, SWIGTYPE_p_p_char.ge… in createCDSPFactoryFromString()
247 …public static llvm_dsp_factory createCDSPFactoryFromStringAux(String name_app, String dsp_content,… in createCDSPFactoryFromStringAux() argument
248 …long cPtr = FaustJNI.createCDSPFactoryFromStringAux(name_app, dsp_content, argv, target, opt_level… in createCDSPFactoryFromStringAux()
H A DFaustEngine.java16 public static dsp create1Dsp(String name_app, String dsp_content) { in create1Dsp() argument
17 long cPtr = FaustEngineJNI.create1Dsp(name_app, dsp_content); in create1Dsp()
21 …public static dsp create2Dsp(String name_app, String dsp_content, String argv, String target, int … in create2Dsp() argument
22 long cPtr = FaustEngineJNI.create2Dsp(name_app, dsp_content, argv, target, opt_level); in create2Dsp()
/dports/audio/faust/faust-2.37.3/embedded/faustjava/
H A Dlibfaust_ext.cpp74 llvm_dsp_factory* createCDSPFactoryFromStringAux(const char* name_app, in createCDSPFactoryFromStringAux() argument
90 …llvm_dsp_factory* factory = createCDSPFactoryFromString(name_app, dsp_content, argc1, argv1, targe… in createCDSPFactoryFromStringAux()
H A Dlibfaust_ext.h44 llvm_dsp_factory* createCDSPFactoryFromStringAux(const char* name_app,
/dports/audio/faust/faust-2.37.3/embedded/faust4processing/src/
H A Dlibfaust_ext.cpp74 llvm_dsp_factory* createCDSPFactoryFromStringAux(const char* name_app, in createCDSPFactoryFromStringAux() argument
90 …llvm_dsp_factory* factory = createCDSPFactoryFromString(name_app, dsp_content, argc1, argv1, targe… in createCDSPFactoryFromStringAux()
/dports/audio/faust/faust-2.37.3/embedded/faustremote/RemoteClient/
H A Dremote_dsp_aux.cpp142 const string& name_app, in crossCompile() argument
157 finalRequest << "name=" << name_app; in crossCompile()
197 const string& name_app, in init() argument
207 finalRequest << "name=" << name_app; in init()
236 …llvm_dsp_factory* factory = createDSPFactoryFromString(name_app, dsp_content, argc, argv, loptions… in init()
238 …interpreter_dsp_factory* factory = createInterpreterDSPFactoryFromString(name_app, dsp_content, ar… in init()
830 EXPORT remote_dsp_factory* createRemoteDSPFactoryFromString(const string& name_app, in createRemoteDSPFactoryFromString() argument
861 …if ((expanded_dsp = expandDSPFromString(name_app, dsp_content, argc1, argv1, sha_key, error_msg)) … in createRemoteDSPFactoryFromString()
866 …return crossCompile(argc, argv, name_app, expanded_dsp, sha_key, ip_server, port_server, error_msg… in createRemoteDSPFactoryFromString()
880 if (factory->init(argc1, argv1, name_app, expanded_dsp, error_msg, opt_level)) { in createRemoteDSPFactoryFromString()

12