Searched refs:effect (Results 126 - 150 of 223) sorted by relevance

123456789

/external/bluetooth/bluedroid/audio_a2dp_hw/
H A Daudio_a2dp_hw.c792 static int out_add_audio_effect(const struct audio_stream *stream, effect_handle_t effect) argument
795 UNUSED(effect);
801 static int out_remove_audio_effect(const struct audio_stream *stream, effect_handle_t effect) argument
804 UNUSED(effect);
982 static int in_add_audio_effect(const struct audio_stream *stream, effect_handle_t effect) argument
985 UNUSED(effect);
991 static int in_remove_audio_effect(const struct audio_stream *stream, effect_handle_t effect) argument
994 UNUSED(effect);
/external/chromium_org/skia/ext/
H A Dvector_canvas_unittest.cc733 skia::RefPtr<SkPathEffect> effect = skia::AdoptRef( local
735 paint.setPathEffect(effect.get());
753 skia::RefPtr<SkPathEffect> effect = skia::AdoptRef( local
755 paint.setPathEffect(effect.get());
771 skia::RefPtr<SkPathEffect> effect = skia::AdoptRef( local
773 paint.setPathEffect(effect.get());
787 skia::RefPtr<SkPathEffect> effect = skia::AdoptRef( local
789 paint.setPathEffect(effect.get());
/external/chromium_org/third_party/skia/src/gpu/effects/
H A DGrRRectEffect.cpp495 const GrFragmentProcessor& effect,
514 const GrProcessor& effect)
520 const GrFragmentProcessor& effect,
526 const EllipticalRRectEffect& erre = effect.cast<EllipticalRRectEffect>();
596 void GLEllipticalRRectEffect::GenKey(const GrProcessor& effect, const GrGLCaps&, argument
598 const EllipticalRRectEffect& erre = effect.cast<EllipticalRRectEffect>();
604 const GrProcessor& effect) {
605 const EllipticalRRectEffect& erre = effect.cast<EllipticalRRectEffect>();
724 // had been squashed cornerFlags would be 0.) The elliptical effect doesn't
513 GLEllipticalRRectEffect(const GrBackendProcessorFactory& factory, const GrProcessor& effect) argument
519 emitCode(GrGLProgramBuilder* builder, const GrFragmentProcessor& effect, const GrProcessorKey& key, const char* outputColor, const char* inputColor, const TransformedCoordsArray&, const TextureSamplerArray& samplers) argument
H A DGrConvexPolyEffect.cpp111 const GrProcessor& effect)
252 void GrGLConvexPolyEffect::setData(const GrGLProgramDataManager& pdman, const GrProcessor& effect) { argument
253 const GrConvexPolyEffect& cpe = effect.cast<GrConvexPolyEffect>();
110 GLAARectEffect(const GrBackendProcessorFactory& factory, const GrProcessor& effect) argument
H A DGrBezierEffect.cpp39 const GrProcessor& effect)
41 const GrConicEffect& ce = effect.cast<GrConicEffect>();
193 const GrProcessor& effect)
195 const GrQuadEffect& ce = effect.cast<GrQuadEffect>();
38 GrGLConicEffect(const GrBackendProcessorFactory& factory, const GrProcessor& effect) argument
192 GrGLQuadEffect(const GrBackendProcessorFactory& factory, const GrProcessor& effect) argument
/external/skia/src/gpu/effects/
H A DGrRRectEffect.cpp123 GrEffectRef* effect; local
126 effect = GrRRectEffect::Create(et, rrect);
127 } while (NULL == effect);
128 return effect;
475 GrEffectRef* effect; local
478 effect = GrRRectEffect::Create(et, rrect);
479 } while (NULL == effect);
480 return effect;
717 // had been squashed cornerFlags would be 0.) The elliptical effect doesn't
/external/skia/src/effects/
H A DSkLightingImageFilter.cpp277 virtual bool asNewEffect(GrEffectRef** effect, GrTexture*, const SkMatrix& matrix, const SkIRect& bounds) const SK_OVERRIDE;
299 virtual bool asNewEffect(GrEffectRef** effect, GrTexture*, const SkMatrix& matrix, const SkIRect& bounds) const SK_OVERRIDE;
342 AutoEffectUnref effect(SkNEW_ARGS(GrDiffuseLightingEffect, (texture,
347 return CreateEffectRef(effect);
379 AutoEffectUnref effect(SkNEW_ARGS(GrSpecularLightingEffect, (texture,
385 return CreateEffectRef(effect);
989 bool SkDiffuseLightingImageFilter::asNewEffect(GrEffectRef** effect, GrTexture* texture, const SkMatrix& matrix, const SkIRect&) const { argument
990 if (effect) {
992 *effect = GrDiffuseLightingEffect::Create(texture, light(), scale, matrix, kd());
1078 bool SkSpecularLightingImageFilter::asNewEffect(GrEffectRef** effect, GrTextur argument
[all...]
H A DSkBlurMaskFilter.cpp556 * Create a simple filter effect with custom bicubic coefficients.
575 AutoEffectUnref effect(SkNEW_ARGS(GrRectBlurEffect, (rect, sigma, blurProfileTexture)));
576 return CreateEffectRef(effect);
797 SkAutoTUnref<GrEffectRef> effect(GrRectBlurEffect::Create(
799 if (!effect) {
808 grp->addCoverageEffect(effect);
1079 SkAutoTUnref<GrEffectRef> effect(GrRRectBlurEffect::Create(
1081 if (!effect) {
1090 grp->addCoverageEffect(effect);
H A DSkMatrixConvolutionImageFilter.cpp342 AutoEffectUnref effect(SkNEW_ARGS(GrMatrixConvolutionEffect, (texture,
351 return CreateEffectRef(effect);
405 const GrDrawEffect& effect);
663 bool SkMatrixConvolutionImageFilter::asNewEffect(GrEffectRef** effect, argument
668 if (!effect) {
672 *effect = GrMatrixConvolutionEffect::Create(texture,
/external/chromium_org/content/renderer/media/webrtc/
H A Dpeer_connection_dependency_factory.cc62 const media::AudioParameters::PlatformEffectsMask effect; member in struct:content::__anon7763
72 // the constraint to false to later disable the software effect.
86 // effect.
87 *effects &= ~kConstraintEffectMap[i].effect;
88 DVLOG(1) << "Disabling platform effect: "
89 << kConstraintEffectMap[i].effect;
90 } else if (*effects & kConstraintEffectMap[i].effect) {
91 // If the constraint is true, leave the platform effect enabled, and
92 // set the constraint to false to later disable the software effect.
102 } else if (kConstraintEffectMap[i].effect
[all...]
/external/skia/src/core/
H A DSkImageFilter.cpp199 GrEffectRef* effect; local
205 this->asNewEffect(&effect, srcTexture, matrix, bounds);
206 SkASSERT(effect);
207 SkAutoUnref effectRef(effect);
209 paint.addColorEffect(effect);
/external/skia/src/effects/gradients/
H A DSkLinearGradient.cpp487 AutoEffectUnref effect(SkNEW_ARGS(GrLinearGradient, (ctx, shader, matrix, tm)));
488 return CreateEffectRef(effect);
532 GrEffectRef* effect; local
533 shader->asNewEffect(context, paint, NULL, &grColor, &effect);
534 return effect;
H A DSkRadialGradient.cpp496 AutoEffectUnref effect(SkNEW_ARGS(GrRadialGradient, (ctx, shader, matrix, tm)));
497 return CreateEffectRef(effect);
543 GrEffectRef* effect; local
544 shader->asNewEffect(context, paint, NULL, &grColor, &effect);
545 return effect;
H A DSkTwoPointRadialGradient.cpp441 AutoEffectUnref effect(SkNEW_ARGS(GrRadial2Gradient, (ctx, shader, matrix, tm)));
442 return CreateEffectRef(effect);
534 GrEffectRef* effect;
536 shader->asNewEffect(context, paint, NULL, &grColor, &effect);
537 return effect;
/external/chromium_org/v8/src/compiler/
H A Dverifier.cc103 // Verify all effect inputs actually have an effect.
105 Node* effect = NodeProperties::GetEffectInput(node); local
106 CHECK(OperatorProperties::HasEffectOutput(effect->op()));
107 CHECK(IsDefUseChainLinkPresent(effect, node));
108 CHECK(IsUseDefChainLinkPresent(effect, node));
H A Djs-typed-lowering.cc23 // Relax the effects of {node} by immediately replacing effect uses of {node}
24 // with the effect input to {node}.
25 // TODO(turbofan): replace the effect input to {node} with {graph->start()}.
42 // JSOperator. This class manages the rewriting of context, control, and effect
84 // Remove all effect and control inputs and outputs to this node and change
92 // Remove the effects from the node, if any, and update its effect usages.
96 // Remove the inputs corresponding to context, effect, and control.
126 Node* effect() { return NodeProperties::GetEffectInput(node_); } function in class:v8::internal::compiler::JSBinopReduction
151 effect(), control());
161 effect(), contro
218 update_effect(Node* effect) argument
[all...]
/external/skia/include/core/
H A DSkImageFilter.h274 * If effect is non-NULL, a new GrEffect instance is stored
278 * The effect can assume its vertexCoords space maps 1-to-1 with texels
280 * parameters before they are used in the effect. Note that this function
284 virtual bool asNewEffect(GrEffectRef** effect,
/external/chromium_org/third_party/skia/src/effects/gradients/
H A DSkSweepGradient.cpp298 GrFragmentProcessor** effect) const {
313 *effect = GrSweepGradient::Create(context, *this, matrix);
/external/chromium_org/third_party/skia/src/gpu/
H A DGrDrawTarget.cpp402 const GrProcessor* effect = drawState.getColorStage(s).getProcessor(); local
403 int numTextures = effect->numTextures();
405 GrTexture* texture = effect->texture(t);
410 const GrProcessor* effect = drawState.getCoverageStage(s).getProcessor(); local
411 int numTextures = effect->numTextures();
413 GrTexture* texture = effect->texture(t);
H A DGrOvalRenderer.cpp59 * The output of this effect is a modulation of the input color and coverage for a circle,
173 * The output of this effect is a modulation of the input color and coverage for an axis-aligned
315 * The output of this effect is a modulation of the input color and coverage for an ellipse,
949 GrFragmentProcessor* effect = GrRRectEffect::Create(edgeType, *outer); local
950 if (NULL == effect) {
960 target->drawState()->addCoverageProcessor(effect)->unref();
1027 // The way the effect interpolates the offset-to-ellipse/circle-center attribute only works on
1080 GrGeometryProcessor* effect = CircleEdgeEffect::Create(isStrokeOnly); local
1081 drawState->setGeometryProcessor(effect)->unref();
1183 GrGeometryProcessor* effect local
[all...]
/external/skia/src/gpu/
H A DGrClipMaskManager.cpp53 // This could be a long-lived effect that is cached with the alpha-mask.
168 SkAutoTUnref<GrEffectRef> effect; local
171 effect.reset(GrConvexPolyEffect::Create(edgeType, iter.get()->getPath(),
177 effect.reset(GrRRectEffect::Create(edgeType, rrect));
183 effect.reset(GrConvexPolyEffect::Create(edgeType, rect));
189 if (effect) {
194 fGpu->drawState()->addCoverageEffect(effect);
858 // mapping depends on whether stencil-clipping is in effect.
H A DGrDrawTarget.cpp392 const GrEffectRef& effect = *drawState.getColorStage(s).getEffect(); local
393 int numTextures = effect->numTextures();
395 GrTexture* texture = effect->texture(t);
400 const GrEffectRef& effect = *drawState.getCoverageStage(s).getEffect(); local
401 int numTextures = effect->numTextures();
403 GrTexture* texture = effect->texture(t);
/external/sonivox/arm-fm-22k/lib_src/
H A Deas_public.c427 pEASData->effectsModules[module].effect = EAS_CMEnumFXModules(module);
428 if (pEASData->effectsModules[module].effect != NULL)
430 if ((result = (*pEASData->effectsModules[module].effect->pfInit)(pEASData, &pEASData->effectsModules[module].effectData)) != EAS_SUCCESS)
511 if (pEASData->effectsModules[i].effect)
513 if ((result = (*pEASData->effectsModules[i].effect->pfShutdown)(pEASData, pEASData->effectsModules[i].effectData)) != EAS_SUCCESS)
1913 * well to the actual CPU cycles consumed. The primary effect is to
2232 return (*pEASData->effectsModules[module].effect->pFGetParam)
2267 return (*pEASData->effectsModules[module].effect->pFSetParam)
/external/sonivox/arm-hybrid-22k/lib_src/
H A Deas_public.c427 pEASData->effectsModules[module].effect = EAS_CMEnumFXModules(module);
428 if (pEASData->effectsModules[module].effect != NULL)
430 if ((result = (*pEASData->effectsModules[module].effect->pfInit)(pEASData, &pEASData->effectsModules[module].effectData)) != EAS_SUCCESS)
511 if (pEASData->effectsModules[i].effect)
513 if ((result = (*pEASData->effectsModules[i].effect->pfShutdown)(pEASData, pEASData->effectsModules[i].effectData)) != EAS_SUCCESS)
1913 * well to the actual CPU cycles consumed. The primary effect is to
2232 return (*pEASData->effectsModules[module].effect->pFGetParam)
2267 return (*pEASData->effectsModules[module].effect->pFSetParam)
/external/sonivox/arm-wt-22k/lib_src/
H A Deas_public.c428 pEASData->effectsModules[module].effect = EAS_CMEnumFXModules(module);
429 if (pEASData->effectsModules[module].effect != NULL)
431 if ((result = (*pEASData->effectsModules[module].effect->pfInit)(pEASData, &pEASData->effectsModules[module].effectData)) != EAS_SUCCESS)
512 if (pEASData->effectsModules[i].effect)
514 if ((result = (*pEASData->effectsModules[i].effect->pfShutdown)(pEASData, pEASData->effectsModules[i].effectData)) != EAS_SUCCESS)
1928 * well to the actual CPU cycles consumed. The primary effect is to
2247 return (*pEASData->effectsModules[module].effect->pFGetParam)
2282 return (*pEASData->effectsModules[module].effect->pFSetParam)

Completed in 720 milliseconds

123456789