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

  /libcore/luni/src/main/java/java/util/concurrent/
CountDownLatch.java 153 int nextc = c-1; local
154 if (compareAndSetState(c, nextc))
155 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)))
output.c 111 file->nextc = block;
152 dest->nextc = out_junk;
158 dest->nextc = dest->buf;
167 dest->nextc = dest->buf + offset;
188 if (dest->buf == NULL || dest->nextc == dest->buf || dest->fd < 0)
190 if (xwrite(dest->fd, dest->buf, dest->nextc - dest->buf) < 0)
192 dest->nextc = dest->buf;
249 strout.nextc = outbuf;
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;
error.c 133 if (output.nextc != output.buf && output.nextc[-1] == '\n')
eval.c 982 memout.nextc = memout.buf;
1050 backcmd->nleft = memout.nextc - memout.buf;
init.c 917 char *nextc; /* next char in buffer */ member in struct:parsefile
960 basepf.nextc = basepf.buf = basebuf;
jobs.c 1397 char *nextc; local
1405 nextc = cmdnextc;
1477 *nextc++ = c;
1482 *nextc++ = '"';
1486 cmdnextc = nextc;
  /libcore/luni/src/main/java/java/util/concurrent/locks/
ReentrantLock.java 110 int nextc = c + acquires; local
111 if (nextc < 0) // overflow
113 setState(nextc);
213 int nextc = c + acquires; local
214 if (nextc < 0)
216 setState(nextc);
ReentrantReadWriteLock.java 344 int nextc = getState() - releases; local
345 boolean free = exclusiveCount(nextc) == 0;
348 setState(nextc);
406 int nextc = c - SHARED_UNIT; local
407 if (compareAndSetState(c, nextc))
411 return nextc == 0;
    [all...]
  /external/openssh/openbsd-compat/
vis.c 57 vis(char *dst, int c, int flag, int nextc)
104 if (isoctal(nextc)) {
  /external/icu4c/i18n/
rematch.cpp 3408 UChar32 nextc = UTEXT_CURRENT32(fInputText); local
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
rematch.cpp 3541 UChar32 nextc = UTEXT_CURRENT32(fInputText); local
    [all...]

Completed in 347 milliseconds