Lines Matching refs:ret
28 int loglevel, err, warn, ret;
61 ret = shaderc_result_get_compilation_status(res);
71 status = ret < FF_ARRAY_ELEMS(shdc_result) ? shdc_result[ret] : "unknown";
109 FFVkSPIRVCompiler *ret = av_mallocz(sizeof(*ret));
110 if (!ret)
113 ret->compile_shader = shdc_shader_compile;
114 ret->free_shader = shdc_shader_free;
115 ret->uninit = shdc_uninit;
117 ret->priv = (void *)shaderc_compiler_initialize();
118 if (!ret->priv)
119 av_freep(&ret);
121 return ret;