Searched refs:opts (Results 1 - 25 of 166) sorted by relevance

1234567

/xsrc/external/mit/MesaLib.old/dist/
H A Dcommon.py78 def AddOptions(opts):
87 opts.Add(EnumOption('build', 'build type', 'debug',
90 opts.Add(BoolOption('verbose', 'verbose output', 'no'))
91 opts.Add(EnumOption('machine', 'use machine-specific assembly code',
94 opts.Add(EnumOption('platform', 'target platform', host_platform,
97 opts.Add(BoolOption('embedded', 'embedded build', 'no'))
98 opts.Add(BoolOption('analyze',
100 opts.Add(BoolOption('asan', 'enable Address Sanitizer', 'no'))
101 opts.Add('toolchain', 'compiler toolchain', default_toolchain)
102 opts
[all...]
/xsrc/external/mit/xterm/dist/
H A Dgen-pc-fkeys.pl84 my $opts = $_[2];
88 $text =~ s/\\EO/\\E\[/ if ($opts >= 1);
95 } elsif ( $check =~ /\[/ and $opts >= 2) {
98 if ( $opts >= 3 ) {
209 my $opts = $_[0];
210 my $optname = "xterm+pcc" . ($opts >= 0 ? $opts : "n");
215 my $opts = $_[0];
219 nameof_ckeys($opts), $opts;
[all...]
/xsrc/external/mit/MesaLib/dist/src/gallium/frontends/clover/core/
H A Dcompiler.hpp36 const device &dev, const std::string &opts,
43 return llvm::compile_to_spirv(prog.source(), headers, dev, opts, log);
53 return llvm::compile_program(prog.source(), headers, dev, opts, log);
64 const std::string &opts, std::string &log) {
66 opts.find("-create-library") != std::string::npos;
69 auto spirv_linked_module = spirv::link_program(bs, dev, opts, log);
76 return llvm::link_program(bs, dev, opts, log);
35 compile_program(const program & prog,const header_map & headers,const device & dev,const std::string & opts,std::string & log) argument
63 link_program(const std::vector<binary> & bs,const device & dev,const std::string & opts,std::string & log) argument
H A Dprogram.hpp54 void compile(const ref_vector<device> &devs, const std::string &opts,
56 void link(const ref_vector<device> &devs, const std::string &opts,
65 build(const binary &b = {}, const std::string &opts = {}, argument
66 const std::string &log = {}) : bin(b), opts(opts), log(log) {}
72 std::string opts; member in struct:clover::program::build
H A Dprogram.cpp46 program::compile(const ref_vector<device> &devs, const std::string &opts, argument
56 compiler::compile_program(*this, headers, dev, opts, log);
57 _builds[&dev] = { b, opts, log };
59 _builds[&dev] = { binary(), opts, log };
67 program::link(const ref_vector<device> &devs, const std::string &opts, argument
78 const binary b = compiler::link_program(bs, dev, opts, log);
79 _builds[&dev] = { b, opts, log };
81 _builds[&dev] = { binary(), opts, log };
/xsrc/external/mit/MesaLib/dist/src/gallium/frontends/clover/llvm/
H A Dinvocation.hpp36 const std::string &opts,
41 const std::string &opts,
48 const std::string &opts,
/xsrc/external/mit/libxkbui/dist/src/
H A DXKBui.c88 if (view->opts.cmap==None)
89 view->opts.cmap= DefaultColormap(dpy,DefaultScreen(dpy));
96 if (XAllocNamedColor(view->dpy,view->opts.cmap,spec,&sdef,&xdef)) {
108 if (XAllocNamedColor(view->dpy,view->opts.cmap,buf,&sdef,&xdef)) {
117 xkb->geom->colors[i].pixel= view->opts.fg;
130 XkbUI_ViewOptsPtr opts)
145 view->opts= dfltOpts;
146 view->opts.fg= WhitePixel(dpy,scrn);
147 view->opts.bg= BlackPixel(dpy,scrn);
148 view->opts
125 XkbUI_Init(Display * dpy,Window win,int width,int height,XkbDescPtr xkb,XkbUI_ViewOptsPtr opts) argument
201 XkbUI_SetViewOpts(XkbUI_ViewPtr view,XkbUI_ViewOptsPtr opts) argument
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/clover/llvm/
H A Dinvocation.hpp36 const std::string &opts,
41 const std::string &opts,
/xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/clover/core/core/
H A Dprogram.hpp51 void compile(const ref_vector<device> &devs, const std::string &opts,
53 void link(const ref_vector<device> &devs, const std::string &opts,
62 build(const module &m = {}, const std::string &opts = {}, argument
63 const std::string &log = {}) : binary(m), opts(opts), log(log) {}
69 std::string opts; member in struct:clover::program::build
H A Dprogram.cpp45 program::compile(const ref_vector<device> &devs, const std::string &opts, argument
55 const module m = llvm::compile_program(_source, headers, dev, opts,
57 _builds[&dev] = { m, opts, log };
59 _builds[&dev] = { module(), opts, log };
67 program::link(const ref_vector<device> &devs, const std::string &opts, argument
79 const module m = llvm::link_program(ms, dev, opts, log);
80 _builds[&dev] = { m, opts, log };
82 _builds[&dev] = { module(), opts, log };
/xsrc/external/mit/xorg-server.old/dist/hw/xfree86/dixmods/extmod/
H A Dmodinit.c140 extmodSetup(pointer module, pointer opts, int *errmaj, int *errmin) argument
147 if (opts) {
151 o = xf86FindOption(opts, s);
165 if ((o = xf86FindOption(opts, "SELinux mode disabled"))) {
169 if ((o = xf86FindOption(opts, "SELinux mode permissive"))) {
173 if ((o = xf86FindOption(opts, "SELinux mode enforcing"))) {
/xsrc/external/mit/xf86-video-intel-old/dist/src/ch7017/
H A Dch7017_module.c34 ch7017Setup(pointer module, pointer opts, int *errmaj, int *errmin) { argument
/xsrc/external/mit/xf86-video-intel-old/dist/src/ch7xxx/
H A Dch7xxx_module.c33 ch7xxxSetup(pointer module, pointer opts, int *errmaj, int *errmin) { argument
/xsrc/external/mit/xf86-video-ati/dist/src/
H A Dtheatre200_module.c31 theatre200Setup(pointer module, pointer opts, int *errmaj, int *errmin) { argument
H A Dtheatre_detect_module.c35 theatre_detectSetup(pointer module, pointer opts, int *errmaj, int *errmin) { argument
H A Dtheatre_module.c31 theatreSetup(pointer module, pointer opts, int *errmaj, int *errmin) { argument
/xsrc/external/mit/xf86-video-intel-old/dist/src/ivch/
H A Divch_module.c61 ivch_setup(pointer module, pointer opts, int *errmaj, int *errmin) argument
/xsrc/external/mit/xf86-video-intel-old/dist/src/sil164/
H A Dsil164_module.c35 sil164Setup(pointer module, pointer opts, int *errmaj, int *errmin) argument
/xsrc/external/mit/xf86-video-intel-old/dist/src/tfp410/
H A Dtfp410_module.c35 tfp410Setup(pointer module, pointer opts, int *errmaj, int *errmin) argument
/xsrc/external/mit/MesaLib/dist/src/compiler/nir/
H A Dnir_remove_dead_variables.c163 struct set *live, const nir_remove_dead_variables_options *opts)
171 if (opts && opts->can_remove_var &&
172 !opts->can_remove_var(var, opts->can_remove_var_data))
189 const nir_remove_dead_variables_options *opts)
198 live, opts) || progress;
206 live, opts))
162 remove_dead_vars(struct exec_list * var_list,nir_variable_mode modes,struct set * live,const nir_remove_dead_variables_options * opts) argument
188 nir_remove_dead_variables(nir_shader * shader,nir_variable_mode modes,const nir_remove_dead_variables_options * opts) argument
/xsrc/external/mit/MesaLib/dist/src/microsoft/compiler/
H A Dnir_to_dxil.h57 nir_to_dxil(struct nir_shader *s, const struct nir_to_dxil_options *opts,
/xsrc/external/mit/xorg-server.old/dist/hw/xfree86/dixmods/
H A Ddbemodule.c40 dbeSetup(pointer module, pointer opts, int *errmaj, int *errmin) argument
H A Drecordmod.c37 recordSetup(pointer module, pointer opts, int *errmaj, int *errmin) argument
/xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/clover/api/
H A Dprogram.cpp181 const auto opts = std::string(p_opts ? p_opts : "") + " " + local in function:clBuildProgram
187 prog.compile(devs, opts);
188 prog.link(devs, opts, { prog });
214 const auto opts = std::string(p_opts ? p_opts : "") + " " + local in function:clCompileProgram
237 prog.compile(devs, opts, headers);
254 const std::string &opts) {
257 opts.find("-create-library") != std::string::npos;
259 opts.find("-enable-link-options") != std::string::npos;
261 opts.find("-cl-denorms-are-zero") != std::string::npos ||
262 opts
252 validate_link_devices(const ref_vector<program> & progs,const ref_vector<device> & all_devs,const std::string & opts) argument
336 const auto opts = std::string(p_opts ? p_opts : "") + " " + local in function:clLinkProgram
[all...]
/xsrc/external/mit/MesaLib/dist/src/panfrost/bifrost/
H A Dbifrost_isa.py80 opts = [parse_cond(d) for d in deriv.findall('*')]
82 opts_fit = (opts + default)[0:count]
102 opts = [x.text if x.tag == 'opt' else x.tag for x in mod.findall('*')]
104 if len(opts) == 0:
106 opts = ['none', mod.attrib['opt']]
109 default = mod.attrib.get('default', 'none' if 'none' in opts else None)
113 opts = (opts + (['reserved'] * count))[0:count]
114 out.append([[name, start, size], default, opts])
263 for name, opts i
[all...]

Completed in 23 milliseconds

1234567