/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/ |
D | draw_pipe.c | 42 draw->pipeline.wide_line = draw_wide_line_stage( draw ); in draw_pipeline_init() 43 draw->pipeline.wide_point = draw_wide_point_stage( draw ); in draw_pipeline_init() 44 draw->pipeline.stipple = draw_stipple_stage( draw ); in draw_pipeline_init() 45 draw->pipeline.unfilled = draw_unfilled_stage( draw ); in draw_pipeline_init() 46 draw->pipeline.twoside = draw_twoside_stage( draw ); in draw_pipeline_init() 47 draw->pipeline.offset = draw_offset_stage( draw ); in draw_pipeline_init() 48 draw->pipeline.clip = draw_clip_stage( draw ); in draw_pipeline_init() 49 draw->pipeline.flatshade = draw_flatshade_stage( draw ); in draw_pipeline_init() 50 draw->pipeline.cull = draw_cull_stage( draw ); in draw_pipeline_init() 51 draw->pipeline.validate = draw_validate_stage( draw ); in draw_pipeline_init() [all …]
|
D | draw_pipe_validate.c | 86 if (rasterizer->line_stipple_enable && draw->pipeline.line_stipple) in draw_need_pipeline() 90 if (roundf(rasterizer->line_width) > draw->pipeline.wide_line_threshold) in draw_need_pipeline() 94 if (rasterizer->line_smooth && draw->pipeline.aaline) in draw_need_pipeline() 101 if (rasterizer->point_size > draw->pipeline.wide_point_threshold) in draw_need_pipeline() 106 && draw->pipeline.wide_point_sprites) in draw_need_pipeline() 110 if (rasterizer->point_smooth && draw->pipeline.aapoint) in draw_need_pipeline() 114 if (rasterizer->sprite_coord_enable && draw->pipeline.point_sprite) in draw_need_pipeline() 122 if (rasterizer->poly_stipple_enable && draw->pipeline.pstipple) in draw_need_pipeline() 161 struct draw_stage *next = draw->pipeline.rasterize; in validate_pipeline() 173 wide_lines = (roundf(rast->line_width) > draw->pipeline.wide_line_threshold in validate_pipeline() [all …]
|
D | draw_pipe_util.c | 114 struct draw_stage *stage = draw->pipeline.first; in draw_reset_vertex_ids() 125 if (draw->pipeline.verts) in draw_reset_vertex_ids() 128 char *verts = draw->pipeline.verts; in draw_reset_vertex_ids() 129 unsigned stride = draw->pipeline.vertex_stride; in draw_reset_vertex_ids() 131 for (i = 0; i < draw->pipeline.vertex_count; i++) { in draw_reset_vertex_ids()
|
/external/mesa3d/src/gallium/auxiliary/draw/ |
D | draw_pipe.c | 42 draw->pipeline.wide_line = draw_wide_line_stage( draw ); in draw_pipeline_init() 43 draw->pipeline.wide_point = draw_wide_point_stage( draw ); in draw_pipeline_init() 44 draw->pipeline.stipple = draw_stipple_stage( draw ); in draw_pipeline_init() 45 draw->pipeline.unfilled = draw_unfilled_stage( draw ); in draw_pipeline_init() 46 draw->pipeline.twoside = draw_twoside_stage( draw ); in draw_pipeline_init() 47 draw->pipeline.offset = draw_offset_stage( draw ); in draw_pipeline_init() 48 draw->pipeline.clip = draw_clip_stage( draw ); in draw_pipeline_init() 49 draw->pipeline.flatshade = draw_flatshade_stage( draw ); in draw_pipeline_init() 50 draw->pipeline.cull = draw_cull_stage( draw ); in draw_pipeline_init() 51 draw->pipeline.validate = draw_validate_stage( draw ); in draw_pipeline_init() [all …]
|
D | draw_pipe_validate.c | 86 if (rasterizer->line_stipple_enable && draw->pipeline.line_stipple) in draw_need_pipeline() 90 if (roundf(rasterizer->line_width) > draw->pipeline.wide_line_threshold) in draw_need_pipeline() 94 if (rasterizer->line_smooth && draw->pipeline.aaline) in draw_need_pipeline() 101 if (rasterizer->point_size > draw->pipeline.wide_point_threshold) in draw_need_pipeline() 106 && draw->pipeline.wide_point_sprites) in draw_need_pipeline() 110 if (rasterizer->point_smooth && draw->pipeline.aapoint) in draw_need_pipeline() 114 if (rasterizer->sprite_coord_enable && draw->pipeline.point_sprite) in draw_need_pipeline() 122 if (rasterizer->poly_stipple_enable && draw->pipeline.pstipple) in draw_need_pipeline() 161 struct draw_stage *next = draw->pipeline.rasterize; in validate_pipeline() 173 wide_lines = (roundf(rast->line_width) > draw->pipeline.wide_line_threshold in validate_pipeline() [all …]
|
D | draw_pipe_util.c | 114 struct draw_stage *stage = draw->pipeline.first; in draw_reset_vertex_ids() 125 if (draw->pipeline.verts) in draw_reset_vertex_ids() 128 char *verts = draw->pipeline.verts; in draw_reset_vertex_ids() 129 unsigned stride = draw->pipeline.vertex_stride; in draw_reset_vertex_ids() 131 for (i = 0; i < draw->pipeline.vertex_count; i++) { in draw_reset_vertex_ids()
|
/external/chromium_org/third_party/mesa/src/src/mesa/tnl/ |
D | t_pipeline.c | 44 tnl->pipeline.new_state = ~0; in _tnl_install_pipeline() 49 struct tnl_pipeline_stage *s = &tnl->pipeline.stages[i]; in _tnl_install_pipeline() 55 tnl->pipeline.nr_stages = i; in _tnl_install_pipeline() 63 for (i = 0 ; i < tnl->pipeline.nr_stages ; i++) { in _tnl_destroy_pipeline() 64 struct tnl_pipeline_stage *s = &tnl->pipeline.stages[i]; in _tnl_destroy_pipeline() 69 tnl->pipeline.nr_stages = 0; in _tnl_destroy_pipeline() 80 if (tnl->vb.AttribPtr[i]->size != tnl->pipeline.last_attrib_size[i] || in check_input_changes() 81 tnl->vb.AttribPtr[i]->stride != tnl->pipeline.last_attrib_stride[i]) { in check_input_changes() 82 tnl->pipeline.last_attrib_size[i] = tnl->vb.AttribPtr[i]->size; in check_input_changes() 83 tnl->pipeline.last_attrib_stride[i] = tnl->vb.AttribPtr[i]->stride; in check_input_changes() [all …]
|
D | NOTES | 44 most important is by allowing drivers to specify the pipeline through 48 The default pipeline is specified in t_pipeline.c, and is usually a 69 passing the display list data directly into the tnl pipeline 94 In addition, the driver interface for the default render pipeline
|
/external/mesa3d/src/mesa/tnl/ |
D | t_pipeline.c | 44 tnl->pipeline.new_state = ~0; in _tnl_install_pipeline() 49 struct tnl_pipeline_stage *s = &tnl->pipeline.stages[i]; in _tnl_install_pipeline() 55 tnl->pipeline.nr_stages = i; in _tnl_install_pipeline() 63 for (i = 0 ; i < tnl->pipeline.nr_stages ; i++) { in _tnl_destroy_pipeline() 64 struct tnl_pipeline_stage *s = &tnl->pipeline.stages[i]; in _tnl_destroy_pipeline() 69 tnl->pipeline.nr_stages = 0; in _tnl_destroy_pipeline() 80 if (tnl->vb.AttribPtr[i]->size != tnl->pipeline.last_attrib_size[i] || in check_input_changes() 81 tnl->vb.AttribPtr[i]->stride != tnl->pipeline.last_attrib_stride[i]) { in check_input_changes() 82 tnl->pipeline.last_attrib_size[i] = tnl->vb.AttribPtr[i]->size; in check_input_changes() 83 tnl->pipeline.last_attrib_stride[i] = tnl->vb.AttribPtr[i]->stride; in check_input_changes() [all …]
|
D | NOTES | 44 most important is by allowing drivers to specify the pipeline through 48 The default pipeline is specified in t_pipeline.c, and is usually a 69 passing the display list data directly into the tnl pipeline 94 In addition, the driver interface for the default render pipeline
|
/external/deqp/doc/testspecs/GLES31/ |
D | functional.separate_shader.txt | 27 + Replacement of pipeline stages 28 + Independence of homonymous uniforms and constants in the pipeline's 31 + glProgramUniform on the pipeline's stages 42 + Testing pipeline rendering against a hardware-independent reference 46 The "api.current_program_priority" test case checks that a bound pipeline 48 pipeline and a differently behaving monolithic program. It then calls 51 but without a bound program pipeline. 53 The "api.active_program_uniform" test case creates a pipeline and a 54 program, binds the pipeline and sets that program as the pipeline's active 63 returns the program that was set as the pipeline's active program. [all …]
|
/external/chromium_org/media/tools/player_x11/ |
D | player_x11.cc | 103 media::Pipeline* pipeline, in InitPipeline() argument 146 pipeline->Start( in InitPipeline() 157 pipeline->SetPlaybackRate(1.0f); in InitPipeline() 165 media::Pipeline* pipeline, in PeriodicalUpdate() argument 170 pipeline->Stop(base::MessageLoop::QuitClosure()); in PeriodicalUpdate() 193 base::TimeDelta time = pipeline->GetMediaDuration(); in PeriodicalUpdate() 194 pipeline->Seek(time*e.xbutton.x/width, base::Bind(&OnStatus)); in PeriodicalUpdate() 203 pipeline->Stop(base::MessageLoop::QuitClosure()); in PeriodicalUpdate() 206 if (pipeline->GetPlaybackRate() < 0.01f) // paused in PeriodicalUpdate() 207 pipeline->SetPlaybackRate(1.0f); in PeriodicalUpdate() [all …]
|
/external/chromium_org/media/filters/ |
D | pipeline_integration_perftest.cc | 21 PipelineIntegrationTestBase pipeline; in RunPlaybackBenchmark() local 23 ASSERT_TRUE(pipeline.Start(GetTestDataFilePath(filename), in RunPlaybackBenchmark() 28 pipeline.Play(); in RunPlaybackBenchmark() 30 ASSERT_TRUE(pipeline.WaitUntilOnEnded()); in RunPlaybackBenchmark() 33 pipeline.Stop(); in RunPlaybackBenchmark() 36 time_seconds += pipeline.GetAudioTime().InSecondsF(); in RunPlaybackBenchmark()
|
/external/mesa3d/src/gallium/state_trackers/xvmc/tests/ |
D | xvmc_bench.c | 57 unsigned int pipeline; member 73 config->pipeline = 0; in ParseArgs() 106 config->pipeline |= PIPELINE_STEP_MC; in ParseArgs() 108 config->pipeline |= PIPELINE_STEP_CSC; in ParseArgs() 110 config->pipeline |= PIPELINE_STEP_SWAP; in ParseArgs() 169 if (!config->pipeline) in ParseArgs() 170 config->pipeline = PIPELINE_STEP_MC | PIPELINE_STEP_CSC | PIPELINE_STEP_SWAP; in ParseArgs() 263 if (config.pipeline & PIPELINE_STEP_MC) in main() 268 if (config.pipeline & PIPELINE_STEP_CSC) in main() 280 if (config.pipeline & PIPELINE_STEP_MC) in main() [all …]
|
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xvmc/tests/ |
D | xvmc_bench.c | 57 unsigned int pipeline; member 73 config->pipeline = 0; in ParseArgs() 106 config->pipeline |= PIPELINE_STEP_MC; in ParseArgs() 108 config->pipeline |= PIPELINE_STEP_CSC; in ParseArgs() 110 config->pipeline |= PIPELINE_STEP_SWAP; in ParseArgs() 169 if (!config->pipeline) in ParseArgs() 170 config->pipeline = PIPELINE_STEP_MC | PIPELINE_STEP_CSC | PIPELINE_STEP_SWAP; in ParseArgs() 263 if (config.pipeline & PIPELINE_STEP_MC) in main() 268 if (config.pipeline & PIPELINE_STEP_CSC) in main() 280 if (config.pipeline & PIPELINE_STEP_MC) in main() [all …]
|
/external/deqp/modules/gles31/functional/ |
D | es31fSeparateShaderTests.cpp | 813 : pipeline (pipeline_) in Pipeline() 828 UniquePtr<ProgramPipeline> pipeline; member 834 void logPipeline(TestLog& log, const Pipeline& pipeline) in logPipeline() argument 836 ProgramWrapper& vtxProg = pipeline.getVertexProgram(); in logPipeline() 837 ProgramWrapper& frgProg = pipeline.getFragmentProgram(); in logPipeline() 1095 MovePtr<ProgramPipeline> pipeline (new ProgramPipeline(renderCtx)); in createPipeline() local 1113 pipeline->useProgramStages(GL_VERTEX_SHADER_BIT | GL_FRAGMENT_SHADER_BIT, in createPipeline() 1116 << "// Created pipeline " << pipeline->getPipeline() in createPipeline() 1125 pipeline->useProgramStages(GL_VERTEX_SHADER_BIT, vtxProg->getProgramName()); in createPipeline() 1128 pipeline->useProgramStages(GL_FRAGMENT_SHADER_BIT, frgProg->getProgramName()); in createPipeline() [all …]
|
/external/nist-sip/java/gov/nist/javax/sip/parser/ |
D | Pipeline.java | 59 Pipeline pipeline; field in Pipeline.MyTimer 63 protected MyTimer(Pipeline pipeline) { in MyTimer() argument 64 this.pipeline = pipeline; in MyTimer() 72 pipeline.close(); in runTask()
|
/external/okhttp/benchmarks/src/main/java/com/squareup/okhttp/benchmarks/ |
D | NettyHttpClient.java | 70 ChannelPipeline pipeline = channel.pipeline(); in prepare() 76 pipeline.addLast("ssl", new SslHandler(engine)); in prepare() 79 pipeline.addLast("codec", new HttpClientCodec()); in prepare() 80 pipeline.addLast("inflater", new HttpContentDecompressor()); in prepare() 81 pipeline.addLast("handler", new HttpChannel(channel)); in prepare() 107 httpChannel = (HttpChannel) channel.pipeline().last(); in enqueue()
|
/external/llvm/lib/Target/PowerPC/ |
D | PPCSchedule440.td | 14 // The basic PPC 440 does not include a floating-point unit; the pipeline 35 // the complex integer (I-pipe) pipeline 37 // the floating-point execution (F-pipe) pipeline 38 def P440_IEXE1 : FuncUnit; // Execution stage 1 for the I pipeline 39 def P440_IEXE2 : FuncUnit; // Execution stage 2 for the I pipeline 40 def P440_IWB : FuncUnit; // Write-back unit for the I pipeline 41 def P440_JEXE1 : FuncUnit; // Execution stage 1 for the J pipeline 42 def P440_JEXE2 : FuncUnit; // Execution stage 2 for the J pipeline 43 def P440_JWB : FuncUnit; // Write-back unit for the J pipeline 44 def P440_AGEN : FuncUnit; // Address generation for the L pipeline [all …]
|
D | PPCScheduleP7.td | 31 def P7_LS1 : FuncUnit; // Load/Store pipeline 1 32 def P7_LS2 : FuncUnit; // Load/Store pipeline 2 34 def P7_FX1 : FuncUnit; // FX pipeline 1 35 def P7_FX2 : FuncUnit; // FX pipeline 2 37 // VS pipeline 1 (vector integer ops. always here) 38 def P7_VS1 : FuncUnit; // VS pipeline 1 39 // VS pipeline 2 (128-bit stores and perms. here) 40 def P7_VS2 : FuncUnit; // VS pipeline 2 46 // Each LSU pipeline can also execute FX add and logical instructions. 47 // Each LSU pipeline can complete a load or store in one cycle. [all …]
|
/external/llvm/test/Other/ |
D | pass-pipeline-parsing.ll | 61 ; CHECK-UNBALANCED1: unable to parse pass pipeline description 66 ; CHECK-UNBALANCED2: unable to parse pass pipeline description 71 ; CHECK-UNBALANCED3: unable to parse pass pipeline description 76 ; CHECK-UNBALANCED4: unable to parse pass pipeline description 81 ; CHECK-UNBALANCED5: unable to parse pass pipeline description 86 ; CHECK-UNBALANCED6: unable to parse pass pipeline description 91 ; CHECK-UNBALANCED7: unable to parse pass pipeline description 96 ; CHECK-UNBALANCED8: unable to parse pass pipeline description 101 ; CHECK-UNBALANCED9: unable to parse pass pipeline description 106 ; CHECK-UNBALANCED10: unable to parse pass pipeline description
|
/external/mesa3d/src/mesa/drivers/dri/common/xmlpool/ |
D | fr.po | 122 msgid "Use software TCL pipeline" 123 msgstr "Utiliser un pipeline TCL logiciel" 126 msgid "Use hardware TCL as first TCL pipeline stage" 127 msgstr "Utiliser le TCL matériel pour le premier niveau de pipeline" 130 msgid "Bypass the TCL pipeline" 131 msgstr "Court-circuiter le pipeline TCL" 135 "Bypass the TCL pipeline with state-based machine code generated on-the-fly" 137 "Court-circuiter le pipeline TCL par une machine à états qui génère le code"
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/common/xmlpool/ |
D | fr.po | 122 msgid "Use software TCL pipeline" 123 msgstr "Utiliser un pipeline TCL logiciel" 126 msgid "Use hardware TCL as first TCL pipeline stage" 127 msgstr "Utiliser le TCL matériel pour le premier niveau de pipeline" 130 msgid "Bypass the TCL pipeline" 131 msgstr "Court-circuiter le pipeline TCL" 135 "Bypass the TCL pipeline with state-based machine code generated on-the-fly" 137 "Court-circuiter le pipeline TCL par une machine à états qui génère le code"
|
/external/llvm/lib/Target/ARM/ |
D | ARMScheduleV6.td | 17 def V6_Pipe : FuncUnit; // pipeline 88 // Integer multiply pipeline 97 // Integer load pipeline 150 // Integer store pipeline 191 // Issue through integer pipeline, and execute in NEON unit. We assume 192 // RunFast mode so that NFP pipeline is used for single-precision when
|
/external/oprofile/events/arm/armv7-ca9/ |
D | events | 13 …r of cycles where CPU has some instructions that it cannot issue to any pipeline and the LSU has a… 23 …nstructions being executed in main execution pipeline of the CPU, the multiply pipeline and the AL… 24 …_SND_EXEC : Number of instructions being executed in the second execution pipeline (ALU) of the CPU
|