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

  /external/zlib/examples/
gun.c 89 unsigned char *next; local
92 next = me->inbuf;
93 *buf = next;
99 ret = (int)read(me->infile, next, ret);
104 next += ret;
150 /* next input byte macro for use inside lunpipe() and gunpipe() */
151 #define NEXT() (have ? 0 : (have = in(indp, &next)), \
152 last = have ? (have--, (int)(*next++)) : -1)
174 if (NEXT() == -1)
378 unsigned char *next; local
    [all...]
  /external/elfutils/lib/
dynamicsizehash.h 30 # define NEXT(name) struct name##_ent *next;
33 # define NEXT(name)
47 NEXT (name) \
88 /* Get next element in table. */ \
106 # undef NEXT
  /external/openssl/crypto/md5/asm/
md5-x86_64.pl 17 # %r11d = z' (copy of z for the next step)
23 $code .= " mov 0*4(%rsi), %r10d /* (NEXT STEP) X[0] */\n" if ($pos == -1);
24 $code .= " mov %edx, %r11d /* (NEXT STEP) z' = %edx */\n" if ($pos == -1);
30 mov $k_next*4(%rsi),%r10d /* (NEXT STEP) X[$k_next] */
33 mov $y, %r11d /* (NEXT STEP) z' = $y */
41 # %r11d = y' (copy of y for the next step)
47 $code .= " mov 1*4(%rsi), %r10d /* (NEXT STEP) X[1] */\n" if ($pos == -1);
48 $code .= " mov %ecx, %r11d /* (NEXT STEP) y' = %ecx */\n" if ($pos == -1);
54 mov $k_next*4(%rsi),%r10d /* (NEXT STEP) X[$k_next] */
57 mov $x, %r11d /* (NEXT STEP) y' = $x *
    [all...]
  /external/libxml2/
pattern.c 106 struct _xmlStreamCtxt *next;/* link to next sub pattern if | */ member in struct:_xmlStreamCtxt
164 struct _xmlPattern *next; /* next pattern if | is used */ member in struct:_xmlPattern
234 if (comp->next != NULL)
235 xmlFreePattern(comp->next);
271 comp = comp->next;
272 cur->next = NULL;
558 lst = lst->next;
719 while (IS_BLANK_CH(CUR)) NEXT
1788 xmlStreamCtxtPtr next; local
    [all...]
