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

  /libcore/luni/src/main/java/java/util/concurrent/
CountDownLatch.java 158 int nextc = c-1; local
159 if (compareAndSetState(c, nextc))
160 return nextc == 0;
  /system/core/sh/
output.h 42 char *nextc; member in struct:output
76 #define outc(c, file) (--(file)->nleft < 0? (emptyoutbuf(file), *(file)->nextc++ = (c)) : (*(file)->nextc++ = (c)))
input.c 94 char *nextc; /* next char in buffer */ member in struct:parsefile
104 char *parsenextc; /* copy of parsefile->nextc */
124 basepf.nextc = basepf.buf = basebuf;
507 parsefile->nextc = parsenextc;
534 parsenextc = parsefile->nextc;
jobs.c 1397 char *nextc; local
1405 nextc = cmdnextc;
1477 *nextc++ = c;
1482 *nextc++ = '"';
1486 cmdnextc = nextc;
init.c 917 char *nextc; /* next char in buffer */ member in struct:parsefile
960 basepf.nextc = basepf.buf = basebuf;
  /libcore/luni/src/main/java/java/util/concurrent/locks/
ReentrantLock.java 114 int nextc = c + acquires; local
115 if (nextc < 0) // overflow
117 setState(nextc);
218 int nextc = c + acquires; local
219 if (nextc < 0)
221 setState(nextc);
ReentrantReadWriteLock.java 346 int nextc = getState() - releases; local
347 boolean free = exclusiveCount(nextc) == 0;
350 setState(nextc);
408 int nextc = c - SHARED_UNIT; local
409 if (compareAndSetState(c, nextc))
413 return nextc == 0;
    [all...]
  /packages/inputmethods/LatinIME/native/src/
unigram_dictionary.cpp 639 const int32_t nextc = hasMultipleChars local
641 const bool isLastChar = (NOT_A_CHARACTER == nextc);
669 // will take care of prefetching the next. If we finally found our last char, nextc will
671 c = nextc;
    [all...]
  /external/icu4c/i18n/
rematch.cpp 3578 UChar32 nextc = UTEXT_CURRENT32(fInputText); local
    [all...]

Completed in 3379 milliseconds