Home | History | Annotate | Download | only in concurrent

Lines Matching refs:oldValue

583                 long oldValue = map.put(key, delta);
584 threadSum += delta - oldValue;
587 oldValue = map.get(key);
588 if (map.replace(key, oldValue, delta)) {
589 threadSum += delta - oldValue;
593 oldValue = map.remove(key);
594 threadSum -= oldValue;
597 oldValue = map.get(key);
598 if (map.remove(key, oldValue)) {
599 threadSum -= oldValue;