Searched refs:rest (Results 1 - 7 of 7) sorted by relevance
| /PHP_TRUNK/ext/ereg/regex/ |
| H A D | engine.c | 244 register unsigned char *rest; /* start of rest of string */ local 245 register unsigned char *tail; /* string unmatched by rest of RE */ 296 rest = slow(m, sp, stp, ss, es); 297 assert(rest != NULL); /* it did match */ 298 /* could the rest match the rest? */ 299 tail = slow(m, rest, stop, es, stopst); 303 stp = rest - 1; 309 if (slow(m, sp, rest, ssu [all...] |
| /PHP_TRUNK/ext/standard/tests/file/ |
| H A D | file.inc | 453 $name_prefix = prefix for the filename, rest of the name is incremental(increment by 1 only) 497 $link_name_prefix = prefix for the linkname, rest of the name is incremental(increment by 1 only)
|
| /PHP_TRUNK/ext/soap/ |
| H A D | php_sdl.c | 290 char *rest = strstr(s, "\r\n"); local 291 if (rest) { 294 rest += 2; 296 Z_STRLEN(new_header) = Z_STRLEN_PP(header) - (rest - s); 299 memcpy(Z_STRVAL(new_header) + (s - Z_STRVAL_PP(header)), rest, Z_STRLEN_PP(header) - (rest - Z_STRVAL_PP(header)) + 1); 2388 sdlRestrictionIntPtr *rest = (sdlRestrictionIntPtr *)data; local 2392 *prest = **rest; 2393 *rest = prest; 2399 sdlRestrictionCharPtr *rest local [all...] |
| /PHP_TRUNK/ext/standard/ |
| H A D | url_scanner_ex.c | 344 int rest; local 913 rest = YYLIMIT - start; 914 scdebug(("stopped in state %d at pos %d (%d:%c) %d\n", STATE, YYCURSOR - ctx->buf.c, *YYCURSOR, *YYCURSOR, rest)); 916 if (rest < 0) rest = 0; 918 if (rest) memmove(ctx->buf.c, start, rest); 919 ctx->buf.len = rest;
|
| H A D | url_scanner_ex.re | 280 int rest; 351 rest = YYLIMIT - start; 352 scdebug(("stopped in state %d at pos %d (%d:%c) %d\n", STATE, YYCURSOR - ctx->buf.c, *YYCURSOR, *YYCURSOR, rest)); 354 if (rest < 0) rest = 0; 356 if (rest) memmove(ctx->buf.c, start, rest); 357 ctx->buf.len = rest;
|
| /PHP_TRUNK/sapi/cgi/ |
| H A D | fastcgi.c | 1036 int ret, n, rest; local 1041 rest = len; 1042 while (rest > 0) { 1057 if (req->in_len >= rest) { 1058 ret = safe_read(req, str, rest); 1067 rest -= ret; 1333 int limit, rest; local 1344 rest = len; 1345 while (rest > 0) { 1357 if (rest < limi [all...] |
| /PHP_TRUNK/sapi/fpm/fpm/ |
| H A D | fastcgi.c | 664 int ret, n, rest; local 669 rest = len; 670 while (rest > 0) { 685 if (req->in_len >= rest) { 686 ret = safe_read(req, str, rest); 695 rest -= ret; 955 int limit, rest; local 1014 rest = pad ? 8 - pad : 0; 1017 fcgi_make_header(req->out_hdr, type, req->id, (len - pos) - rest); 1022 if (safe_write(req, str + pos, (len - pos) - rest) ! [all...] |
Completed in 14 milliseconds