xmlregexp.c 50 #define NEXT ctxt->cur++
290 int nextbranch; /* the next transition to explore in that state */
6357 xmlExpNodePtr next;\/* the next node in the hash table or free list *\/ member in struct:_xmlExpNode
    [all...]
HTMLparser.c 220 * NXT(n) returns the n'th next xmlChar. Same as CUR is should be used only
222 * UPP(n) returns the n'th next xmlChar converted to uppercase. Same as CUR
231 * NEXT Skip to the next character, this does the proper decoding
263 #define NEXT xmlNextChar(ctxt)
4618 xmlChar cur, next; local
    [all...]
xpath.c 915 cur = cur->next;
11948 xmlXPathTraversalFunction next = NULL; local
    [all...]
parser.c 6938 xmlNodePtr nw = NULL, cur, next, last, local
10483 xmlChar cur, next; local
    [all...]
xpointer.c 140 for (i = 0;cur != NULL;cur = cur->next) {
185 for (i = 0;i <= no;cur = cur->next) {
890 * NXT(n) returns the n'th next xmlChar. Same as CUR is should be used only
896 * NEXT Skip to the next character, this does the proper decoding
907 while (IS_BLANK_CH(*(ctxt->cur))) NEXT
910 #define NEXT ((*ctxt->cur) ? ctxt->cur++: ctxt->cur)
991 NEXT;
1007 NEXT;
1015 NEXT;
    [all...]
catalog.c 131 struct _xmlCatalogEntry *next; member in struct:_xmlCatalogEntry
281 ret->next = NULL;
362 xmlCatalogEntryPtr next; local
365 next = ret->next;
367 ret = next;
380 xmlCatalogEntryPtr children, next; local
387 next = children->next;
391 children = next;
    [all...]
  /external/bison/lib/
bbitset.h 268 *NEXT. Return with actual number of bits found and with *NEXT
270 #define BITSET_LIST_(BSET, LIST, NUM, NEXT) \
271 (BSET)->b.vtable->list (BSET, LIST, NUM, NEXT)
274 including NEXT. Return with actual number of bits found and with
275 *NEXT indicating where search stopped. */
276 #define BITSET_LIST_REVERSE_(BSET, LIST, NUM, NEXT) \
277 (BSET)->b.vtable->list_reverse (BSET, LIST, NUM, NEXT)
bitset.h 93 bitset_bindex next; member in struct:__anon816
270 *NEXT. Return with actual number of bits found and with *NEXT
272 #define bitset_list(BSET, LIST, NUM, NEXT) \
273 BITSET_LIST_ (BSET, LIST, NUM, NEXT)
276 including NEXT. Return with actual number of bits found and with
277 *NEXT indicating where search stopped. */
278 #define bitset_list_reverse(BSET, LIST, NUM, NEXT) \
279 BITSET_LIST_REVERSE_ (BSET, LIST, NUM, NEXT)
284 /* Find next set bit from the given bit index. *
    [all...]
  /packages/apps/Browser/src/com/android/browser/widget/
BookmarkWidgetService.java 56 /** Change the widget to the next bookmark. */
57 private static final String NEXT = "com.android.browser.widget.NEXT";
159 } else if (NEXT.equals(action) && mIdList.size() > 1) {
160 int next = getNextId(intent); local
161 if (next == NO_ID) {
162 Log.d(TAG, "Could not determine next id");
165 RenderResult res = mIdsToResults.get(next);
243 Intent next = new Intent(NEXT, null, this, BookmarkWidgetService.class) local
    [all...]
  /external/netcat/
generic.h 358 #ifdef NEXT
  /bionic/libc/private/isc/
list.h 28 #define LINK(type) struct { type *prev, *next; }
32 (elt)->link.next = (type *)(-1); \
50 (elt)->link.next = (list).head; \
58 (list).tail->link.next = (elt); \
62 (elt)->link.next = NULL; \
69 if ((elt)->link.next != NULL) \
70 (elt)->link.next->link.prev = (elt)->link.prev; \
74 (elt)->link.prev->link.next = (elt)->link.next; \
76 (list).head = (elt)->link.next; \
    [all...]
  /bionic/libc/regex/
regcomp.c 56 char *next; /* next character in RE */ member in struct:parse
113 #define PEEK() (*p->next)
114 #define PEEK2() (*(p->next+1))
115 #define MORE() (p->next < p->end)
116 #define MORE2() (p->next+1 < p->end)
119 #define EAT(c) ((SEE(c)) ? (NEXT(), 1) : 0)
121 #define NEXT() (p->next++)
122 #define NEXT2() (p->next += 2
    [all...]
  /packages/apps/Mms/src/com/android/mms/dom/smil/
SmilPlayer.java 63 NEXT,
292 return mAction == SmilPlayerAction.NEXT;
363 public synchronized void next() { method in class:SmilPlayer
365 mAction = SmilPlayerAction.NEXT;
  /external/qemu/android/
hw-events.h 341 KEY_CODE(NEXT ,0x197) \
  /packages/apps/Music/src/com/android/music/
MediaPlaybackService.java 65 * the new list of files right away, next or once all the currently
69 public static final int NEXT = 2;
93 public static final String CMDNEXT = "next";
98 public static final String NEXT_ACTION = "com.android.music.musicservicecommand.next";
184 next(true);
198 next(false);
220 next(true);
488 // Make sure we don't auto-skip to the next song, since that
496 // the "current" file, goes to the next and: playback starts on its
592 next(true)
1221 public void next(boolean force) { method in class:MediaPlaybackService
1882 public void next() { method in class:MediaPlaybackService.ServiceStub
    [all...]
  /external/v8/test/mjsunit/
unicode-test.js     [all...]

Completed in 451 milliseconds