/device/google/dragon/audio/hal/ |
cras_dsp_pipeline.h | 18 * pipeline is a collection of dsp plugins that process audio 20 * file. Before using the pipeline, we need to instantiate the 21 * pipeline by giving an audio sampling rate. Then we get the pointers 22 * to the input buffers, fill the input data, run the pipeline, and 32 struct pipeline; 34 /* Creates a pipeline from the given ini file. 36 * ini - The ini file the pipeline is created from. 38 * purpose - The purpose of the pipeline, "playback" or "capture". 40 * A pointer to the pipeline, or NULL if the creation fails. 42 struct pipeline *cras_dsp_pipeline_create(struct ini* ini [all...] |
cras_dsp.c | 16 /* We have a dsp_context for each pipeline. The context records the 17 * parameters used to create a pipeline, so the pipeline can be 18 * (re-)loaded later. The pipeline is (re-)loaded in the following 26 struct pipeline *pipeline; member in struct:cras_dsp_context 46 static struct pipeline *prepare_pipeline(struct cras_dsp_context *ctx) 48 struct pipeline *pipeline; local 54 pipeline = cras_dsp_pipeline_create(ini, &ctx->env, purpose) 97 struct pipeline *pipeline, *old_pipeline; local [all...] |
cras_dsp_pipeline.c | 17 * "struct pipeline". The difference between the static one and the 25 * struct ini struct pipeline 41 * now disabled, in the pipeline we construct there will only be two 51 int buf_index; /* the buffer index in the pipeline */ 99 /* An pipeline is a dynamic representation of a dsp ini file. */ 100 struct pipeline { struct 101 /* The purpose of the pipeline. "playback" or "capture" */ 104 /* The ini file this pipeline comes from */ 107 /* All needed instances for this pipeline. It is sorted in an 113 * the same time for this pipeline */ 405 struct pipeline *pipeline; local [all...] |
/external/mesa3d/src/gallium/auxiliary/draw/ |
draw_pipe.c | 41 /* 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.cull = draw_cull_stage( draw ) [all...] |
draw_pipe_validate.c | 58 * 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.aapoint 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...] |
/external/deqp/external/vulkancts/modules/vulkan/pipeline/ |
vktPipelineBlendTests.hpp | 31 namespace pipeline namespace in namespace:vkt 36 } // pipeline
|
vktPipelineCacheTests.hpp | 24 * \brief Pipeline Cache Tests 31 namespace pipeline namespace in namespace:vkt 36 } // pipeline
|
vktPipelineDepthTests.hpp | 31 namespace pipeline namespace in namespace:vkt 36 } // pipeline
|
vktPipelineEarlyFragmentTests.hpp | 32 namespace pipeline namespace in namespace:vkt 37 } // pipeline
|
vktPipelineImageTests.hpp | 31 namespace pipeline namespace in namespace:vkt 36 } // pipeline
|
vktPipelineImageViewTests.hpp | 31 namespace pipeline namespace in namespace:vkt 36 } // pipeline
|
vktPipelineInputAssemblyTests.hpp | 31 namespace pipeline namespace in namespace:vkt 36 } // pipeline
|
vktPipelineMultisampleTests.hpp | 31 namespace pipeline namespace in namespace:vkt 36 } // pipeline
|
vktPipelinePushConstantTests.hpp | 31 namespace pipeline namespace in namespace:vkt 36 } // pipeline
|
vktPipelineSamplerTests.hpp | 31 namespace pipeline namespace in namespace:vkt 36 } // pipeline
|
vktPipelineStencilTests.hpp | 31 namespace pipeline namespace in namespace:vkt 36 } // pipeline
|
vktPipelineTests.hpp | 24 * \brief Pipeline Tests 32 namespace pipeline namespace in namespace:vkt 37 } // pipeline
|
vktPipelineTimestampTests.hpp | 31 namespace pipeline namespace in namespace:vkt 36 } // pipeline
|
vktPipelineVertexInputTests.hpp | 31 namespace pipeline namespace in namespace:vkt 36 } // pipeline
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/pipeline/ |
RenderingRequestCaller.java | 17 package com.android.gallery3d.filtershow.pipeline;
|
/external/chromium-trace/catapult/third_party/mapreduce/mapreduce/ |
pipeline_base.py | 5 import pipeline 12 class PipelineBase(pipeline.Pipeline): 15 Rewrites base path to use pipeline library bundled with mapreduce. 21 return pipeline.Pipeline.start(self, **kwargs) 27 result_status: one of model.MapreduceState._RESULTS. When a MR pipeline
|
/external/skia/src/gpu/batches/ |
GrDrawBatch.h | 51 const GrPipeline* pipeline() const { function in class:GrDrawBatch 63 return this->pipeline()->getRenderTarget()->getUniqueID(); 68 return this->pipeline()->getRenderTarget(); 75 for (int i = 0; i < this->pipeline()->numColorFragmentProcessors(); i++) { 77 this->pipeline()->getColorFragmentProcessor(i).name(), 78 this->pipeline()->getColorFragmentProcessor(i).dumpInfo().c_str()); 81 for (int i = 0; i < this->pipeline()->numCoverageFragmentProcessors(); i++) { 83 this->pipeline()->getCoverageFragmentProcessor(i).name(), 84 this->pipeline()->getCoverageFragmentProcessor(i).dumpInfo().c_str()); 86 string.appendf("XP: %s\n", this->pipeline()->getXferProcessor().name()) [all...] |
/external/skia/src/gpu/vk/ |
GrVkPipeline.h | 26 const GrPipeline& pipeline, 34 VkPipeline pipeline() const { return fPipeline; } function in class:GrVkPipeline 37 GrVkPipeline(VkPipeline pipeline) : INHERITED(), fPipeline(pipeline) {}
|
/external/mesa3d/src/mesa/tnl/ |
t_pipeline.c | 44 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.last_attrib_stride[i] = tnl->vb.AttribPtr[i]->stride [all...] |
/external/chromium-trace/catapult/third_party/pipeline/pipeline/ |
handlers.py | 17 """Web request dispatcher for the Google App Engine Pipeline API. 19 In a separate file from the core pipeline module to break circular dependencies. 25 import pipeline 28 _APP = webapp.WSGIApplication(pipeline.create_handlers_map(), debug=True)
|