/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/ |
D | post_filter.cpp | 189 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() 311 … strength = STRENGTH_tab[(annex_T ? MQ_chroma_QP_table[QP_store[mbnum]] : QP_store[mbnum])]; in H263_Deblock() 315 …strength = STRENGTH_tab[(annex_T ? MQ_chroma_QP_table[QP_store[mbnum - nMBPerRow]] : QP_store[mbn… in H263_Deblock() [all …]
|
/frameworks/base/media/java/android/media/audiofx/ |
D | BassBoost.java | 125 public void setStrength(short strength) in setStrength() argument 127 checkStatus(setParameter(PARAM_STRENGTH, strength)); in setStrength() 215 public short strength; field in BassBoost.Settings 241 strength = Short.parseShort(st.nextToken()); in Settings() 251 ";strength="+Short.toString(strength) in toString() 271 settings.strength = value[0]; in getProperties() 285 checkStatus(setParameter(PARAM_STRENGTH, settings.strength)); in setProperties()
|
D | Virtualizer.java | 151 public void setStrength(short strength) in setStrength() argument 153 checkStatus(setParameter(PARAM_STRENGTH, strength)); in setStrength() 556 public short strength; field in Virtualizer.Settings 582 strength = Short.parseShort(st.nextToken()); in Settings() 592 ";strength="+Short.toString(strength) in toString() 612 settings.strength = value[0]; in getProperties() 626 checkStatus(setParameter(PARAM_STRENGTH, settings.strength)); in setProperties()
|
/frameworks/wilhelm/src/itf/ |
D | IBassBoost.c | 89 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()
|
D | IVirtualizer.c | 91 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()
|
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/audio/ |
D | MediaVirtualizerTest.java | 129 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()
|
D | MediaBassBoostTest.java | 128 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/ |
D | egl_display.cpp | 394 bool egl_display_t::HibernationMachine::incWakeCount(WakeRefStrength strength) { in incWakeCount() argument 400 if (strength == STRONG) in incWakeCount() 421 void egl_display_t::HibernationMachine::decWakeCount(WakeRefStrength strength) { in decWakeCount() argument 426 if (strength == STRONG) in decWakeCount()
|
/frameworks/wilhelm/tests/examples/ |
D | slesTestBassBoostPath.cpp | 205 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()
|
D | slesTestVirtualizerPath.cpp | 207 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/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/ |
D | NetworkControllerSignalTest.java | 429 int strength = SignalStrength.SIGNAL_STRENGTH_GREAT; in testCarrierNetworkChange_carrierNetworkChange() local 432 setLevel(strength); in testCarrierNetworkChange_carrierNetworkChange() 436 TelephonyIcons.TELEPHONY_SIGNAL_STRENGTH[1][strength] /* strengthIcon */, in testCarrierNetworkChange_carrierNetworkChange() 452 TelephonyIcons.TELEPHONY_SIGNAL_STRENGTH[1][strength] /* strengthIcon */, in testCarrierNetworkChange_carrierNetworkChange()
|
/frameworks/wilhelm/src/android/ |
D | android_Effect.cpp | 275 int16_t strength; in android_bb_init() local 277 BASSBOOST_PARAM_STRENGTH, &strength)) { in android_bb_init() 278 ibb->mStrength = (SLpermille) strength; in android_bb_init() 343 int16_t strength; in android_virt_init() local 345 VIRTUALIZER_PARAM_STRENGTH, &strength)) { in android_virt_init() 346 ivi->mStrength = (SLpermille) strength; in android_virt_init()
|
/frameworks/av/media/libeffects/lvm/wrapper/Bundle/ |
D | EffectBundle.cpp | 1232 void BassSetStrength(EffectContext *pContext, uint32_t strength){ in BassSetStrength() argument 1235 pContext->pBundledContext->BassStrengthSaved = (int)strength; in BassSetStrength() 1248 ActiveParams.BE_EffectLevel = (LVM_INT16)((15*strength)/1000); in BassSetStrength() 1304 void VirtualizerSetStrength(EffectContext *pContext, uint32_t strength){ in VirtualizerSetStrength() argument 1309 pContext->pBundledContext->VirtStrengthSaved = (int)strength; in VirtualizerSetStrength() 1318 ActiveParams.CS_EffectLevel = (int)((strength*32767)/1000); in VirtualizerSetStrength() 1320 ALOGV("\tVirtualizerSetStrength() (0-1000) -> %d\n", strength ); in VirtualizerSetStrength() 2075 int16_t strength; in BassBoost_setParameter() local 2082 strength = *(int16_t *)pValue; in BassBoost_setParameter() 2085 BassSetStrength(pContext, (int32_t)strength); in BassBoost_setParameter() [all …]
|
/frameworks/base/docs/html/guide/topics/sensors/ |
D | sensors_position.jd | 71 field strength values for each of the three coordinate axes during a single sensor event. Likewise, 118 <td>Geomagnetic field strength along the x axis.</td> 123 <td>Geomagnetic field strength along the y axis.</td> 127 <td>Geomagnetic field strength along the z axis.</td> 132 <td>Geomagnetic field strength (without hard iron calibration) along the x axis.</td> 137 <td>Geomagnetic field strength (without hard iron calibration) along the y axis.</td> 141 <td>Geomagnetic field strength (without hard iron calibration) along the z axis.</td> 346 <p>This sensor provides raw field strength data (in μT) for each of the three coordinate axes.
|
D | sensors_overview.jd | 103 properties, such as acceleration, geomagnetic field strength, or angular change. Software-based
|
/frameworks/base/docs/html/training/enterprise/ |
D | device-management-policy.jd | 41 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/packages/SystemUI/docs/ |
D | demo_mode.md | 39 … | | ```level``` | Sets mobile signal strength level (null or 0-4)
|
/frameworks/base/docs/html/design/handhelds/ |
D | index.jd | 78 strength, on the right. Swipe down from the status bar to show notification details.</p>
|
/frameworks/base/docs/html/distribute/users/ |
D | your-listing.jd | 116 Many developers start in their country of strength, then expand into new
|
/frameworks/base/docs/html/about/versions/ |
D | android-2.2-highlights.jd | 280 that can control security features on the device, such as the minimum password strength, data wipe,
|
D | android-2.2.jd | 180 such as the minimum password strength, data wipe, and so on. Users can select
|
D | android-3.0-highlights.jd | 97 <p>Multitasking is a key strength of Android and it is central to the Android 3.0 experience. As us…
|
D | android-4.0-highlights.jd | 90 <p><strong>Multitasking</strong> is a key strength of Android and it's made even
|
/frameworks/wilhelm/include/SLES/ |
D | OpenSLES.h | 2410 SLpermille strength 2499 SLpermille strength
|
/frameworks/base/docs/html/training/articles/ |
D | security-tips.jd | 513 number generator significantly weakens the strength of the algorithm, and may
|