HomeSort by relevance Sort by last modified time
    Searched defs:stage (Results 1 - 25 of 159) sorted by null

1 2 3 4 5 6 7

  /cts/tests/framework/base/windowmanager/src/android/server/wm/intent/
StateComparisonException.java 28 private String stage; field in class:StateComparisonException
31 Persistence.StateDump actual, String stage) {
34 this.stage = stage;
44 .append(stage)
74 Persistence.StateDump actual, String stage) {
76 throw new StateComparisonException(expected, actual, stage);
  /external/mesa3d/src/compiler/glsl/
lower_const_arrays_to_uniforms.cpp 51 stage = s;
67 unsigned stage; member in class:__anon33013::lower_const_array_visitor
98 const_count, stage);
120 lower_const_arrays_to_uniforms(exec_list *instructions, unsigned stage)
122 lower_const_array_visitor v(instructions, stage);
lower_output_reads.cpp 50 unsigned stage; member in class:__anon33025::output_read_remover
52 output_read_remover(unsigned stage);
78 output_read_remover::output_read_remover(unsigned stage)
80 this->stage = stage;
168 lower_output_reads(unsigned stage, exec_list *instructions)
173 if (stage == MESA_SHADER_TESS_CTRL)
176 output_read_remover v(stage);
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pipe_util.c 40 draw_pipe_passthrough_point(struct draw_stage *stage, struct prim_header *header)
42 stage->next->point(stage->next, header);
46 draw_pipe_passthrough_line(struct draw_stage *stage, struct prim_header *header)
48 stage->next->line(stage->next, header);
52 draw_pipe_passthrough_tri(struct draw_stage *stage, struct prim_header *header)
54 stage->next->tri(stage->next, header);
69 boolean draw_alloc_temp_verts( struct draw_stage *stage, unsigned nr
114 struct draw_stage *stage = draw->pipeline.first; local
    [all...]
draw_pipe_twoside.c 39 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,
79 struct twoside_stage *twoside = twoside_stage(stage);
93 stage->next->tri( stage->next, &tmp );
96 stage->next->tri( stage->next, header )
    [all...]
draw_pipe_validate.c 145 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;
227 * could only run the stage if either rast->flatshade is true
248 /* Always run the cull stage as we calculate determinant there
261 /* Clip stage
281 static void validate_tri( struct draw_stage *stage,
284 struct draw_stage *pipeline = validate_pipeline( stage );
329 struct draw_stage *stage = CALLOC_STRUCT(draw_stage); local
    [all...]
draw_pipe_wide_line.c 41 struct draw_stage stage; member in struct:wideline_stage
48 static void wideline_line( struct draw_stage *stage,
51 const unsigned pos = draw_current_shader_position_output(stage->draw);
52 const float half_width = 0.5f * stage->draw->rasterizer->line_width;
56 struct vertex_header *v0 = dup_vert(stage, header->v[0], 0);
57 struct vertex_header *v1 = dup_vert(stage, header->v[0], 1);
58 struct vertex_header *v2 = dup_vert(stage, header->v[1], 2);
59 struct vertex_header *v3 = dup_vert(stage, header->v[1], 3);
70 stage->draw->rasterizer->half_pixel_center;
132 stage->next->tri( stage->next, &tri )
    [all...]
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_quad_fs.c 52 struct quad_stage stage; /**< base class */ member in struct:quad_shade_stage
166 qss->stage.softpipe = softpipe;
167 qss->stage.begin = shade_begin;
168 qss->stage.run = shade_quads;
169 qss->stage.destroy = shade_destroy;
171 return &qss->stage;
sp_quad_stipple.c 3 * 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/
st_cb_program.c 163 gl_shader_stage stage = _mesa_program_enum_to_shader_stage(target); local
249 st->shader_has_one_variant[stage])
st_cb_rasterpos.c 30 * private draw module. Plug in a special "rasterpos" stage at the end
55 * Our special drawing pipeline stage (replaces rasterization).
59 struct draw_stage stage; /**< Base class */ member in struct:rastpos_stage
70 rastpos_stage( struct draw_stage *stage )
72 return (struct rastpos_stage *) stage;
76 rastpos_flush( struct draw_stage *stage, unsigned flags )
82 rastpos_reset_stipple_counter( struct draw_stage *stage )
88 rastpos_tri( struct draw_stage *stage, struct prim_header *prim )
95 rastpos_line( struct draw_stage *stage, struct prim_header *prim )
102 rastpos_destroy(struct draw_stage *stage)
    [all...]
  /device/linaro/hikey/l-loader/
gen_loader.py 34 stage = 0 variable in class:generator
109 if (self.stage == 1):
114 elif (self.stage == 2):
128 print "wrong stage ", stage, "is specified"
131 if (self.idx == 0) and (self.stage == 1):
152 if (self.idx == 0) and (self.stage == 1):
162 if self.stage == 1:
164 elif self.stage == 2:
177 if self.stage == 1
    [all...]
  /external/linux-kselftest/tools/testing/selftests/kvm/x86_64/
