/PHP-5.4/ext/standard/tests/streams/ |
H A D | bug63240.phpt | 7 $str = str_repeat('.', 8191) . $delimiter . "rest"; 17 string(4) "rest"
|
/PHP-5.4/ext/ereg/regex/ |
H A D | engine.c | 296 rest = slow(m, sp, stp, ss, es); 303 stp = rest - 1; 311 assert(dp == rest); 313 assert(sp == rest); 314 sp = rest; 327 stp = rest - 1; 350 sp = rest; 363 stp = rest - 1; 370 if (slow(m, sp, rest, ssub, esub) == rest) 384 assert(dp == rest); [all …]
|
/PHP-5.4/sapi/fpm/fpm/ |
H A D | fastcgi.c | 665 int ret, n, rest; in fcgi_read() local 670 rest = len; in fcgi_read() 671 while (rest > 0) { in fcgi_read() 686 if (req->in_len >= rest) { in fcgi_read() 687 ret = safe_read(req, str, rest); in fcgi_read() 696 rest -= ret; in fcgi_read() 956 int limit, rest; local 1015 rest = pad ? 8 - pad : 0; 1023 if (safe_write(req, str + pos, (len - pos) - rest) != (len - pos) - rest) { 1029 memcpy(req->out_pos, str + len - rest, rest); [all …]
|
/PHP-5.4/sapi/cgi/ |
H A D | fastcgi.c | 1044 int ret, n, rest; in fcgi_read() local 1049 rest = len; in fcgi_read() 1050 while (rest > 0) { in fcgi_read() 1075 rest -= ret; in fcgi_read() 1341 int limit, rest; local 1352 rest = len; 1353 while (rest > 0) { 1365 if (rest < limit) { 1372 rest -= limit; 1437 if (safe_write(req, str + pos, (len - pos) - rest) != (len - pos) - rest) { [all …]
|
/PHP-5.4/ext/standard/ |
H A D | url_scanner_ex.c | 344 int rest; in xx_mainloop() local 886 rest = YYLIMIT - start; in xx_mainloop() 887 …ed in state %d at pos %d (%d:%c) %d\n", STATE, YYCURSOR - ctx->buf.c, *YYCURSOR, *YYCURSOR, rest)); in xx_mainloop() 889 if (rest < 0) rest = 0; in xx_mainloop() 891 if (rest) memmove(ctx->buf.c, start, rest); in xx_mainloop() 892 ctx->buf.len = rest; in xx_mainloop()
|
H A D | url_scanner_ex.re | 280 int rest; 351 rest = YYLIMIT - start; 352 …ed 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-5.4/ext/dom/tests/ |
H A D | DOMComment_replaceData_basic.phpt | 17 // Replaces rest of string if count is greater than length of existing string
|
/PHP-5.4/sapi/cli/tests/ |
H A D | bug61679.phpt | 35 // the rest is not interesting
|
/PHP-5.4/tests/classes/ |
H A D | __set__get_001.phpt | 42 // the rest are fine...
|
/PHP-5.4/ext/standard/tests/array/ |
H A D | 009.phpt | 29 array(-1.5 => "test", -2 => "rest", 2.5 => "two", 428 string(4) "rest" 429 string(4) "rest" 450 string(4) "rest"
|
/PHP-5.4/ext/zlib/tests/ |
H A D | data.inc | 46 in the rest, we will resemble you in that. If a Jew wrong a 64 Or else worth all the rest; I see thee still,
|
/PHP-5.4/ext/standard/tests/url/ |
H A D | parse_url_basic_007.phpt | 112 --> /rest/Users?filter={"id":"123"} : string(11) "/rest/Users"
|
H A D | urls.inc | 92 '/rest/Users?filter={"id":"123"}',
|
H A D | parse_url_basic_004.phpt | 112 --> /rest/Users?filter={"id":"123"} : NULL
|
H A D | parse_url_basic_005.phpt | 112 --> /rest/Users?filter={"id":"123"} : NULL
|
H A D | parse_url_basic_006.phpt | 112 --> /rest/Users?filter={"id":"123"} : NULL
|
H A D | parse_url_basic_008.phpt | 112 --> /rest/Users?filter={"id":"123"} : string(19) "filter={"id":"123"}"
|
H A D | parse_url_basic_009.phpt | 112 --> /rest/Users?filter={"id":"123"} : NULL
|
H A D | parse_url_basic_001.phpt | 848 --> /rest/Users?filter={"id":"123"}: array(2) { 850 string(11) "/rest/Users"
|
H A D | parse_url_basic_002.phpt | 113 --> /rest/Users?filter={"id":"123"} : NULL
|
H A D | parse_url_basic_003.phpt | 112 --> /rest/Users?filter={"id":"123"} : NULL
|
/PHP-5.4/ext/standard/tests/strings/ |
H A D | str_replace_variation3.phpt | 17 string is used for the rest of replacement values */
|
/PHP-5.4/ext/oci8/tests/ |
H A D | conn_attr_4.phpt | 13 // Bug fixed in 11.2 prevents client_info being rest
|
/PHP-5.4/ext/soap/ |
H A D | php_sdl.c | 290 char *rest = strstr(s, "\r\n"); in sdl_set_uri_credentials() local 291 if (rest) { in sdl_set_uri_credentials() 294 rest += 2; in sdl_set_uri_credentials() 296 Z_STRLEN(new_header) = Z_STRLEN_PP(header) - (rest - s); in sdl_set_uri_credentials() 299 …memcpy(Z_STRVAL(new_header) + (s - Z_STRVAL_PP(header)), rest, Z_STRLEN_PP(header) - (rest - Z_STR… in sdl_set_uri_credentials() 2388 sdlRestrictionIntPtr *rest = (sdlRestrictionIntPtr *)data; in make_persistent_restriction_int() local 2392 *prest = **rest; in make_persistent_restriction_int() 2393 *rest = prest; in make_persistent_restriction_int() 2404 prest->value = strdup((*rest)->value); in make_persistent_restriction_char() 2405 prest->fixed = (*rest)->fixed; in make_persistent_restriction_char() [all …]
|
/PHP-5.4/ |
H A D | README.SELF-CONTAINED-EXTENSIONS | 112 As for the rest, you are currently alone here. There are a lot of existing
|