Home | History | Annotate | Download | only in concurrent

Lines Matching refs:pred

477             Node<E> next, pred = null;
478 for (Node<E> p = first(); p != null; pred = p, p = next) {
490 if (pred != null && next != null) // unlink
491 casNext(pred, p, next);
732 final Node<E> pred = nextNode;
733 if (pred == null) throw new NoSuchElementException();
735 lastRet = pred;
738 for (Node<E> p = succ(pred), q;; p = q) {
747 casNext(pred, p, q);