Home
last modified time | relevance | path

Searched refs:strength (Results 1 – 24 of 24) sorted by relevance

/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
Dpost_filter.cpp189 int mbnum, strength, A_D, d1_2, d1, d2, A, B, C, D, b_size; in H263_Deblock() local
220 strength = STRENGTH_tab[QP_store[mbnum]]; in H263_Deblock()
233 if (d1 < -(strength << 1)) in H263_Deblock()
237 else if (d1 < -strength) in H263_Deblock()
239 d1 = -d1 - (strength << 1); in H263_Deblock()
246 if (d1 > (strength << 1)) in H263_Deblock()
250 else if (d1 > strength) in H263_Deblock()
252 d1 = (strength << 1) - d1; in H263_Deblock()
311strength = STRENGTH_tab[(annex_T ? MQ_chroma_QP_table[QP_store[mbnum]] : QP_store[mbnum])]; in H263_Deblock()
315strength = STRENGTH_tab[(annex_T ? MQ_chroma_QP_table[QP_store[mbnum - nMBPerRow]] : QP_store[mbn… in H263_Deblock()
[all …]
/frameworks/wilhelm/src/itf/
DIVirtualizer.c91 static SLresult IVirtualizer_SetStrength(SLVirtualizerItf self, SLpermille strength) in IVirtualizer_SetStrength() argument
95 if ((VIRTUALIZER_STRENGTH_MIN > strength) || (VIRTUALIZER_STRENGTH_MAX < strength)) { in IVirtualizer_SetStrength()
101 thiz->mStrength = strength; in IVirtualizer_SetStrength()
108 VIRTUALIZER_PARAM_STRENGTH, &strength); in IVirtualizer_SetStrength()
128 SLpermille strength = thiz->mStrength;; in IVirtualizer_GetRoundedStrength() local
136 VIRTUALIZER_PARAM_STRENGTH, &strength); in IVirtualizer_GetRoundedStrength()
141 *pStrength = strength; in IVirtualizer_GetRoundedStrength()
DIBassBoost.c89 static SLresult IBassBoost_SetStrength(SLBassBoostItf self, SLpermille strength) in IBassBoost_SetStrength() argument
93 if ((BASSBOOST_STRENGTH_MIN > strength) || (BASSBOOST_STRENGTH_MAX < strength)) { in IBassBoost_SetStrength()
99 thiz->mStrength = strength; in IBassBoost_SetStrength()
106 android_bb_setParam(thiz->mBassBoostEffect, BASSBOOST_PARAM_STRENGTH, &strength); in IBassBoost_SetStrength()
126 SLpermille strength = thiz->mStrength;; in IBassBoost_GetRoundedStrength() local
134 android_bb_getParam(thiz->mBassBoostEffect, BASSBOOST_PARAM_STRENGTH, &strength); in IBassBoost_GetRoundedStrength()
139 *pStrength = strength; in IBassBoost_GetRoundedStrength()
/frameworks/base/media/java/android/media/audiofx/
DBassBoost.java132 public void setStrength(short strength) in setStrength() argument
134 checkStatus(setParameter(PARAM_STRENGTH, strength)); in setStrength()
222 public short strength; field in BassBoost.Settings
248 strength = Short.parseShort(st.nextToken()); in Settings()
258 ";strength="+Short.toString(strength) in toString()
278 settings.strength = value[0]; in getProperties()
292 checkStatus(setParameter(PARAM_STRENGTH, settings.strength)); in setProperties()
DVirtualizer.java134 public void setStrength(short strength) in setStrength() argument
136 checkStatus(setParameter(PARAM_STRENGTH, strength)); in setStrength()
224 public short strength; field in Virtualizer.Settings
250 strength = Short.parseShort(st.nextToken()); in Settings()
260 ";strength="+Short.toString(strength) in toString()
280 settings.strength = value[0]; in getProperties()
294 checkStatus(setParameter(PARAM_STRENGTH, settings.strength)); in setProperties()
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/audio/
DMediaVirtualizerTest.java129 short strength = mVirtualizer.getRoundedStrength(); in test1_0Strength() local
132 ((float)strength > (float)TEST_STRENGTH * 0.9f) && in test1_0Strength()
133 ((float)strength < (float)TEST_STRENGTH * 1.1f)); in test1_0Strength()
135 short strength = mVirtualizer.getRoundedStrength(); in test1_0Strength() local
136 assertTrue(msg +": got incorrect strength", strength >= 0 && strength <= 1000); in test1_0Strength()
DMediaBassBoostTest.java128 short strength = mBassBoost.getRoundedStrength(); in test1_0Strength() local
131 ((float)strength > (float)TEST_STRENGTH * 0.9f) && in test1_0Strength()
132 ((float)strength < (float)TEST_STRENGTH * 1.1f)); in test1_0Strength()
134 short strength = mBassBoost.getRoundedStrength(); in test1_0Strength() local
135 assertTrue(msg +": got incorrect strength", strength >= 0 && strength <= 1000); in test1_0Strength()
/frameworks/native/opengl/libs/EGL/
Degl_display.cpp371 bool egl_display_t::HibernationMachine::incWakeCount(WakeRefStrength strength) { in incWakeCount() argument
377 if (strength == STRONG) in incWakeCount()
398 void egl_display_t::HibernationMachine::decWakeCount(WakeRefStrength strength) { in decWakeCount() argument
403 if (strength == STRONG) in decWakeCount()
/frameworks/wilhelm/tests/examples/
DslesTestBassBoostPath.cpp205 SLpermille strength = 0; in TestBassBoostPathFromFD() local
206 result = (*bbItf)->GetRoundedStrength(bbItf, &strength); in TestBassBoostPathFromFD()
208 fprintf(stdout, "Rounded strength of boost = %d\n", strength); in TestBassBoostPathFromFD()
DslesTestVirtualizerPath.cpp207 SLpermille strength = 0; in TestVirtualizerPathFromFD() local
208 result = (*virtItf)->GetRoundedStrength(virtItf, &strength); in TestVirtualizerPathFromFD()
210 fprintf(stdout, "Rounded strength of virt = %d\n", strength); in TestVirtualizerPathFromFD()
/frameworks/wilhelm/src/android/
Dandroid_Effect.cpp264 int16_t strength; in android_bb_init() local
266 BASSBOOST_PARAM_STRENGTH, &strength)) { in android_bb_init()
267 ibb->mStrength = (SLpermille) strength; in android_bb_init()
332 int16_t strength; in android_virt_init() local
334 VIRTUALIZER_PARAM_STRENGTH, &strength)) { in android_virt_init()
335 ivi->mStrength = (SLpermille) strength; in android_virt_init()
/frameworks/av/media/libeffects/lvm/wrapper/Bundle/
DEffectBundle.cpp1071 void BassSetStrength(EffectContext *pContext, uint32_t strength){ in BassSetStrength() argument
1074 pContext->pBundledContext->BassStrengthSaved = (int)strength; in BassSetStrength()
1087 ActiveParams.BE_EffectLevel = (LVM_INT16)((15*strength)/1000); in BassSetStrength()
1141 void VirtualizerSetStrength(EffectContext *pContext, uint32_t strength){ in VirtualizerSetStrength() argument
1146 pContext->pBundledContext->VirtStrengthSaved = (int)strength; in VirtualizerSetStrength()
1155 ActiveParams.CS_EffectLevel = (int)((strength*32767)/1000); in VirtualizerSetStrength()
1834 int16_t strength; in BassBoost_setParameter() local
1841 strength = *(int16_t *)pValue; in BassBoost_setParameter()
1844 BassSetStrength(pContext, (int32_t)strength); in BassBoost_setParameter()
1952 int16_t strength; in Virtualizer_setParameter() local
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/
DExpandHelper.java312 float strength = 1f / (1f + (float) Math.pow(Math.E, -1 * ((8f * stretch) - 5f))); in calculateGlow() local
313 if (DEBUG_GLOW) Slog.d(TAG, "stretch: " + stretch + " strength: " + strength); in calculateGlow()
314 return (GLOW_BASE + strength * (1f - GLOW_BASE)); in calculateGlow()
/frameworks/base/docs/html/guide/topics/sensors/
Dsensors_position.jd69 field strength values for each of the three coordinate axes during a single sensor event. Likewise,
88 <td>Geomagnetic field strength along the x axis.</td>
93 <td>Geomagnetic field strength along the y axis.</td>
97 <td>Geomagnetic field strength along the z axis.</td>
243 <p>This sensor provides raw field strength data (in &mu;T) for each of the three coordinate axes.
Dsensors_overview.jd103 properties, such as acceleration, geomagnetic field strength, or angular change. Software-based
/frameworks/base/docs/html/training/enterprise/
Ddevice-management-policy.jd41 such that it ensures a screen-lock password of sufficient strength is set up before displaying
48 cover screen-lock password strength, expiration timeout, encryption, etc.</p>
/frameworks/base/docs/html/design/get-started/
Dui-overview.jd70 strength, on the right. Swipe down from the status bar to show notification details.</p>
/frameworks/base/docs/html/about/versions/
Dandroid-2.2-highlights.jd280 that can control security features on the device, such as the minimum password strength, data wipe,
Dandroid-2.2.jd180 such as the minimum password strength, data wipe, and so on. Users can select
Dandroid-3.0-highlights.jd97 <p>Multitasking is a key strength of Android and it is central to the Android 3.0 experience. As us…
Dandroid-4.0-highlights.jd90 <p><strong>Multitasking</strong> is a key strength of Android and it's made even
/frameworks/wilhelm/include/SLES/
DOpenSLES.h2410 SLpermille strength
2499 SLpermille strength
/frameworks/base/docs/html/training/articles/
Dsecurity-tips.jd503 number generator significantly weakens the strength of the algorithm, and may
/frameworks/base/api/
Dcurrent.txt12692 field public short strength;
12842 field public short strength;