HomeSort by relevance Sort by last modified time
    Searched refs:nextc (Results 1 - 6 of 6) 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 111 int nextc = c + acquires; local
112 if (nextc < 0) // overflow
114 setState(nextc);
214 int nextc = c + acquires; local
215 if (nextc < 0)
217 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/openssh/openbsd-compat/
vis.c 57 vis(char *dst, int c, int flag, int nextc)
104 if (isoctal(nextc)) {
  /external/icu/icu4c/source/i18n/
rematch.cpp 3443 UChar32 nextc = UTEXT_CURRENT32(fInputText); local
    [all...]

Completed in 1690 milliseconds