Searched refs:effect (Results 1 - 25 of 223) sorted by last modified time

123456789

/external/valgrind/main/none/tests/s390x/
H A Dex.stdout.exp8 ------- EX 0,... has no effect (writes out target)
H A Dexrl.stdout.exp8 ------- EXRL 0,... has no effect (writes out target)
/external/sonivox/arm-hybrid-22k/lib_src/
H A DARM-E_voice_gain_gnu.s79 @ NOTE: instructions are reordered to reduce the effect of latency
H A Deas_effects.h56 S_EFFECTS_INTERFACE *effect; member in struct:__anon30907
H A Deas_mixer.c117 /* need to clear other side-chain effect buffers (chorus & reverb) */
143 if (pEASData->effectsModules[EAS_MODULE_MAXIMIZER].effect)
179 /* enhancer effect */
181 (*pEASData->effectsModules[EAS_MODULE_ENHANCER].effect->pfProcess)
189 /* graphic EQ effect */
191 (*pEASData->effectsModules[EAS_MODULE_GRAPHIC_EQ].effect->pfProcess)
199 /* compressor effect */
201 (*pEASData->effectsModules[EAS_MODULE_COMPRESSOR].effect->pfProcess)
214 (*pEASData->effectsModules[EAS_MODULE_WOW].effect->pfProcess)
222 /* ToneControlEQ effect */
[all...]
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 DARM-E_voice_gain_gnu.s79 @ NOTE: instructions are reordered to reduce the effect of latency
H A Deas_effects.h56 S_EFFECTS_INTERFACE *effect; member in struct:__anon30960
H A Deas_mixer.c117 /* need to clear other side-chain effect buffers (chorus & reverb) */
143 if (pEASData->effectsModules[EAS_MODULE_MAXIMIZER].effect)
179 /* enhancer effect */
181 (*pEASData->effectsModules[EAS_MODULE_ENHANCER].effect->pfProcess)
189 /* graphic EQ effect */
191 (*pEASData->effectsModules[EAS_MODULE_GRAPHIC_EQ].effect->pfProcess)
199 /* compressor effect */
201 (*pEASData->effectsModules[EAS_MODULE_COMPRESSOR].effect->pfProcess)
214 (*pEASData->effectsModules[EAS_MODULE_WOW].effect->pfProcess)
222 /* ToneControlEQ effect */
[all...]
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)
/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);
H A DSkMaskFilter.cpp301 bool SkMaskFilter::asNewEffect(GrEffectRef** effect, GrTexture*, const SkMatrix&) const { argument
H A DSkPaint.cpp1716 * With higher values lcd fringing is worse and the smoothing effect of
2303 SkPathEffect* SkPaint::setPathEffect(SkPathEffect* effect) { argument
2304 GEN_ID_INC_EVAL(effect != fPathEffect);
2305 SkRefCnt_SafeAssign(fPathEffect, effect);
2306 fDirtyBits = set_mask(fDirtyBits, kPathEffect_DirtyBit, effect != NULL);
2307 return effect;
H A DSkXfermode.cpp679 bool SkXfermode::asNewEffect(GrEffectRef** effect, GrTexture* background) const { argument
684 GrEffectRef** effect,
693 return xfermode->asNewEffect(effect, background);
800 AutoEffectUnref effect(SkNEW_ARGS(XferEffect, (mode, background)));
801 return CreateEffectRef(effect);
974 int numTextures = (*drawEffect.effect())->numTextures();
1366 bool SkProcCoeffXfermode::asNewEffect(GrEffectRef** effect, argument
1369 if (NULL != effect) {
1370 *effect = XferEffect::Create(fMode, background);
1371 SkASSERT(NULL != *effect);
683 AsNewEffectOrCoeff(SkXfermode* xfermode, GrEffectRef** effect, Coeff* src, Coeff* dst, GrTexture* background) argument
[all...]
H A DSkXfermode_proccoeff.h34 virtual bool asNewEffect(GrEffectRef** effect,
/external/skia/src/effects/
H A DSkAlphaThresholdFilter.cpp27 virtual bool asNewEffect(GrEffectRef** effect, GrTexture* texture,
63 AutoEffectUnref effect(SkNEW_ARGS(AlphaThresholdEffect, (texture,
67 return CreateEffectRef(effect);
251 bool SkAlphaThresholdFilterImpl::asNewEffect(GrEffectRef** effect, GrTexture* texture, argument
253 if (effect) {
290 *effect = AlphaThresholdEffect::Create(texture,
H A DSkArithmeticMode.cpp37 virtual bool asNewEffect(GrEffectRef** effect, GrTexture* background) const SK_OVERRIDE;
267 AutoEffectUnref effect(SkNEW_ARGS(GrArithmeticEffect, (k1, k2, k3, k4, enforcePMColor,
269 return CreateEffectRef(effect);
432 bool SkArithmeticMode_scalar::asNewEffect(GrEffectRef** effect, GrTexture* background) const { argument
433 if (effect) {
434 *effect = GrArithmeticEffect::Create(SkScalarToFloat(fK[0]),
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 DSkColorFilters.cpp191 // TODO: Make the effect take the coeffs rather than mode since we already do the
198 AutoEffectUnref effect(SkNEW_ARGS(ModeColorFilterEffect, (c, mode)));
199 return CreateEffectRef(effect);
H A DSkColorMatrixFilter.cpp334 AutoEffectUnref effect(SkNEW_ARGS(ColorMatrixEffect, (matrix)));
335 return CreateEffectRef(effect);
383 // shader but currently the effect does not pin its own output. So in the case of over/
384 // underflow this may deviate from the actual result. Maybe the effect should pin its
H A DSkDisplacementMapEffect.cpp308 AutoEffectUnref effect(SkNEW_ARGS(GrDisplacementMapEffect, (xChannelSelector,
314 return CreateEffectRef(effect);
472 // not of constant color when a displacement effect is applied.
H A DSkGpuBlurUtils.cpp177 SkAutoTUnref<GrEffectRef> effect(GrTextureDomainEffect::Create(
183 paint.addColorEffect(effect);
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 DSkLumaColorFilter.cpp64 AutoEffectUnref effect(SkNEW(LumaColorFilterEffect));
65 return CreateEffectRef(effect);
H A DSkMagnifierImageFilter.cpp35 AutoEffectUnref effect(SkNEW_ARGS(GrMagnifierEffect, (texture,
42 return CreateEffectRef(effect);
199 GrEffectRef* effect = GrMagnifierEffect::Create( local
207 SkASSERT(NULL != effect);
208 return effect;
256 bool SkMagnifierImageFilter::asNewEffect(GrEffectRef** effect, GrTexture* texture, const SkMatrix&, const SkIRect&) const { argument
257 if (effect) {
261 *effect = GrMagnifierEffect::Create(texture,

Completed in 197 milliseconds

123456789