Searched refs:adj (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowAnimationSpec.java183 float adj = 0.25f;
184 while (adj >= 0.01f) {
186 val += adj;
188 val -= adj;
190 adj /= 2;
/frameworks/base/services/core/java/com/android/server/am/
H A DProcessRecord.java129 // When true the process will oom adj score will be set to
135 // performance, as well as oom adj score will be set to
170 int adjTypeCode; // Debugging: adj code to report to app.
619 int modifyRawOomAdj(int adj) { argument
626 if (adj < ProcessList.FOREGROUND_APP_ADJ) {
628 } else if (adj < ProcessList.VISIBLE_APP_ADJ) {
629 adj = ProcessList.VISIBLE_APP_ADJ;
630 } else if (adj < ProcessList.PERCEPTIBLE_APP_ADJ) {
631 adj = ProcessList.PERCEPTIBLE_APP_ADJ;
632 } else if (adj < ProcessLis
[all...]
H A DActivityManagerService.java1577 * Keep track of the number of cached hidden procs, to balance oom adj
6074 // Note that we always want to do oom adj to update our state with the
7097 // Skip process if it doesn't meet our oom adj requirement.
12244 // adj level. Not sure what to do about this, but at least
14812 int adj = proc.setAdj;
14813 if (adj >= worstType && !proc.killedByAm) {
14859 final int adj = proc.setAdj;
14860 if (adj > belowAdj && !proc.killedByAm) {
15881 int adj = app.curAdj;
15883 outInfo.importance = procStateToImportance(procState, adj, outInf
17534 printOomLevel(PrintWriter pw, String name, int adj) argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/settings/
H A DBrightnessController.java419 private void setBrightnessAdj(float adj) { argument
420 mDisplayManager.setTemporaryAutoBrightnessAdjustment(adj);
/frameworks/base/services/core/java/com/android/server/display/
H A DDisplayPowerController.java1467 final float adj = Settings.System.getFloatForUser(mContext.getContentResolver(),
1469 return Float.isNaN(adj) ? 0.0f : clampAutoBrightnessAdjustment(adj);
/frameworks/rs/driver/runtime/
H A Drs_cl.c1274 float adj = 1.f + r + (r2 * 0.5f) + (r2*r * 0.166666f) + (r2*r2 * 0.0416666f); local
1275 return fo * adj;
1289 float2 adj = 1.f + r + (r2 * 0.5f) + (r2*r * 0.166666f) + (r2*r2 * 0.0416666f); local
1290 return fo * adj;
1304 float4 adj = 1.f + r + (r2 * 0.5f) + (r2*r * 0.166666f) + (r2*r2 * 0.0416666f); local
1305 return fo * adj;
/frameworks/base/media/java/android/media/
H A DAudioManager.java426 public static final String adjustToString(int adj) { argument
427 switch (adj) {
434 default: return new StringBuilder("unknown adjust mode ").append(adj).toString();

Completed in 128 milliseconds