Searched refs:level (Results 151 - 175 of 371) sorted by relevance

1234567891011>>

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiNetworkSelector.java268 if ((scanResult.is24GHz() && scanResult.level
270 || (scanResult.is5GHz() && scanResult.level
274 .append(")").append(scanResult.level).append(" / ");
/frameworks/wilhelm/tests/examples/
H A DslesTestEqFdPath.cpp221 fprintf(stdout, "Band level range = %dmB to %dmB\n", minLevel, maxLevel);
233 SLmillibel level = 0; local
235 result = (*eqItf)->GetBandLevel(eqItf, b, &level);
237 fprintf(stdout, "Band %d level = %dmB\n", b, level);
H A DslesTestEqOutputPath.cpp225 fprintf(stdout, "Band level range = %dmB to %dmB\n", minLevel, maxLevel);
237 SLmillibel level = 0; local
239 result = (*eqOutputItf)->GetBandLevel(eqOutputItf, b, &level);
241 fprintf(stdout, "Band %d level = %dmB\n", b, level);
H A DslesTestSendToPresetReverb.cpp57 SLpermille level; local
58 result = (*caller)->GetFillLevel(caller, &level);
64 && (level == 0) && (status == SL_PREFETCHSTATUS_UNDERFLOW)) {
258 /* Feed the output mix' reverb from the audio player using the given send level */
265 fprintf(stdout, "Set direct level to %dmB\n", directLevel);
269 fprintf(stdout, "Set send level to %dmB\n", sendLevel);
336 fprintf(stdout, "(sendLevel in mB), with a given direct level (in mB).\n");
/frameworks/wilhelm/tests/listening/
H A DslesTest_playMuteSolo.cpp74 SLpermille level; local
75 result = (*caller)->GetFillLevel(caller, &level);
82 && level == 0 && status == SL_PREFETCHSTATUS_UNDERFLOW) {
/frameworks/wilhelm/tests/sandbox/
H A Dmultiplay.c97 SLpermille level; local
98 result = (*caller)->GetFillLevel(caller, &level);
103 //fprintf(stderr, "PrefetchEventCallback: received event %u, level %u, status %u\n",
104 // event, level, status);
106 && (level == 0) && (status == SL_PREFETCHSTATUS_UNDERFLOW)) {
173 printf("default mix volume level = %d\n", mixVolumeLevelDefault);
/frameworks/av/include/media/
H A DMediaCodecInfo.h83 void addProfileLevel(uint32_t profile, uint32_t level);
/frameworks/av/media/libmedia/include/media/
H A DMediaCodecInfo.h83 void addProfileLevel(uint32_t profile, uint32_t level);
/frameworks/av/media/libstagefright/codecs/amrwb/src/
H A Ddtx.h134 int16 level; member in struct:__anon541
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_macroblock_layer.h147 i32 level[26][16]; member in struct:__anon754
H A Dh264bsd_cavlc.c759 i32 level[16]; local
800 level[i] = bit & tmp ? -1 : 1;
849 level[i] = (tmp+2)>>1;
854 if ((level[i] > (3 << (suffixLength - 1))) && suffixLength < 6)
858 level[i] = -level[i];
893 /* combining level and run, levelSuffix variable used to hold coeffMap,
896 /*lint -esym(771,level,run) level and run are always initialized */
898 coeffLevel[tmp] = level[totalCoef
[all...]
/frameworks/base/libs/hwui/
H A DDisplayList.h131 virtual void output(std::ostream& output, uint32_t level);
H A DRenderProperties.cpp114 void RenderProperties::debugOutputProperties(std::ostream& output, const int level) const {
115 auto indent = std::string(level * 2, ' ');
/frameworks/base/media/java/android/media/
H A DPlayerBase.java216 int baseSetAuxEffectSendLevel(float level) { argument
218 mAuxEffectSendLevel = level;
223 return playerSetAuxEffectSendLevel(false/*muting*/, level);
398 abstract int playerSetAuxEffectSendLevel(boolean muting, float level); argument
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/
H A DUtils.java137 int level = batteryChangedIntent.getIntExtra(BatteryManager.EXTRA_LEVEL, 0);
139 return (level * 100) / scale;
280 * @param level The number of bars to show (0-4)
288 public static LayerDrawable getBadgedWifiIcon(Context context, int level, int badge) { argument
291 context.getDrawable(WIFI_PIE_FOR_BADGING[level]),
/frameworks/base/packages/SystemUI/src/com/android/systemui/power/
H A DPowerUI.java128 * Buckets the battery level.
131 * the bucket going up when the battery level was going down. --joeo
137 private int findBatteryLevelBucket(int level) { argument
138 if (level >= mLowBatteryAlertCloseLevel) {
141 if (level > mLowBatteryReminderLevels[0]) {
146 if (level <= mLowBatteryReminderLevels[i]) {
189 Slog.d(TAG, "level " + oldBatteryLevel + " --> " + mBatteryLevel);
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgePowerManager.java140 public boolean isWakeLockLevelSupported(int level) throws RemoteException { argument
/frameworks/native/cmds/installd/
H A DCacheItem.cpp34 level = p->fts_level;
/frameworks/wilhelm/tests/mimeUri/
H A DslesTestSlowDownUri.cpp113 SLpermille level = 0; local
114 result = (*caller)->GetFillLevel(caller, &level);
120 fprintf(stdout, "\t\tPrefetchEventCallback: Buffer fill level is = %d\n", level);
127 && level == 0 && status == SL_PREFETCHSTATUS_UNDERFLOW) {
265 /* Configure fill level updates every 5 percent */
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
H A DVolumeDialogImpl.java390 final int level = progress == 0 ? 0
392 return level;
450 final boolean wasZero = row.ss.level == 0;
456 if (row.ss.level == 0) {
461 final boolean vmute = row.ss.level == row.ss.levelMin;
725 if (ss.level > 0) {
726 row.lastAudibleLevel = ss.level;
728 if (ss.level == row.requestedLevel) {
766 : mAutomute && ss.level == 0 ? row.iconMuteRes
806 if (ss.muted || mAutomute && ss.level
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/api/
H A DarmVC.h297 * Performs filling of the coefficient buffer according to the run, level
303 * [in] sign Flag indicating the sign of level
330 * Performs escape mode decision based on the run, run+, level, level+ and
345 * [in] runBeginSingleLevelEntriesL0 The run value from which level
350 * [in] runBeginSingleLevelEntriesL1 The run value from which level
422 * The run value after which level
426 * The run value after which level
492 * [in] level Level value (non-zero value) to be encoded
495 * levelPlus = sign(level)*[ab
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/api/
H A DarmVC.h297 * Performs filling of the coefficient buffer according to the run, level
303 * [in] sign Flag indicating the sign of level
330 * Performs escape mode decision based on the run, run+, level, level+ and
345 * [in] runBeginSingleLevelEntriesL0 The run value from which level
350 * [in] runBeginSingleLevelEntriesL1 The run value from which level
422 * The run value after which level
426 * The run value after which level
492 * [in] level Level value (non-zero value) to be encoded
495 * levelPlus = sign(level)*[ab
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/api/
H A DarmVC.h297 * Performs filling of the coefficient buffer according to the run, level
303 * [in] sign Flag indicating the sign of level
330 * Performs escape mode decision based on the run, run+, level, level+ and
345 * [in] runBeginSingleLevelEntriesL0 The run value from which level
350 * [in] runBeginSingleLevelEntriesL1 The run value from which level
422 * The run value after which level
426 * The run value after which level
492 * [in] level Level value (non-zero value) to be encoded
495 * levelPlus = sign(level)*[ab
[all...]
/frameworks/base/core/java/android/app/
H A DApplication.java130 public void onTrimMemory(int level) { argument
136 ((ComponentCallbacks2)c).onTrimMemory(level);
/frameworks/base/media/java/android/media/audiofx/
H A DEqualizer.java53 * Band level range. Parameter ID for OnParameterChangeListener
57 * Band level. Parameter ID for OnParameterChangeListener
124 * @param priority the priority level requested by the application for controlling the Equalizer
189 * Gets the level range for use by {@link #setBandLevel(short,short)}. The level is expressed in
191 * @return the band level range in an array of short integers. The first element is the lower
208 * @param level new gain in millibels that will be set to the given band. getBandLevelRange()
215 public void setBandLevel(short band, short level) argument
222 value[0] = level;
382 * @param param2 additional parameter qualifier (e.g the band for band level paramete
[all...]

Completed in 795 milliseconds

1234567891011>>