Home
last modified time | relevance | path

Searched refs:newval (Results 1 – 4 of 4) sorted by relevance

/aosp14/frameworks/base/services/core/java/com/android/server/
H A DIntentResolver.java835 final F[] newval = Arrays.copyOf(val, val.length); in copyInto() local
836 for (int j = 0; j < newval.length; j++) { in copyInto()
837 newval[j] = snapshot(newval[j]); in copyInto()
839 l.put(key, newval); in copyInto()
/aosp14/system/core/debuggerd/crasher/
H A Dcrasher.cpp49 typedef int (__kuser_cmpxchg_t)(int oldval, int newval, volatile int *ptr);
/aosp14/frameworks/base/core/java/com/android/internal/os/
H A DBatteryStatsHistory.java1273 private void recordTraceCounters(int oldval, int newval, BitDescription[] descriptions) { in recordTraceCounters() argument
1274 int diff = oldval ^ newval; in recordTraceCounters()
1283 value = (newval & bd.mask) != 0 ? 1 : 0; in recordTraceCounters()
1285 value = (newval & bd.mask) >> bd.shift; in recordTraceCounters()
/aosp14/frameworks/base/core/java/android/os/
H A DBatteryStats.java6776 static void printBitDescriptions(StringBuilder sb, int oldval, int newval, in printBitDescriptions() argument
6778 int diff = oldval ^ newval; in printBitDescriptions()
6786 sb.append((newval & bd.mask) != 0 ? "+" : "-"); in printBitDescriptions()
6804 int val = (newval&bd.mask)>>bd.shift; in printBitDescriptions()