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

/vbox/src/libs/liblzf-3.4/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);
/vbox/src/libs/liblzf-3.4/
H A Dlzf_c.c53 # define NEXT(v,p) (((v) << 8) | p[2]) macro
74 # define NEXT(v,p) ((v) << 5) ^ p[2]
156 hval = NEXT (hval, ip);
248 hval = NEXT (hval, ip);
253 hval = NEXT (hval, ip);
262 hval = NEXT (hval, ip);
/vbox/src/libs/zlib-1.2.6/examples/
H A Dgun.c154 #define NEXT() (have ? 0 : (have = in(indp, &next)), \ macro
177 if (NEXT() == -1) \
202 int last; /* last byte read by NEXT(), or -1 if EOF */
225 flags = NEXT();
248 if (NEXT() == -1) /* no compressed data is ok */
251 if (NEXT() == -1) /* missing a bit */
278 if (NEXT() == -1) { /* EOF is end of compressed data */
290 if (NEXT() == -1) /* can't end in middle of code */
401 if (NEXT() == -1) {
405 if (last != 31 || (NEXT() !
[all...]
/vbox/src/libs/libxml2-2.6.31/
H A Duri.c176 #define NEXT(p) ((*p == '%')? p += 3 : p++) macro
1125 NEXT(cur);
1161 NEXT(cur);
1236 NEXT(cur);
1239 NEXT(cur);
1294 while (IS_USERINFO(cur)) NEXT(cur);
1465 NEXT(cur);
1468 NEXT(cur);
1508 NEXT(cur);
1513 NEXT(cu
[all...]
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;
1229 NEXT;
1233 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.c231 * NEXT Skip to the next character, this does the proper decoding
263 #define NEXT xmlNextChar(ctxt) macro
2212 NEXT;
2460 NEXT;
2488 NEXT;
2504 NEXT;
2534 NEXT;
2540 NEXT;
2542 NEXT;
2548 NEXT;
[all...]
H A Dparser.c1629 * NEXT Skip to the next character, this does the proper decoding
1711 #define NEXT xmlNextChar(ctxt) macro
1751 * It's Okay to use CUR/NEXT here since all the blanks are on
1778 NEXT;
1870 * Using RAW/CUR/NEXT is okay since we are working on ASCII range here
1895 NEXT;
1899 /* on purpose to avoid reentrancy problems with NEXT and SKIP */
1922 NEXT;
1926 /* on purpose to avoid reentrancy problems with NEXT and SKIP */
2184 NEXT;
[all...]
H A Dxmlregexp.c50 #define NEXT ctxt->cur++ macro
4555 NEXT;
4558 NEXT;
4561 NEXT;
4564 NEXT;
4567 NEXT;
4570 NEXT;
4576 NEXT;
4579 NEXT;
4583 NEXT;
7814 #undef NEXT macro
7815 #define NEXT macro
[all...]
H A Dxpath.c2662 * NEXT Skip to the next character, this does the proper decoding
2680 while (IS_BLANK_CH(*(ctxt->cur))) NEXT
2683 #define NEXT ((*ctxt->cur) ? ctxt->cur++: ctxt->cur) macro
9819 NEXT;
10091 NEXT;
10100 NEXT;
10104 NEXT;
10111 NEXT;
10115 NEXT;
10118 NEXT;
[all...]

Completed in 140 milliseconds