state_test.c 133 int stage; local
152 for (stage = 1;; stage++) {
176 uc.args[1] == stage, "Unexpected register values vmexit #%lx, got %lx",
177 stage, (ulong)uc.args[1]);
evmcs_test.c 84 int stage; local
113 for (stage = 1;; stage++) {
137 uc.args[1] == stage, "Unexpected register values vmexit #%lx, got %lx",
138 stage, (ulong)uc.args[1]);
  /external/mesa3d/src/gallium/drivers/i915/
i915_prim_emit.c 46 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,
133 struct i915_context *i915 = setup_stage(stage)->i915;
173 setup_tri( struct draw_stage *stage, struct prim_header *prim )
175 emit_prim( stage, prim, PRIM3D_TRILIST, 3 );
180 setup_line(struct draw_stage *stage, struct prim_header *prim)
182 emit_prim( stage, prim, PRIM3D_LINELIST, 2 );
187 setup_point(struct draw_stage *stage, struct prim_header *prim
    [all...]
  /device/google/cuttlefish_common/host/commands/kernel_log_monitor/
kernel_log_server.cc 140 auto& stage = stage_kv.first; local
142 if (std::string::npos != line_.find(stage)) {
143 // Log the stage
144 LOG(INFO) << stage;
151 fprintf(log, "%s\n", stage.c_str());
  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/integration/
TrapezoidIntegrator.java 62 * 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);
  /external/mesa3d/src/compiler/nir/
nir_lower_samplers_as_deref.c 119 gl_shader_stage stage = state->shader->info.stage; local
131 state->shader_program->data->UniformStorage[location].opaque[stage].active);
133 binding = state->shader_program->data->UniformStorage[location].opaque[stage].index;
  /external/mesa3d/src/gallium/auxiliary/vl/
vl_idct.h 70 struct pipe_sampler_view *stage[2][2]; member in union:vl_idct_buffer::__anon33290
  /external/mesa3d/src/mesa/main/
program_binary.c 173 for (unsigned stage = 0; stage < MESA_SHADER_STAGES; stage++) {
174 struct gl_linked_shader *shader = sh_prog->_LinkedShaders[stage];
175 serialize[stage] = shader && shader->Program->driver_cache_blob == NULL;
176 if (serialize[stage])
182 for (unsigned stage = 0; stage < MESA_SHADER_STAGES; stage++) {
183 if (!serialize[stage])
200 unsigned int stage; local
    [all...]
  /external/skia/src/core/
SkBlendMode.cpp 23 // than as a separate stage that'd come after the lerp.
86 auto stage = SkRasterPipeline::srcover; local
88 case SkBlendMode::kClear: stage = SkRasterPipeline::clear; break;
89 case SkBlendMode::kSrc: return; // This stage is a no-op.
90 case SkBlendMode::kDst: stage = SkRasterPipeline::move_dst_src; break;
91 case SkBlendMode::kSrcOver: stage = SkRasterPipeline::srcover; break;
92 case SkBlendMode::kDstOver: stage = SkRasterPipeline::dstover; break;
93 case SkBlendMode::kSrcIn: stage = SkRasterPipeline::srcin; break;
94 case SkBlendMode::kDstIn: stage = SkRasterPipeline::dstin; break;
95 case SkBlendMode::kSrcOut: stage = SkRasterPipeline::srcout; break
    [all...]
  /external/skia/src/gpu/vk/
GrVkUniformHandler.cpp 349 const char* stage; local
352 stage = "vertex";
355 stage = "geometry";
359 stage = "fragment";
362 kUniformBufferDescSet, uniformBinding, stage);
  /external/skqp/src/core/
SkBlendMode.cpp 23 // than as a separate stage that'd come after the lerp.
86 auto stage = SkRasterPipeline::srcover; local
88 case SkBlendMode::kClear: stage = SkRasterPipeline::clear; break;
89 case SkBlendMode::kSrc: return; // This stage is a no-op.
90 case SkBlendMode::kDst: stage = SkRasterPipeline::move_dst_src; break;
91 case SkBlendMode::kSrcOver: stage = SkRasterPipeline::srcover; break;
92 case SkBlendMode::kDstOver: stage = SkRasterPipeline::dstover; break;
93 case SkBlendMode::kSrcIn: stage = SkRasterPipeline::srcin; break;
94 case SkBlendMode::kDstIn: stage = SkRasterPipeline::dstin; break;
95 case SkBlendMode::kSrcOut: stage = SkRasterPipeline::srcout; break
    [all...]
  /external/skqp/src/gpu/vk/
GrVkUniformHandler.cpp 354 const char* stage; local
357 stage = "vertex";
360 stage = "geometry";
364 stage = "fragment";
367 kUniformBufferDescSet, uniformBinding, stage);
  /external/swiftshader/third_party/LLVM/lib/Target/CellSPU/
SPUNopFiller.cpp 140 const InstrStage *stage = IID->beginStage(sc); local
141 unsigned FUs = stage->getUnits();

Completed in 1548 milliseconds

1 2 3 4 5 6 7