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

12345

/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/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/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.h59 struct draw_stage *next; /**< next stage in pipeline */
95 extern void draw_free_temp_verts( struct draw_stage *stage );
96 extern boolean draw_alloc_temp_verts( struct draw_stage *stage, unsigned nr );
100 void draw_pipe_passthrough_tri(struct draw_stage *stage, struct prim_header *header);
101 void draw_pipe_passthrough_line(struct draw_stage *stage, struct prim_header *header);
102 void draw_pipe_passthrough_point(struct draw_stage *stage, struct prim_header *header);
108 * \param stage drawing stage info
110 * \param idx index into stage's tmp[] array to put the copy (dest)
114 dup_vert( struct draw_stage *stage, argument
[all...]
H A Ddraw_pipe_cull.c29 * \brief Drawing stage for polygon culling
42 struct draw_stage stage; member in struct:cull_stage
48 static INLINE struct cull_stage *cull_stage( struct draw_stage *stage )
50 return (struct cull_stage *)stage;
54 static void cull_tri( struct draw_stage *stage, argument
57 const unsigned pos = draw_current_shader_position_output(stage->draw);
78 unsigned face = ((ccw == cull_stage(stage)->front_ccw) ?
82 if ((face & cull_stage(stage)->cull_face) == 0) {
83 /* triangle is not culled, pass to next stage */
84 stage
90 cull_first_tri( struct draw_stage *stage, struct prim_header *header ) argument
103 cull_flush( struct draw_stage *stage, unsigned flags ) argument
[all...]
H A Ddraw_pipe_unfilled.c29 * \brief Drawing stage for handling glPolygonMode(line/point).
43 struct draw_stage stage; member in struct:unfilled_stage
53 static INLINE struct unfilled_stage *unfilled_stage( struct draw_stage *stage )
55 return (struct unfilled_stage *)stage;
60 static void point( struct draw_stage *stage, argument
65 stage->next->point( stage->next, &tmp );
68 static void line( struct draw_stage *stage, argument
75 stage->next->line( stage
79 points( struct draw_stage *stage, struct prim_header *header ) argument
92 lines( struct draw_stage *stage, struct prim_header *header ) argument
133 unfilled_tri( struct draw_stage *stage, struct prim_header *header ) argument
159 unfilled_first_tri( struct draw_stage *stage, struct prim_header *header ) argument
174 unfilled_flush( struct draw_stage *stage, unsigned flags ) argument
[all...]
H A Ddraw_pipe_validate.c158 static struct draw_stage *validate_pipeline( struct draw_stage *stage )
160 struct draw_context *draw = stage->draw;
167 /* Set the validate's next stage to the rasterize stage, so that it
170 stage->next = next;
256 /* Always run the cull stage as we calculate determinant there
268 /* Clip stage
289 static void validate_tri( struct draw_stage *stage, argument
292 struct draw_stage *pipeline = validate_pipeline( stage );
296 static void validate_line( struct draw_stage *stage, argument
303 validate_point( struct draw_stage *stage, struct prim_header *header ) argument
316 validate_flush( struct draw_stage *stage, unsigned flags ) argument
337 struct draw_stage *stage = CALLOC_STRUCT(draw_stage); local
[all...]
/external/mesa3d/src/gallium/drivers/nv50/
H A Dnv50_draw.c28 struct draw_stage stage; member in struct:nv50_render_stage
33 nv50_render_stage(struct draw_stage *stage) argument
35 return (struct nv50_render_stage *)stage;
39 nv50_render_point(struct draw_stage *stage, struct prim_header *prim) argument
45 nv50_render_line(struct draw_stage *stage, struct prim_header *prim) argument
51 nv50_render_tri(struct draw_stage *stage, struct prim_header *prim) argument
57 nv50_render_flush(struct draw_stage *stage, unsigned flags) argument
62 nv50_render_reset_stipple_counter(struct draw_stage *stage) argument
68 nv50_render_destroy(struct draw_stage *stage) argument
70 FREE(stage);
[all...]
/external/mesa3d/src/gallium/drivers/nvc0/
H A Dnvc0_draw.c28 struct draw_stage stage; member in struct:nvc0_render_stage
33 nvc0_render_stage(struct draw_stage *stage) argument
35 return (struct nvc0_render_stage *)stage;
39 nvc0_render_point(struct draw_stage *stage, struct prim_header *prim) argument
45 nvc0_render_line(struct draw_stage *stage, struct prim_header *prim) argument
51 nvc0_render_tri(struct draw_stage *stage, struct prim_header *prim) argument
57 nvc0_render_flush(struct draw_stage *stage, unsigned flags) argument
62 nvc0_render_reset_stipple_counter(struct draw_stage *stage) argument
68 nvc0_render_destroy(struct draw_stage *stage) argument
70 FREE(stage);
[all...]
H A Dnvc0_shader_state.c32 struct nvc0_program *prog, int stage)
40 nvc0->state.tls_required |= 1 << stage;
42 if (nvc0->state.tls_required == (1 << stage))
44 nvc0->state.tls_required &= ~(1 << stage);
53 BEGIN_NVC0(push, NVC0_3D(CB_BIND(stage)), 1);
56 nvc0->state.c14_bound |= 1 << stage;
58 if (nvc0->state.c14_bound & (1 << stage)) {
59 BEGIN_NVC0(push, NVC0_3D(CB_BIND(stage)), 1);
62 nvc0->state.c14_bound &= ~(1 << stage);
31 nvc0_program_update_context_state(struct nvc0_context *nvc0, struct nvc0_program *prog, int stage) argument
/external/mesa3d/src/mesa/tnl/
H A Dt_vb_normals.c46 #define NORMAL_STAGE_DATA(stage) ((struct normal_stage_data *)stage->privatePtr)
50 run_normal_stage(struct gl_context *ctx, struct tnl_pipeline_stage *stage) argument
52 struct normal_stage_data *store = NORMAL_STAGE_DATA(stage);
92 validate_normal_stage(struct gl_context *ctx, struct tnl_pipeline_stage *stage) argument
94 struct normal_stage_data *store = NORMAL_STAGE_DATA(stage);
146 * Allocate stage's private data (storage for transformed normals).
149 alloc_normal_data(struct gl_context *ctx, struct tnl_pipeline_stage *stage) argument
154 stage->privatePtr = malloc(sizeof(*store));
155 store = NORMAL_STAGE_DATA(stage);
168 free_normal_data(struct tnl_pipeline_stage *stage) argument
[all...]
H A Dt_vb_points.c40 #define POINT_STAGE_DATA(stage) ((struct point_stage_data *)stage->privatePtr)
50 run_point_stage(struct gl_context *ctx, struct tnl_pipeline_stage *stage) argument
53 struct point_stage_data *store = POINT_STAGE_DATA(stage);
80 alloc_point_data(struct gl_context *ctx, struct tnl_pipeline_stage *stage) argument
84 stage->privatePtr = malloc(sizeof(*store));
85 store = POINT_STAGE_DATA(stage);
95 free_point_data(struct tnl_pipeline_stage *stage) argument
97 struct point_stage_data *store = POINT_STAGE_DATA(stage);
101 stage
[all...]
/external/skia/src/core/
H A DSkRasterPipeline.cpp13 void SkRasterPipeline::append(StockStage stage, void* ctx) { argument
14 SkASSERT(stage != from_srgb);
15 fStages.push_back({stage, ctx});
38 switch (st.stage) {
H A DSkRasterPipeline.h26 * Each stage is represented by a function conforming to a common interface, SkRasterPipeline::Fn,
32 * - The Stage* always represents the current stage, mainly providing access to ctx().
47 * When done mutating its arguments and/or context, a stage can either:
48 * 1) call st->next() with its mutated arguments, chaining to the next stage of the pipeline; or
52 * but any stage can short-circuit the rest of the pipeline by returning instead of calling next().
110 #define M(stage) stage,
115 void append(StockStage stage, const void* ctx) { this->append(stage, const_cast<void*>(ctx)); } argument
126 StockStage stage; member in struct:SkRasterPipeline::Stage
[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/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_quad_fs.c52 struct quad_stage stage; /**< base class */ member in struct:quad_shade_stage
169 qss->stage.softpipe = softpipe;
170 qss->stage.begin = shade_begin;
171 qss->stage.run = shade_quads;
172 qss->stage.destroy = shade_destroy;
174 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/dng_sdk/source/
H A Ddng_opcode_list.cpp29 dng_opcode_list::dng_opcode_list (uint32 stage) argument
33 , fStage (stage)
/external/mesa3d/src/gallium/auxiliary/vl/
H A Dvl_idct.h70 struct pipe_sampler_view *stage[2][2]; member in union:vl_idct_buffer::__anon14531
/external/mesa3d/src/gallium/drivers/i915/
H A Di915_prim_emit.c46 struct draw_stage stage; /**< This must be first (base class) */ member in struct:setup_stage
56 static INLINE struct setup_stage *setup_stage( struct draw_stage *stage )
58 return (struct setup_stage *)stage;
128 emit_prim( struct draw_stage *stage, argument
133 struct i915_context *i915 = setup_stage(stage)->i915;
173 setup_tri( struct draw_stage *stage, struct prim_header *prim ) argument
175 emit_prim( stage, prim, PRIM3D_TRILIST, 3 );
180 setup_line(struct draw_stage *stage, struct prim_header *prim) argument
182 emit_prim( stage, prim, PRIM3D_LINELIST, 2 );
187 setup_point(struct draw_stage *stage, struc argument
193 setup_flush( struct draw_stage *stage, unsigned flags ) argument
[all...]
/external/skia/src/gpu/vk/
H A DGrVkUtil.cpp254 SkSL::Program::Kind vk_shader_stage_to_skiasl_kind(VkShaderStageFlagBits stage) { argument
255 if (VK_SHADER_STAGE_VERTEX_BIT == stage) {
258 SkASSERT(VK_SHADER_STAGE_FRAGMENT_BIT == stage);
272 VkShaderStageFlagBits stage,
278 vk_shader_stage_to_skiasl_kind(stage),
312 stageInfo->stage = skiasl_kind_to_vk_shader_stage(program->fKind);
270 GrCompileVkShaderModule(const GrVkGpu* gpu, const char* shaderString, VkShaderStageFlagBits stage, VkShaderModule* shaderModule, VkPipelineShaderStageCreateInfo* stageInfo, const SkSL::Program::Settings& settings, SkSL::Program::Inputs* outInputs) argument
/external/swiftshader/src/Renderer/
H A DTextureStage.cpp37 void TextureStage::init(int stage, const Sampler *sampler, const TextureStage *previousStage) argument
39 this->stage = stage;
41 stageOperation = (stage == 0 ? STAGE_MODULATE : STAGE_DISABLE);
45 stageOperationAlpha = (stage == 0 ? STAGE_SELECTARG1 : STAGE_DISABLE);
57 texCoordIndex = stage;

Completed in 616 milliseconds

12345