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

  /libcore/luni/src/main/java/java/util/concurrent/
CountDownLatch.java 154 int nextc = c - 1; local
155 if (compareAndSetState(c, nextc))
156 return nextc == 0;
  /libcore/luni/src/main/java/java/util/concurrent/locks/
ReentrantLock.java 113 int nextc = c + acquires; local
114 if (nextc < 0) // overflow
116 setState(nextc);
219 int nextc = c + acquires; local
220 if (nextc < 0)
222 setState(nextc);
ReentrantReadWriteLock.java 345 int nextc = getState() - releases; local
346 boolean free = exclusiveCount(nextc) == 0;
349 setState(nextc);
407 int nextc = c - SHARED_UNIT; local
408 if (compareAndSetState(c, nextc))
412 return nextc == 0;
    [all...]
  /external/libedit/src/
vis.c 139 do_hvis(wchar_t *dst, wint_t c, int flags, wint_t nextc, const wchar_t *extra)
147 dst = do_svis(dst, c, flags, nextc, extra);
162 do_mvis(wchar_t *dst, wint_t c, int flags, wint_t nextc, const wchar_t *extra)
166 ((iswspace(c) && (nextc == L'\r' || nextc == L'\n')) ||
175 dst = do_svis(dst, c, flags, nextc, extra);
183 do_mbyte(wchar_t *dst, wint_t c, int flags, wint_t nextc, int iswextra)
213 if (iswoctal(nextc)) {
260 * nextc: The character following 'c'
265 do_svis(wchar_t *dst, wint_t c, int flags, wint_t nextc, const wchar_t *extra
    [all...]
  /external/icu/icu4c/source/i18n/
rematch.cpp 3450 UChar32 nextc = UTEXT_CURRENT32(fInputText); local
    [all...]

Completed in 276 milliseconds