Searched defs:stage (Results 1 - 25 of 201) sorted by relevance

123456789

/external/guice/core/src/com/google/inject/
H A DGuice.java78 * stage.
83 public static Injector createInjector(Stage stage, Module... modules) { argument
84 return createInjector(stage, Arrays.asList(modules));
89 * stage.
94 public static Injector createInjector(Stage stage, argument
97 .stage(stage)
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dintel_debug.c88 intel_debug_flag_for_shader_stage(gl_shader_stage stage) argument
99 return flags[stage];
/external/mesa3d/src/mesa/program/
H A Dprogram.h141 _mesa_shader_stage_to_program(unsigned stage) argument
143 switch (stage) {
158 assert(!"Unexpected shader stage in _mesa_shader_stage_to_program");
/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/integration/
H A DTrapezoidIntegrator.java62 * Compute the n-th stage integral of trapezoid rule. This function
73 * @param n the stage of 1/2 refinement, n = 0 is no refinement
74 * @return the value of n-th stage integral
77 double stage(final UnivariateRealFunction f, method in class:TrapezoidIntegrator
85 final long np = 1L << (n-1); // number of new points in this stage
114 double oldt = stage(f, min, max, 0);
116 final double t = stage(f, min, max, i);
H A DLegendreGaussIntegrator.java173 double oldt = stage(f, min, max, 1);
179 final double t = stage(f, min, max, n);
205 * Compute the n-th stage integral.
210 * @return the value of n-th stage integral
214 private double stage(final UnivariateRealFunction f, method in class:LegendreGaussIntegrator
218 // set up the step for the current stage
/external/guice/core/src/com/google/inject/internal/
H A DInjectorOptionsProcessor.java69 InjectorOptions getOptions(Stage stage, InjectorOptions parentOptions) { argument
70 checkNotNull(stage, "stage must be set");
73 stage,
79 checkState(stage == parentOptions.stage, "child & parent stage don't match");
81 stage,
/external/mesa3d/src/compiler/glsl/
H A Dglsl_parser_extras.cpp59 gl_shader_stage stage,
64 assert(stage < MESA_SHADER_STAGES);
65 this->stage = stage;
813 name, _mesa_shader_stage_to_string(state->stage));
817 name, _mesa_shader_stage_to_string(state->stage));
968 if ((state->stage == MESA_SHADER_VERTEX) && q.flags.q.in) {
972 } else if ((state->stage == MESA_SHADER_FRAGMENT) && q.flags.q.out) {
1010 if (state->stage == MESA_SHADER_GEOMETRY &&
1894 if (state->stage
58 _mesa_glsl_parse_state(struct gl_context *_ctx, gl_shader_stage stage, void *mem_ctx) argument
[all...]
H A Dlower_const_arrays_to_uniforms.cpp51 stage = s;
67 unsigned stage; member in class:__anon14619::lower_const_array_visitor
98 const_count, stage);
120 lower_const_arrays_to_uniforms(exec_list *instructions, unsigned stage) argument
122 lower_const_array_visitor v(instructions, stage);
H A Dlower_output_reads.cpp50 unsigned stage; member in class:__anon14629::output_read_remover
52 output_read_remover(unsigned stage);
78 output_read_remover::output_read_remover(unsigned stage) argument
80 this->stage = stage;
168 lower_output_reads(unsigned stage, exec_list *instructions) argument
173 if (stage == MESA_SHADER_TESS_CTRL)
176 output_read_remover v(stage);
H A Dstandalone_scaffolding.cpp88 _mesa_new_shader(GLuint name, gl_shader_stage stage) argument
92 assert(stage == MESA_SHADER_FRAGMENT || stage == MESA_SHADER_VERTEX);
95 shader->Stage = stage;
/external/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_pipe_util.c40 draw_pipe_passthrough_point(struct draw_stage *stage, struct prim_header *header) argument
42 stage->next->point(stage->next, header);
46 draw_pipe_passthrough_line(struct draw_stage *stage, struct prim_header *header) argument
48 stage->next->line(stage->next, header);
52 draw_pipe_passthrough_tri(struct draw_stage *stage, struct prim_header *header) argument
54 stage->next->tri(stage->next, header);
69 boolean draw_alloc_temp_verts( struct draw_stage *stage, unsigne argument
114 struct draw_stage *stage = draw->pipeline.first; local
[all...]
H A Ddraw_pipe_twoside.c39 struct draw_stage stage; member in struct:twoside_stage
46 static inline struct twoside_stage *twoside_stage( struct draw_stage *stage )
48 return (struct twoside_stage *)stage;
59 struct vertex_header *tmp = dup_vert( &twoside->stage, v, idx );
76 static void twoside_tri( struct draw_stage *stage, argument
79 struct twoside_stage *twoside = twoside_stage(stage);
93 stage->next->tri( stage->next, &tmp );
96 stage->next->tri( stage
102 twoside_first_tri( struct draw_stage *stage, struct prim_header *header ) argument
142 twoside_flush( struct draw_stage *stage, unsigned flags ) argument
[all...]
H A Ddraw_pipe_validate.c145 static struct draw_stage *validate_pipeline( struct draw_stage *stage )
147 struct draw_context *draw = stage->draw;
154 /* Set the validate's next stage to the rasterize stage, so that it
157 stage->next = next;
226 * could only run the stage if either rast->flatshade is true
247 /* Always run the cull stage as we calculate determinant there
260 /* Clip stage
280 static void validate_tri( struct draw_stage *stage, argument
283 struct draw_stage *pipeline = validate_pipeline( stage );
287 validate_line( struct draw_stage *stage, struct prim_header *header ) argument
294 validate_point( struct draw_stage *stage, struct prim_header *header ) argument
307 validate_flush( struct draw_stage *stage, unsigned flags ) argument
328 struct draw_stage *stage = CALLOC_STRUCT(draw_stage); local
[all...]
/external/mesa3d/src/mesa/main/
H A Dshaderobj.h143 _mesa_shader_stage_to_subroutine_prefix(gl_shader_stage stage) argument
145 switch (stage) {
204 _mesa_shader_stage_to_subroutine(gl_shader_stage stage) argument
206 switch (stage) {
224 _mesa_shader_stage_to_subroutine_uniform(gl_shader_stage stage) argument
226 switch (stage) {
/external/mesa3d/src/mesa/tnl/
H A Dt_vb_normals.c45 #define NORMAL_STAGE_DATA(stage) ((struct normal_stage_data *)stage->privatePtr)
49 run_normal_stage(struct gl_context *ctx, struct tnl_pipeline_stage *stage) argument
51 struct normal_stage_data *store = NORMAL_STAGE_DATA(stage);
91 validate_normal_stage(struct gl_context *ctx, struct tnl_pipeline_stage *stage) argument
93 struct normal_stage_data *store = NORMAL_STAGE_DATA(stage);
145 * Allocate stage's private data (storage for transformed normals).
148 alloc_normal_data(struct gl_context *ctx, struct tnl_pipeline_stage *stage) argument
153 stage->privatePtr = malloc(sizeof(*store));
154 store = NORMAL_STAGE_DATA(stage);
167 free_normal_data(struct tnl_pipeline_stage *stage) argument
[all...]
/external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
H A Dgain_quant.c29 int16_t stage, /* (i) The stage of the search */
45 cb = WebRtcIlbcfix_kGain[stage];
46 cblen = 32>>stage;
47 noChecks = 4-stage;
26 WebRtcIlbcfix_GainQuant( int16_t gain, int16_t maxIn, int16_t stage, int16_t *index ) argument
/external/devlib/devlib/module/
H A D__init__.py29 # This is the stage at which the module will be installed. Current valid
38 stage = 'connected' variable in class:Module
/external/mesa3d/src/compiler/
H A Dshader_enums.c37 gl_shader_stage_name(gl_shader_stage stage) argument
48 return NAME(stage);
52 * Translate a gl_shader_stage to a short shader stage name for debug
56 _mesa_shader_stage_to_string(unsigned stage) argument
58 switch (stage) {
67 unreachable("Unknown shader stage.");
71 * Translate a gl_shader_stage to a shader stage abbreviation (VS, GS, FS)
75 _mesa_shader_stage_to_abbrev(unsigned stage) argument
77 switch (stage) {
86 unreachable("Unknown shader stage
[all...]
/external/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_quad_fs.c52 struct quad_stage stage; /**< base class */ member in struct:quad_shade_stage
174 qss->stage.softpipe = softpipe;
175 qss->stage.begin = shade_begin;
176 qss->stage.run = shade_quads;
177 qss->stage.destroy = shade_destroy;
179 return &qss->stage;
H A Dsp_quad_stipple.c3 * quad polygon stipple stage
73 struct quad_stage *stage = CALLOC_STRUCT(quad_stage); local
75 stage->softpipe = softpipe;
76 stage->begin = stipple_begin;
77 stage->run = stipple_quad;
78 stage->destroy = stipple_destroy;
80 return stage;
/external/mesa3d/src/mesa/state_tracker/
H A Dst_cb_program.c194 gl_shader_stage stage = _mesa_program_enum_to_shader_stage(target); local
280 st->shader_has_one_variant[stage])
/external/skia/src/core/
H A DSkBlendMode.cpp65 auto stage = SkRasterPipeline::srcover; local
67 case SkBlendMode::kClear: stage = SkRasterPipeline::clear; break;
68 case SkBlendMode::kSrc: return; // This stage is a no-op.
69 case SkBlendMode::kDst: stage = SkRasterPipeline::move_dst_src; break;
70 case SkBlendMode::kSrcOver: stage = SkRasterPipeline::srcover; break;
71 case SkBlendMode::kDstOver: stage = SkRasterPipeline::dstover; break;
72 case SkBlendMode::kSrcIn: stage = SkRasterPipeline::srcin; break;
73 case SkBlendMode::kDstIn: stage = SkRasterPipeline::dstin; break;
74 case SkBlendMode::kSrcOut: stage = SkRasterPipeline::srcout; break;
75 case SkBlendMode::kDstOut: stage
[all...]
H A DSkRasterPipeline.h32 * Each stage is represented by a function conforming to a common interface and by an
33 * arbitrary context pointer. The stage funciton arguments and calling convention are
110 #define M(stage) stage,
115 void append(StockStage stage, const void* ctx) { this->append(stage, const_cast<void*>(ctx)); } argument
136 // Appends a stage for the specified matrix. Tries to optimize the stage by analyzing
140 // Appends a stage for the uniform color. Tries to optimize the stage base
148 StockStage stage; member in struct:SkRasterPipeline::StageList
[all...]
/external/dng_sdk/source/
H A Ddng_opcode_list.cpp29 dng_opcode_list::dng_opcode_list (uint32 stage) argument
33 , fStage (stage)
/external/mesa3d/src/compiler/nir/
H A Dnir_lower_clip_cull_distance_arrays.c51 if (nir_is_per_vertex_io(var, nir->stage))
63 update_type(nir_variable *var, gl_shader_stage stage, unsigned length) argument
67 if (nir_is_per_vertex_io(var, stage))
160 update_type(clip, nir->stage, clip_array_size + cull_array_size);
183 if (nir->stage <= MESA_SHADER_GEOMETRY)
186 if (nir->stage > MESA_SHADER_VERTEX)

Completed in 1029 milliseconds

123456789