Home
last modified time | relevance | path

Searched refs:nh (Results 1 – 3 of 3) sorted by relevance

/libcore/luni/src/main/java/java/util/concurrent/
DSynchronousQueue.java276 boolean casHead(SNode h, SNode nh) { in casHead() argument
278 U.compareAndSwapObject(this, HEAD, h, nh); in casHead()
586 void advanceHead(QNode h, QNode nh) { in advanceHead() argument
588 U.compareAndSwapObject(this, HEAD, h, nh)) in advanceHead()
/libcore/luni/src/main/java/java/util/concurrent/locks/
DStampedLock.java1133 WNode nh = whead, np = wtail; in acquireRead() local
1134 if ((nh == h && np == p) || (h = nh) != (p = np)) in acquireRead()
/libcore/ojluni/src/main/java/java/util/
DGregorianCalendar.java1166 int nh = (h + amount) % unit; in roll() local
1167 if (nh < 0) { in roll()
1168 nh += unit; in roll()
1170 time += ONE_HOUR * (nh - h); in roll()