HomeSort by relevance Sort by last modified time
    Searched defs:casHead (Results 1 - 5 of 5) sorted by null

  /libcore/luni/src/main/java/java/util/concurrent/
ConcurrentLinkedQueue.java 273 if (h != p && casHead(h, p))
780 private boolean casHead(Node<E> cmp, Node<E> val) {
ConcurrentLinkedDeque.java 346 casHead(h, newNode); // Failure is OK.
585 if (casHead(h, p))
729 || casHead(h, p))
    [all...]
LinkedTransferQueue.java 543 private boolean casHead(Node cmp, Node val) {
592 if (head == h && casHead(h, n == null ? q : n)) {
634 if (casHead(null, s))
    [all...]
SynchronousQueue.java 274 boolean casHead(SNode h, SNode nh) {
327 casHead(h, h.next); // pop cancelled node
330 } else if (casHead(h, s = snode(s, e, h, mode))) {
337 casHead(h, s.next); // help s's fulfiller
342 casHead(h, h.next); // pop and retry
343 else if (casHead(h, s=snode(s, e, h, FULFILLING|mode))) {
347 casHead(s, null); // pop fulfill node
353 casHead(s, mn); // pop both s and m
362 casHead(h, null); // pop fulfilling node
366 casHead(h, mn); // pop both h and
    [all...]
ConcurrentSkipListMap.java 352 private boolean casHead(HeadIndex<K,V> cmp, HeadIndex<K,V> val) {
    [all...]

Completed in 37 milliseconds