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

  /libcore/ojluni/src/main/java/java/util/concurrent/
CountDownLatch.java 183 int nextc = c - 1; local
184 if (compareAndSetState(c, nextc))
185 return nextc == 0;
  /libcore/ojluni/src/main/java/java/util/concurrent/locks/
ReentrantLock.java 140 int nextc = c + acquires; local
141 if (nextc < 0) // overflow
143 setState(nextc);
243 int nextc = c + acquires; local
244 if (nextc < 0)
246 setState(nextc);
ReentrantReadWriteLock.java 374 int nextc = getState() - releases; local
375 boolean free = exclusiveCount(nextc) == 0;
378 setState(nextc);
436 int nextc = c - SHARED_UNIT; local
437 if (compareAndSetState(c, nextc))
441 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/ltp/testcases/kernel/controllers/cpuset/cpuset_lib/
libbitmask.c 276 * the matched unsigned number. If it is 2, then 'nextc' is the first
284 static int scan_was_ok(int sret, char nextc, const char *ok_next_chars)
286 return sret == 1 || (sret == 2 && strchr(ok_next_chars, nextc) != NULL);
311 char nextc; /* char after sscanf %u match */ local
314 sret = sscanf(p, "%u%c", &a, &nextc);
315 if (!scan_was_ok(sret, nextc, ",-"))
322 sret = sscanf(c1, "%u%c", &b, &nextc);
323 if (!scan_was_ok(sret, nextc, ",:"))
327 sret = sscanf(c1, "%u%c", &s, &nextc);
328 if (!scan_was_ok(sret, nextc, ","))
    [all...]
  /external/openssh/openbsd-compat/
vis.c 62 vis(char *dst, int c, int flag, int nextc)
110 if (isoctal(nextc)) {
  /prebuilts/go/darwin-x86/src/encoding/base64/
base64_test.go 354 // and with the errors as written to nextc.
357 nextc <-chan nextRead
361 nr := <-r.nextc
379 nextc: next,
  /prebuilts/go/linux-x86/src/encoding/base64/
base64_test.go 354 // and with the errors as written to nextc.
357 nextc <-chan nextRead
361 nr := <-r.nextc
379 nextc: next,
  /prebuilts/go/darwin-x86/src/fmt/
scan.go 1136 nextc, _ := utf8.DecodeRuneInString(format[i+w:]) // will not match % if string is empty
1137 if nextc != '%' {
  /prebuilts/go/linux-x86/src/fmt/
scan.go 1136 nextc, _ := utf8.DecodeRuneInString(format[i+w:]) // will not match % if string is empty
1137 if nextc != '%' {
  /external/icu/icu4c/source/i18n/
rematch.cpp 3444 UChar32 nextc = UTEXT_CURRENT32(fInputText); local
    [all...]

Completed in 168 milliseconds