Searched refs:prog (Results 101 - 125 of 459) sorted by relevance

1234567891011>>

/external/mesa3d/src/gallium/state_trackers/clover/api/
H A Dkernel.cpp30 clCreateKernel(cl_program prog, const char *name, argument
32 if (!prog)
38 if (prog->binaries().empty())
41 auto sym = prog->binaries().begin()->second.sym(name);
44 return new kernel(*prog, name, { sym.args.begin(), sym.args.end() });
56 clCreateKernelsInProgram(cl_program prog, cl_uint count, argument
58 if (!prog)
61 if (prog->binaries().empty())
64 auto &syms = prog->binaries().begin()->second.syms;
72 return new kernel(*prog, compa
[all...]
/external/bison/build-aux/
H A Dylwrap91 prog="$1"
93 # Make any relative path in $prog absolute.
94 case "$prog" in
96 *[\\/]*) prog="`pwd`/$prog" ;;
112 0) "$prog" "$input" ;;
113 *) "$prog" "$@" "$input" ;;
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_vs.h120 bool brw_vs_emit(struct gl_shader_program *prog, struct brw_vs_compile *c);
122 bool brw_vs_precompile(struct gl_context *ctx, struct gl_shader_program *prog);
124 struct gl_shader_program *prog,
/external/elfutils/0.153/config/
H A Dylwrap91 prog="$1"
93 # Make any relative path in $prog absolute.
94 case "$prog" in
96 *[\\/]*) prog="`pwd`/$prog" ;;
108 0) "$prog" "$input" ;;
109 *) "$prog" "$@" "$input" ;;
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_vs.h120 bool brw_vs_emit(struct gl_shader_program *prog, struct brw_vs_compile *c);
122 bool brw_vs_precompile(struct gl_context *ctx, struct gl_shader_program *prog);
124 struct gl_shader_program *prog,
/external/chromium_org/third_party/mesa/src/src/mesa/program/
H A Dprog_optimize.c169 * In 'prog' remove instruction[i] if removeFlags[i] == TRUE.
173 remove_instructions(struct gl_program *prog, const GLboolean *removeFlags) argument
179 for (i = prog->NumInstructions - 1; i >= 0; i--) {
198 _mesa_delete_instructions(prog, removeStart, removeCount);
206 _mesa_delete_instructions(prog, removeStart, removeCount);
214 * \param prog the program to search/replace
219 replace_regs(struct gl_program *prog, gl_register_file file, const GLint map[]) argument
223 for (i = 0; i < prog->NumInstructions; i++) {
224 struct prog_instruction *inst = prog->Instructions + i;
250 _mesa_remove_dead_code_global(struct gl_program *prog) argument
383 find_next_use(const struct gl_program *prog, GLuint start, GLuint index, GLuint mask) argument
494 _mesa_remove_extra_move_use(struct gl_program *prog) argument
602 _mesa_remove_dead_code_local(struct gl_program *prog) argument
738 _mesa_remove_extra_moves(struct gl_program *prog) argument
1051 find_live_intervals(struct gl_program *prog, struct interval_list *liveIntervals) argument
1133 _mesa_reallocate_registers(struct gl_program *prog) argument
[all...]
H A Dprog_parameter_layout.c124 _mesa_new_parameter_list_sized(state->prog->Parameters->NumParameters);
136 copy_indirect_accessed_array(state->prog->Parameters, layout,
182 p = & state->prog->Parameters->Parameters[idx];
187 state->prog->Parameters->ParameterValues[idx];
211 layout->StateFlags = state->prog->Parameters->StateFlags;
212 _mesa_free_parameter_list(state->prog->Parameters);
213 state->prog->Parameters = layout;
H A Dprogram_parse.y48 static int initialize_symbol_from_state(struct gl_program *prog,
51 static int initialize_symbol_from_param(struct gl_program *prog,
54 static int initialize_symbol_from_const(struct gl_program *prog,
283 if (state->prog->Target != GL_VERTEX_PROGRAM_ARB) {
291 if (state->prog->Target != GL_FRAGMENT_PROGRAM_ARB) {
345 state->prog->NumInstructions++;
354 state->prog->NumAluInstructions++;
359 state->prog->NumTexInstructions++;
445 if ((state->prog->TexturesUsed[$6] != 0)
446 && ((state->prog
[all...]
/external/mesa3d/src/mesa/program/
H A Dprog_optimize.c169 * In 'prog' remove instruction[i] if removeFlags[i] == TRUE.
173 remove_instructions(struct gl_program *prog, const GLboolean *removeFlags) argument
179 for (i = prog->NumInstructions - 1; i >= 0; i--) {
198 _mesa_delete_instructions(prog, removeStart, removeCount);
206 _mesa_delete_instructions(prog, removeStart, removeCount);
214 * \param prog the program to search/replace
219 replace_regs(struct gl_program *prog, gl_register_file file, const GLint map[]) argument
223 for (i = 0; i < prog->NumInstructions; i++) {
224 struct prog_instruction *inst = prog->Instructions + i;
250 _mesa_remove_dead_code_global(struct gl_program *prog) argument
383 find_next_use(const struct gl_program *prog, GLuint start, GLuint index, GLuint mask) argument
494 _mesa_remove_extra_move_use(struct gl_program *prog) argument
602 _mesa_remove_dead_code_local(struct gl_program *prog) argument
738 _mesa_remove_extra_moves(struct gl_program *prog) argument
1051 find_live_intervals(struct gl_program *prog, struct interval_list *liveIntervals) argument
1133 _mesa_reallocate_registers(struct gl_program *prog) argument
[all...]
H A Dprog_parameter_layout.c124 _mesa_new_parameter_list_sized(state->prog->Parameters->NumParameters);
136 copy_indirect_accessed_array(state->prog->Parameters, layout,
182 p = & state->prog->Parameters->Parameters[idx];
187 state->prog->Parameters->ParameterValues[idx];
211 layout->StateFlags = state->prog->Parameters->StateFlags;
212 _mesa_free_parameter_list(state->prog->Parameters);
213 state->prog->Parameters = layout;
H A Dprogram_parse.y48 static int initialize_symbol_from_state(struct gl_program *prog,
51 static int initialize_symbol_from_param(struct gl_program *prog,
54 static int initialize_symbol_from_const(struct gl_program *prog,
283 if (state->prog->Target != GL_VERTEX_PROGRAM_ARB) {
291 if (state->prog->Target != GL_FRAGMENT_PROGRAM_ARB) {
345 state->prog->NumInstructions++;
354 state->prog->NumAluInstructions++;
359 state->prog->NumTexInstructions++;
445 if ((state->prog->TexturesUsed[$6] != 0)
446 && ((state->prog
[all...]
/external/tcpdump/
H A Dprint-sunrpc.c151 progstr(prog)
152 u_int32_t prog;
160 if (lastprog != 0 && prog == lastprog)
163 rp = getrpcbynumber(prog);
166 (void) snprintf(buf, sizeof(buf), "#%u", prog);
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dlink_functions.cpp39 call_link_visitor(gl_shader_program *prog, gl_shader *linked, argument
42 this->prog = prog;
94 linker_error(this->prog, "unresolved reference to function `%s'\n",
221 gl_shader_program *prog; member in class:call_link_visitor
279 link_function_calls(gl_shader_program *prog, gl_shader *main, argument
282 call_link_visitor v(prog, main, shader_list, num_shaders);
/external/mesa3d/src/glsl/
H A Dlink_functions.cpp39 call_link_visitor(gl_shader_program *prog, gl_shader *linked, argument
42 this->prog = prog;
94 linker_error(this->prog, "unresolved reference to function `%s'\n",
221 gl_shader_program *prog; member in class:call_link_visitor
279 link_function_calls(gl_shader_program *prog, gl_shader *main, argument
282 call_link_visitor v(prog, main, shader_list, num_shaders);
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir.cpp281 Symbol::Symbol(Program *prog, DataFile f, ubyte fidx) argument
289 prog->add(this, this->id);
295 Program *prog = pol.context()->getProgram(); local
297 Symbol *that = new_Symbol(prog, reg.file, reg.fileIndex);
319 ImmediateValue::ImmediateValue(Program *prog, uint32_t uval) argument
329 prog->add(this, this->id);
332 ImmediateValue::ImmediateValue(Program *prog, float fval) argument
342 prog->add(this, this->id);
345 ImmediateValue::ImmediateValue(Program *prog, double dval) argument
355 prog
369 Program *prog = pol.context()->getProgram(); local
[all...]
/external/mesa3d/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir.cpp281 Symbol::Symbol(Program *prog, DataFile f, ubyte fidx) argument
289 prog->add(this, this->id);
295 Program *prog = pol.context()->getProgram(); local
297 Symbol *that = new_Symbol(prog, reg.file, reg.fileIndex);
319 ImmediateValue::ImmediateValue(Program *prog, uint32_t uval) argument
329 prog->add(this, this->id);
332 ImmediateValue::ImmediateValue(Program *prog, float fval) argument
342 prog->add(this, this->id);
345 ImmediateValue::ImmediateValue(Program *prog, double dval) argument
355 prog
369 Program *prog = pol.context()->getProgram(); local
[all...]
/external/zlib/src/contrib/untgz/
H A Duntgz.c125 char *prog; variable
156 fprintf(stderr,"%s: Couldn't find ",prog);
358 fprintf(stderr,"%s: Couldn't create directory %s\n",prog,buffer);
496 fprintf(stderr, "%s: Couldn't create %s",prog,fname);
536 "%s: Error writing %s -- skipping\n",prog,fname);
595 fprintf(stderr, "%s: %s\n", prog, msg);
613 prog = strrchr(argv[0],'\\');
614 if (prog == NULL)
616 prog = strrchr(argv[0],'/');
617 if (prog
[all...]
/external/valgrind/main/tests/
H A Dvg_regtest59 # - prog: <prog to run> (compulsory)
60 # - args: <args for prog> (default: none)
68 # - progB: <prog to run in parallel with prog> (default: none)
80 # If prog or probB is a relative path, it will be prefix with the test directory.
83 # Note that if a progB is specified, it is started in background (before prog).
137 my $prog; # test prog
138 my $args; # test prog arg
[all...]
H A Dvg_regtest.in59 # - prog: <prog to run> (compulsory)
60 # - args: <args for prog> (default: none)
68 # - progB: <prog to run in parallel with prog> (default: none)
80 # If prog or probB is a relative path, it will be prefix with the test directory.
83 # Note that if a progB is specified, it is started in background (before prog).
137 my $prog; # test prog
138 my $args; # test prog arg
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
H A Dst_program.h243 struct st_vertex_program *prog)
247 (struct gl_program *) prog);
253 struct st_geometry_program *prog)
257 (struct gl_program *) prog);
263 struct st_fragment_program *prog)
267 (struct gl_program *) prog);
241 st_reference_vertprog(struct st_context *st, struct st_vertex_program **ptr, struct st_vertex_program *prog) argument
251 st_reference_geomprog(struct st_context *st, struct st_geometry_program **ptr, struct st_geometry_program *prog) argument
261 st_reference_fragprog(struct st_context *st, struct st_fragment_program **ptr, struct st_fragment_program *prog) argument
/external/mesa3d/src/mesa/state_tracker/
H A Dst_program.h243 struct st_vertex_program *prog)
247 (struct gl_program *) prog);
253 struct st_geometry_program *prog)
257 (struct gl_program *) prog);
263 struct st_fragment_program *prog)
267 (struct gl_program *) prog);
241 st_reference_vertprog(struct st_context *st, struct st_vertex_program **ptr, struct st_vertex_program *prog) argument
251 st_reference_geomprog(struct st_context *st, struct st_geometry_program **ptr, struct st_geometry_program *prog) argument
261 st_reference_fragprog(struct st_context *st, struct st_fragment_program **ptr, struct st_fragment_program *prog) argument
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dshaderobj.c238 _mesa_init_shader_program(struct gl_context *ctx, struct gl_shader_program *prog) argument
240 prog->Type = GL_SHADER_PROGRAM_MESA;
241 prog->RefCount = 1;
243 prog->AttributeBindings = string_to_uint_map_ctor();
244 prog->FragDataBindings = string_to_uint_map_ctor();
245 prog->FragDataIndexBindings = string_to_uint_map_ctor();
248 prog->Geom.VerticesOut = 0;
249 prog->Geom.InputType = GL_TRIANGLES;
250 prog->Geom.OutputType = GL_TRIANGLE_STRIP;
253 prog
[all...]
/external/mesa3d/src/mesa/main/
H A Dshaderobj.c238 _mesa_init_shader_program(struct gl_context *ctx, struct gl_shader_program *prog) argument
240 prog->Type = GL_SHADER_PROGRAM_MESA;
241 prog->RefCount = 1;
243 prog->AttributeBindings = string_to_uint_map_ctor();
244 prog->FragDataBindings = string_to_uint_map_ctor();
245 prog->FragDataIndexBindings = string_to_uint_map_ctor();
248 prog->Geom.VerticesOut = 0;
249 prog->Geom.InputType = GL_TRIANGLES;
250 prog->Geom.OutputType = GL_TRIANGLE_STRIP;
253 prog
[all...]
/external/chromium_org/chrome/tools/build/win/
H A Dsyzygy_reorder.py29 prog = subprocess.Popen(cmd, **kw)
31 stdout, stderr = prog.communicate()
32 if prog.returncode != 0:
33 raise RuntimeError('Command "%s" returned %d.' % (cmd, prog.returncode))
/external/e2fsprogs/misc/
H A Dfsck.h62 char * prog; member in struct:fsck_instance

Completed in 2244 milliseconds

1234567891011>>