Searched refs:pipeline (Results 1 - 25 of 129) sorted by relevance

123456

/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
H A Ddraw_pipe.c41 /* create pipeline stages */
42 draw->pipeline.wide_line = draw_wide_line_stage( draw );
43 draw->pipeline.wide_point = draw_wide_point_stage( draw );
44 draw->pipeline.stipple = draw_stipple_stage( draw );
45 draw->pipeline.unfilled = draw_unfilled_stage( draw );
46 draw->pipeline.twoside = draw_twoside_stage( draw );
47 draw->pipeline.offset = draw_offset_stage( draw );
48 draw->pipeline.clip = draw_clip_stage( draw );
49 draw->pipeline.flatshade = draw_flatshade_stage( draw );
50 draw->pipeline
[all...]
H A Ddraw_pipe_validate.c58 * pipeline stages, or whether prims/verts can go through untouched.
60 * about the primitive pipeline stages.
80 * and triggering the pipeline, because we have to trigger the
81 * pipeline *anyway* if unfilled mode is active.
86 if (rasterizer->line_stipple_enable && draw->pipeline.line_stipple)
90 if (roundf(rasterizer->line_width) > draw->pipeline.wide_line_threshold)
94 if (rasterizer->line_smooth && draw->pipeline.aaline)
101 if (rasterizer->point_size > draw->pipeline.wide_point_threshold)
106 && draw->pipeline.wide_point_sprites)
110 if (rasterizer->point_smooth && draw->pipeline
292 struct draw_stage *pipeline = validate_pipeline( stage ); local
299 struct draw_stage *pipeline = validate_pipeline( stage ); local
306 struct draw_stage *pipeline = validate_pipeline( stage ); local
312 struct draw_stage *pipeline = validate_pipeline( stage ); local
[all...]
H A Ddraw_pipe_util.c114 struct draw_stage *stage = draw->pipeline.first;
125 if (draw->pipeline.verts)
128 char *verts = draw->pipeline.verts;
129 unsigned stride = draw->pipeline.vertex_stride;
131 for (i = 0; i < draw->pipeline.vertex_count; i++) {
/external/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_pipe.c41 /* create pipeline stages */
42 draw->pipeline.wide_line = draw_wide_line_stage( draw );
43 draw->pipeline.wide_point = draw_wide_point_stage( draw );
44 draw->pipeline.stipple = draw_stipple_stage( draw );
45 draw->pipeline.unfilled = draw_unfilled_stage( draw );
46 draw->pipeline.twoside = draw_twoside_stage( draw );
47 draw->pipeline.offset = draw_offset_stage( draw );
48 draw->pipeline.clip = draw_clip_stage( draw );
49 draw->pipeline.flatshade = draw_flatshade_stage( draw );
50 draw->pipeline
[all...]
H A Ddraw_pipe_validate.c58 * pipeline stages, or whether prims/verts can go through untouched.
60 * about the primitive pipeline stages.
80 * and triggering the pipeline, because we have to trigger the
81 * pipeline *anyway* if unfilled mode is active.
86 if (rasterizer->line_stipple_enable && draw->pipeline.line_stipple)
90 if (roundf(rasterizer->line_width) > draw->pipeline.wide_line_threshold)
94 if (rasterizer->line_smooth && draw->pipeline.aaline)
101 if (rasterizer->point_size > draw->pipeline.wide_point_threshold)
106 && draw->pipeline.wide_point_sprites)
110 if (rasterizer->point_smooth && draw->pipeline
292 struct draw_stage *pipeline = validate_pipeline( stage ); local
299 struct draw_stage *pipeline = validate_pipeline( stage ); local
306 struct draw_stage *pipeline = validate_pipeline( stage ); local
312 struct draw_stage *pipeline = validate_pipeline( stage ); local
[all...]
H A Ddraw_pipe_util.c114 struct draw_stage *stage = draw->pipeline.first;
125 if (draw->pipeline.verts)
128 char *verts = draw->pipeline.verts;
129 unsigned stride = draw->pipeline.vertex_stride;
131 for (i = 0; i < draw->pipeline.vertex_count; i++) {
/external/chromium_org/third_party/mesa/src/src/mesa/tnl/
H A Dt_pipeline.c44 tnl->pipeline.new_state = ~0;
49 struct tnl_pipeline_stage *s = &tnl->pipeline.stages[i];
55 tnl->pipeline.nr_stages = i;
63 for (i = 0 ; i < tnl->pipeline.nr_stages ; i++) {
64 struct tnl_pipeline_stage *s = &tnl->pipeline.stages[i];
69 tnl->pipeline.nr_stages = 0;
80 if (tnl->vb.AttribPtr[i]->size != tnl->pipeline.last_attrib_size[i] ||
81 tnl->vb.AttribPtr[i]->stride != tnl->pipeline.last_attrib_stride[i]) {
82 tnl->pipeline.last_attrib_size[i] = tnl->vb.AttribPtr[i]->size;
83 tnl->pipeline
[all...]
/external/mesa3d/src/mesa/tnl/
H A Dt_pipeline.c44 tnl->pipeline.new_state = ~0;
49 struct tnl_pipeline_stage *s = &tnl->pipeline.stages[i];
55 tnl->pipeline.nr_stages = i;
63 for (i = 0 ; i < tnl->pipeline.nr_stages ; i++) {
64 struct tnl_pipeline_stage *s = &tnl->pipeline.stages[i];
69 tnl->pipeline.nr_stages = 0;
80 if (tnl->vb.AttribPtr[i]->size != tnl->pipeline.last_attrib_size[i] ||
81 tnl->vb.AttribPtr[i]->stride != tnl->pipeline.last_attrib_stride[i]) {
82 tnl->pipeline.last_attrib_size[i] = tnl->vb.AttribPtr[i]->size;
83 tnl->pipeline
[all...]
/external/chromium_org/media/filters/
H A Dpipeline_integration_perftest.cc21 PipelineIntegrationTestBase pipeline; local
23 ASSERT_TRUE(pipeline.Start(GetTestDataFilePath(filename),
28 pipeline.Play();
30 ASSERT_TRUE(pipeline.WaitUntilOnEnded());
33 pipeline.Stop();
36 time_seconds += pipeline.GetAudioTime().InSecondsF();
/external/chromium_org/v8/test/cctest/compiler/
H A Dtest-pipeline.cc9 #include "src/compiler/pipeline.h"
30 Pipeline pipeline(&info);
32 Handle<Code> code = pipeline.GenerateCode();
36 USE(pipeline);
H A Dgraph-builder-tester.cc8 #include "src/compiler/pipeline.h"
41 Pipeline pipeline(&info);
42 code_ = pipeline.GenerateCodeForMachineGraph(&linkage, graph_);
/external/chromium_org/third_party/cython/src/Cython/Compiler/
H A DUtilityCode.py99 pipeline = Pipeline.create_pipeline(context, 'pyx', exclude_classes=excludes)
103 for t in pipeline:
108 pipeline = p
114 pipeline = Pipeline.insert_into_pipeline(pipeline, transform,
123 pipeline = Pipeline.insert_into_pipeline(pipeline, scope_transform,
126 (err, tree) = Pipeline.run_pipeline(pipeline, tree, printtree=False)
H A DPipeline.py12 # Really small pipeline stages
20 # Stop the pipeline if there are any errors.
22 raise AbortError("pipeline break")
166 # NOTE: This is the "common" parts of the pipeline, which is also
249 # The pxd pipeline ends up with a CCodeWriter containing the
265 pipeline = []
275 pipeline.append(stage)
287 pipeline.append(fake_pxd)
288 return pipeline
290 def insert_into_pipeline(pipeline, transfor
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xvmc/tests/
H A Dxvmc_bench.c57 unsigned int pipeline; member in struct:Config
73 config->pipeline = 0;
106 config->pipeline |= PIPELINE_STEP_MC;
108 config->pipeline |= PIPELINE_STEP_CSC;
110 config->pipeline |= PIPELINE_STEP_SWAP;
157 "\t-p <pipeline>\tPipeline to test\n"
169 if (!config->pipeline)
170 config->pipeline = PIPELINE_STEP_MC | PIPELINE_STEP_CSC | PIPELINE_STEP_SWAP;
263 if (config.pipeline & PIPELINE_STEP_MC)
268 if (config.pipeline
[all...]
/external/mesa3d/src/gallium/state_trackers/xvmc/tests/
H A Dxvmc_bench.c57 unsigned int pipeline; member in struct:Config
73 config->pipeline = 0;
106 config->pipeline |= PIPELINE_STEP_MC;
108 config->pipeline |= PIPELINE_STEP_CSC;
110 config->pipeline |= PIPELINE_STEP_SWAP;
157 "\t-p <pipeline>\tPipeline to test\n"
169 if (!config->pipeline)
170 config->pipeline = PIPELINE_STEP_MC | PIPELINE_STEP_CSC | PIPELINE_STEP_SWAP;
263 if (config.pipeline & PIPELINE_STEP_MC)
268 if (config.pipeline
[all...]
/external/chromium_org/media/tools/player_x11/
H A Dplayer_x11.cc25 #include "media/base/pipeline.h"
112 media::Pipeline* pipeline,
152 pipeline->Start(demuxer,
162 // Wait until the pipeline is fully initialized.
167 pipeline->SetPlaybackRate(1.0f);
175 media::Pipeline* pipeline,
179 // Quit message_loop only when pipeline is fully stopped.
180 pipeline->Stop(base::MessageLoop::QuitClosure());
203 base::TimeDelta time = pipeline->GetMediaDuration();
204 pipeline
111 InitPipeline( media::Pipeline* pipeline, const scoped_refptr<base::SingleThreadTaskRunner>& task_runner, media::Demuxer* demuxer, const media::VideoRendererImpl::PaintCB& paint_cb, bool ) argument
174 PeriodicalUpdate( media::Pipeline* pipeline, base::MessageLoop* message_loop) argument
[all...]
/external/nist-sip/java/gov/nist/javax/sip/parser/
H A DPipeline.java59 Pipeline pipeline; field in class:Pipeline.MyTimer
63 protected MyTimer(Pipeline pipeline) { argument
64 this.pipeline = pipeline;
72 pipeline.close();
/external/chromium_org/third_party/cython/src/Cython/Compiler/Tests/
H A DTestVisitor.py22 pipeline = [
29 self._tree = self.run_pipeline(pipeline, u"""
H A DTestParseTreeTransforms.py186 self.pipeline = [transform]
194 self.run_pipeline(self.pipeline, self.import_code)
195 parallel_directives = self.pipeline[0].parallel_directives
199 self.run_pipeline(self.pipeline,
201 parallel_directives = self.pipeline[0].parallel_directives
H A DTestBuffer.py55 root = self.fragment(s, pipeline=[NormalizeTree(self), PostParse(self)]).root
95 """, pipeline=[NormalizeTree(self), PostParse(self)]).root
/external/okhttp/benchmarks/src/main/java/com/squareup/okhttp/benchmarks/
H A DNettyHttpClient.java70 ChannelPipeline pipeline = channel.pipeline();
76 pipeline.addLast("ssl", new SslHandler(engine));
79 pipeline.addLast("codec", new HttpClientCodec());
80 pipeline.addLast("inflater", new HttpContentDecompressor());
81 pipeline.addLast("handler", new HttpChannel(channel));
107 httpChannel = (HttpChannel) channel.pipeline().last();
/external/deqp/modules/gles31/functional/
H A Des31fSeparateShaderTests.cpp741 // Final pipeline has a single program?
904 // Program pipeline wrapper that retains references to component programs.
912 : pipeline (pipeline_)
927 UniquePtr<ProgramPipeline> pipeline;
933 void logPipeline(TestLog& log, const Pipeline& pipeline)
935 ProgramWrapper& vtxProg = pipeline.getVertexProgram();
936 ProgramWrapper& frgProg = pipeline.getFragmentProgram();
938 log.writeMessage("// Failed program pipeline:");
1195 MovePtr<ProgramPipeline> pipeline (new ProgramPipeline(renderCtx));
1202 // would not be distinct in the final pipeline, an
[all...]
/external/chromium_org/third_party/cython/src/Cython/
H A DTestUtils.py87 def fragment(self, code, pxds={}, pipeline=[]):
92 return TreeFragment(code, name, pxds, pipeline=pipeline)
127 - Call run_pipeline. The pipeline should at least contain the transform you
129 create a post-parse tree) or a node representing input to pipeline.
142 def run_pipeline(self, pipeline, pyx, pxds={}):
144 # Run pipeline
145 for T in pipeline:
152 # as part of the compiler pipeline
/external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
H A Dtoy.ml28 (* Set up the optimizer pipeline. Start with registering info about how the
/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
H A Dtoy.ml28 (* Set up the optimizer pipeline. Start with registering info about how the

Completed in 2534 milliseconds

123456