HomeSort by relevance Sort by last modified time
    Searched defs:nextc (Results 1 - 16 of 16) 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/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/icu/icu4c/source/i18n/
rematch.cpp 3444 UChar32 nextc = UTEXT_CURRENT32(fInputText); local
    [all...]
  /prebuilts/misc/common/robolectric/android-all/
android-all-4.1.2_r1-robolectric-r1.jar 
android-all-4.2.2_r1.2-robolectric-r1.jar 
android-all-4.3_r2-robolectric-r1.jar 
android-all-4.4_r1-robolectric-r2.jar 
android-all-5.0.2_r3-robolectric-r0.jar 
android-all-5.1.1_r9-robolectric-r2.jar 
android-all-6.0.1_r3-robolectric-r1.jar 
android-all-7.0.0_r1-robolectric-0.jar 
android-all-7.0.0_r1-robolectric-r1.jar 
android-all-7.1.0_r7-robolectric-0.jar 
android-all-7.1.0_r7-robolectric-r1.jar 

Completed in 635 milliseconds