Searched defs:NEXT (Results 1 - 25 of 35) sorted by relevance

12

/external/elfutils/lib/
H A Ddynamicsizehash.h66 # define NEXT(name) struct name##_ent *next; macro
69 # define NEXT(name) macro
83 NEXT (name) \
142 # undef NEXT macro
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/
H A DImageFactory.java37 NEXT = getImage("next24.png");
75 public ImageIcon NEXT; field in class:ImageFactory
/external/liblzf/cs/
H A DCLZF.cs134 UInt32 NEXT(UInt32 v,byte[] Array,UInt32 ptr) method in class:LZF.NET.CLZF
177 hval = NEXT (hval, in_data,iidx);
229 hval = NEXT (hval,in_data, iidx);
233 hval = NEXT (hval, in_data,iidx);
/external/liblzf/
H A Dlzf_c.c49 # define NEXT(v,p) (((v) << 8) | p[2]) macro
70 # define NEXT(v,p) ((v) << 5) ^ p[2]
144 hval = NEXT (hval, ip);
235 hval = NEXT (hval, ip);
240 hval = NEXT (hval, ip);
249 hval = NEXT (hval, ip);
/external/liblzf/src/org/liblzf/
H A DCLZF.java134 static int NEXT(int v,byte[] Array,int ptr) method in class:CLZF
177 hval = NEXT (hval, in_data,iidx);
229 hval = NEXT (hval,in_data, iidx);
233 hval = NEXT (hval, in_data,iidx);
/external/objenesis/main/src/org/objenesis/instantiator/basic/
H A DObjectInputStreamInstantiator.java47 private static final int[] NEXT = new int[] {1, 2, 2}; field in class:ObjectInputStreamInstantiator.MockStream
115 sequence = NEXT[sequence];
/external/chromium_org/third_party/zlib/
H A Dgzread.c67 #define NEXT() ((strm->avail_in == 0 && gz_avail(state) == -1) ? -1 : \ macro
81 val = NEXT();
82 val += (unsigned)NEXT() << 8;
83 val += (unsigned long)NEXT() << 16;
84 ch = NEXT();
161 if (NEXT() != 8) { /* compression method */
165 flags = NEXT();
170 NEXT(); /* modification time */
171 NEXT();
172 NEXT();
[all...]
/external/zlib/src/examples/
H A Dgun.c155 #define NEXT() (have ? 0 : (have = in(indp, &next)), \ macro
178 if (NEXT() == -1) \
203 int last; /* last byte read by NEXT(), or -1 if EOF */
226 flags = NEXT();
249 if (NEXT() == -1) /* no compressed data is ok */
252 if (NEXT() == -1) /* missing a bit */
279 if (NEXT() == -1) { /* EOF is end of compressed data */
291 if (NEXT() == -1) /* can't end in middle of code */
402 if (NEXT() == -1) {
406 if (last != 31 || (NEXT() !
[all...]
/external/chromium_org/third_party/libxml/src/
H A Duri.c95 #define NEXT(p) ((*p == '%')? p += 3 : p++) macro
225 NEXT(cur);
261 NEXT(cur);
332 NEXT(cur);
445 NEXT(cur);
529 NEXT(cur);
H A Dxpointer.c896 * 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) macro
991 NEXT;
1007 NEXT;
1014 NEXT;
1018 NEXT;
1081 NEXT;
1231 NEXT;
1235 NEXT;
[all...]
H A Dcatalog.c2141 #define NEXT cur++; macro
2144 #define SKIP_BLANKS while (IS_BLANK_CH(*cur)) NEXT;
2160 NEXT;
2187 NEXT;
2190 NEXT;
2217 NEXT;
2230 NEXT;
H A Dpattern.c719 while (IS_BLANK_CH(CUR)) NEXT
722 #define NEXT ((*ctxt->cur) ? ctxt->cur++: ctxt->cur) macro
757 NEXT;
776 NEXT;
903 NEXT;
927 NEXT;
939 NEXT;
975 NEXT;
1020 NEXT;
1034 NEXT;
[all...]
H A DHTMLparser.c288 * NEXT Skip to the next character, this does the proper decoding
320 #define NEXT xmlNextChar(ctxt) macro
2365 NEXT;
2613 NEXT;
2641 NEXT;
2657 NEXT;
2687 NEXT;
2693 NEXT;
2695 NEXT;
2701 NEXT;
[all...]
H A Dparser.c1798 * NEXT Skip to the next character, this does the proper decoding
1880 #define NEXT xmlNextChar(ctxt) macro
1920 * It's Okay to use CUR/NEXT here since all the blanks are on
1947 NEXT;
2044 * Using RAW/CUR/NEXT is okay since we are working on ASCII range here
2071 NEXT;
2075 /* on purpose to avoid reentrancy problems with NEXT and SKIP */
2100 NEXT;
2104 /* on purpose to avoid reentrancy problems with NEXT and SKIP */
2363 NEXT;
[all...]
/external/libxml2/
H A Duri.c95 #define NEXT(p) ((*p == '%')? p += 3 : p++) macro
225 NEXT(cur);
261 NEXT(cur);
332 NEXT(cur);
445 NEXT(cur);
529 NEXT(cur);
H A Dxpointer.c896 * 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) macro
991 NEXT;
1007 NEXT;
1015 NEXT;
1025 NEXT;
1088 NEXT;
1238 NEXT;
1242 NEXT;
[all...]
H A Dcatalog.c2138 #define NEXT cur++; macro
2141 #define SKIP_BLANKS while (IS_BLANK_CH(*cur)) NEXT;
2157 NEXT;
2184 NEXT;
2187 NEXT;
2214 NEXT;
2227 NEXT;
H A Dpattern.c719 while (IS_BLANK_CH(CUR)) NEXT
722 #define NEXT ((*ctxt->cur) ? ctxt->cur++: ctxt->cur) macro
757 NEXT;
776 NEXT;
903 NEXT;
927 NEXT;
939 NEXT;
975 NEXT;
1020 NEXT;
1034 NEXT;
[all...]
H A DHTMLparser.c288 * NEXT Skip to the next character, this does the proper decoding
320 #define NEXT xmlNextChar(ctxt) macro
2365 NEXT;
2613 NEXT;
2641 NEXT;
2657 NEXT;
2687 NEXT;
2693 NEXT;
2695 NEXT;
2701 NEXT;
[all...]
/external/chromium_org/third_party/libxslt/libxslt/
H A Dpattern.c1231 while (IS_BLANK_CH(CUR)) NEXT
1234 #define NEXT ((*ctxt->cur) ? ctxt->cur++: ctxt->cur) macro
1271 NEXT;
1287 NEXT;
1381 NEXT;
1393 NEXT;
1402 NEXT;
1414 NEXT;
1426 NEXT;
1430 NEXT;
[all...]
H A Dxslt.c6752 while (IS_BLANK(CUR)) NEXT
6753 #define NEXT ((*cur) ? cur++ : cur) macro
6786 NEXT;
6790 NEXT;
6793 NEXT;
6797 NEXT;
6813 NEXT;
6817 NEXT;
6820 NEXT;
6825 NEXT;
[all...]
/external/libxslt/libxslt/
H A Dpattern.c1231 while (IS_BLANK_CH(CUR)) NEXT
1234 #define NEXT ((*ctxt->cur) ? ctxt->cur++: ctxt->cur) macro
1271 NEXT;
1287 NEXT;
1381 NEXT;
1393 NEXT;
1402 NEXT;
1414 NEXT;
1426 NEXT;
1430 NEXT;
[all...]
H A Dxslt.c6752 while (IS_BLANK(CUR)) NEXT
6753 #define NEXT ((*cur) ? cur++ : cur) macro
6786 NEXT;
6790 NEXT;
6793 NEXT;
6797 NEXT;
6813 NEXT;
6817 NEXT;
6820 NEXT;
6825 NEXT;
[all...]
/external/llvm/lib/Support/
H A Dregcomp.c120 #define EAT(c) ((SEE(c)) ? (NEXT(), 1) : 0)
122 #define NEXT() (p->next++) macro
418 NEXT();
455 NEXT();
626 NEXT();
784 NEXT();
812 NEXT();
874 NEXT();
/external/opencv/cv/src/
H A DmycvHaarDetectObjects.cpp456 #define NEXT(n, i) (((n) + (i)/(n)) >> 1) macro
460 unsigned int n1 = NEXT(n, number);
464 n1 = NEXT(n, number);

Completed in 610 milliseconds

12