Searched refs:newval (Results 1 – 2 of 2) sorted by relevance
855 final F[] newval = Arrays.copyOf(val, val.length); in copyInto() local856 for (int j = 0; j < newval.length; j++) { in copyInto()857 newval[j] = snapshot(newval[j]); in copyInto()859 l.put(key, newval); in copyInto()
6246 static void printBitDescriptions(StringBuilder sb, int oldval, int newval, in printBitDescriptions() argument6248 int diff = oldval ^ newval; in printBitDescriptions()6256 sb.append((newval & bd.mask) != 0 ? "+" : "-"); in printBitDescriptions()6273 int val = (newval&bd.mask)>>bd.shift; in printBitDescriptions()