Home
last modified time | relevance | path

Searched refs:limit (Results 101 – 125 of 135) sorted by path

123456

/PHP-5.5/ext/spl/tests/
H A Dbug61453.phpt5 $limit = 1000;
7 for($i = 0; $i < $limit; $i++){
/PHP-5.5/ext/sqlite3/libsqlite/
H A Dsqlite3.c59896 int limit;
59899 limit = pOld->nCell+pOld->nOverflow;
59901 for(j=0; j<limit; j++){
59911 for(j=0; j<limit; j++){
102062 int (*limit)(sqlite3*,int,int);
102300 #define sqlite3_limit sqlite3_api->limit
130539 int limit = 0;
130550 limit = mask;
130565 limit = mask & flags;
130584 if( (mode & ~SQLITE_OPEN_MEMORY)>limit ){
H A Dsqlite3ext.h207 int (*limit)(sqlite3*,int,int); member
445 #define sqlite3_limit sqlite3_api->limit
/PHP-5.5/ext/standard/
H A Dbasic_functions.c2211 ZEND_ARG_INFO(0, limit)
H A Dfile.c2049 char *temp, *tptr, *bptr, *line_end, *limit; in php_fgetcsv() local
2064 line_end = limit = tptr; in php_fgetcsv()
2081 inc_len = (bptr < limit ? (*bptr == '\0' ? 1: php_mblen(bptr, limit - bptr)): 0); in php_fgetcsv()
2143 if ((size_t)temp_len > (size_t)(limit - buf)) { in php_fgetcsv()
2160 … line_end = limit = (char *)php_fgetcsv_lookup_trailing_spaces(buf, buf_len, delimiter TSRMLS_CC); in php_fgetcsv()
2161 line_end_len = buf_len - (size_t)(limit - buf); in php_fgetcsv()
2225 inc_len = (bptr < limit ? (*bptr == '\0' ? 1: php_mblen(bptr, limit - bptr)): 0); in php_fgetcsv()
2249 inc_len = (bptr < limit ? (*bptr == '\0' ? 1: php_mblen(bptr, limit - bptr)): 0); in php_fgetcsv()
2280 inc_len = (bptr < limit ? (*bptr == '\0' ? 1: php_mblen(bptr, limit - bptr)): 0); in php_fgetcsv()
H A Dphp_string.h141 PHPAPI void php_explode(zval *delim, zval *str, zval *return_value, long limit);
H A Dstring.c1029 PHPAPI void php_explode(zval *delim, zval *str, zval *return_value, long limit) in php_explode() argument
1045 --limit > 1); in php_explode()
1055 PHPAPI void php_explode_negative_limit(zval *delim, zval *str, zval *return_value, long limit) in php_explode_negative_limit() argument
1084 to_return = limit + found; in php_explode_negative_limit()
1104 long limit = LONG_MAX; /* No limit */ in PHP_FUNCTION() local
1107 …meters(ZEND_NUM_ARGS() TSRMLS_CC, "ss|l", &delim, &delim_len, &str, &str_len, &limit) == FAILURE) { in PHP_FUNCTION()
1119 if (limit >= 0) { in PHP_FUNCTION()
1127 if (limit > 1) { in PHP_FUNCTION()
1128 php_explode(&zdelim, &zstr, return_value, limit); in PHP_FUNCTION()
1129 } else if (limit < 0) { in PHP_FUNCTION()
[all …]
H A Dvar_unserializer.c241 #define YYLIMIT limit
471 const unsigned char *cursor, *limit, *marker, *start; in php_var_unserialize() local
474 limit = max; in php_var_unserialize()
H A Dvar_unserializer.re239 #define YYLIMIT limit
475 const unsigned char *cursor, *limit, *marker, *start;
478 limit = max;
/PHP-5.5/ext/standard/tests/http/
H A Dbug38802.phpt104 Warning: fopen(http://127.0.0.1:12342/foo/bar): failed to open stream: Redirection limit reached, a…
115 Warning: fopen(http://127.0.0.1:12342/foo/bar): failed to open stream: Redirection limit reached, a…
123 Warning: fopen(http://127.0.0.1:12342/foo/bar): failed to open stream: Redirection limit reached, a…
/PHP-5.5/ext/standard/tests/mail/
H A Dezmlm_hash_variation1.phpt6 /* Prototype : array explode ( string $delimiter , string $string [, int $limit ] )
74 $limit = 5;
77 var_dump( explode($delimiter, $string, $limit) );
/PHP-5.5/ext/standard/tests/network/
H A Dbug68925.phpt9 Warning: gethostbyname(): Host name is too long, the limit is %d characters in %s%ebug68925.php on …
12 Warning: gethostbynamel(): Host name is too long, the limit is %d characters in %s%ebug68925.php on…
/PHP-5.5/ext/standard/tests/strings/
H A Dexplode1.phpt8 /* Prototype: array explode ( string $delimiter, string $string [, int $limit] );
11 If limit is set, the returned array will contain a maximum of limit
50 echo "\n-- Passing limit values 0 and 1 to explode() --\n";
54 /* to check the maximum limit of string that can be given with limit<=0,
56 echo "\n*** Testing explode() for maximum limit of string with Limit = -1 ***\n";
329 -- Passing limit values 0 and 1 to explode() --
339 *** Testing explode() for maximum limit of string with Limit = -1 ***
H A Dexplode_error.phpt6 /* Prototype : array explode ( string $delimiter , string $string [, int $limit ] )
19 $limit = 5;
21 var_dump( explode($delimiter, $string, $limit, $extra_arg) );
H A Dexplode_variation1.phpt6 /* Prototype : array explode ( string $delimiter , string $string [, int $limit ] )
74 $limit = 5;
77 var_dump( explode($delimiter, $string, $limit) );
H A Dexplode_variation2.phpt6 /* Prototype : array explode ( string $delimiter , string $string [, int $limit ] )
74 $limit = 5;
77 var_dump( explode($delimiter, $string, $limit) );
H A Dexplode_variation3.phpt2 Test explode() function : usage variations - test values for $limit argument
6 /* Prototype : array explode ( string $delimiter , string $string [, int $limit ] )
11 echo "*** Testing explode() function: with unexpected inputs for 'limit' argument ***\n";
75 foreach($limits as $limit) {
77 var_dump( explode($delimiter, $string, $limit) );
86 *** Testing explode() function: with unexpected inputs for 'limit' argument ***
H A Dexplode_variation4.phpt6 /* Prototype : array explode ( string $delimiter , string $string [, int $limit ] )
H A Dexplode_variation5.phpt6 /* Prototype : array explode ( string $delimiter , string $string [, int $limit ] )
14 echo "\n-- positive limit --\n";
17 echo "\n-- negative limit (since PHP 5.1) --\n";
20 echo "\n-- negative limit (since PHP 5.1) with null string -- \n";
27 -- positive limit --
35 -- negative limit (since PHP 5.1) --
45 -- negative limit (since PHP 5.1) with null string --
H A Dexplode_variation6.phpt15 echo "\n-- positive limit with null separator --\n";
24 echo "\n-- limit = 0 --\n";
27 echo "\n-- limit = -1 --\n";
30 echo "\n-- large limit = -100 --\n";
33 function test_explode($delim, $string, $limit)
35 $e = explode($delim, $string, $limit);
46 -- positive limit with null separator --
50 -- negative limit (since PHP 5.1) with null separator --
57 -- limit = 0 --
60 -- limit = -1 --
[all …]
/PHP-5.5/
H A Dphp.ini-development392 ; http://php.net/memory-limit
951 ;PCRE library backtracking limit.
952 ; http://php.net/pcre.backtrack-limit
955 ;PCRE library recursion limit.
958 ;stack size limit imposed by the Operating System).
959 ; http://php.net/pcre.recursion-limit
1043 ; Maximum number of persistent links. -1 means no limit.
1068 ; Maximum number of persistent links. -1 means no limit.
1108 ; Maximum number of persistent links. -1 means no limit.
1167 ; Maximum number of links. -1 means no limit.
[all …]
H A Dphp.ini-production392 ; http://php.net/memory-limit
951 ;PCRE library backtracking limit.
952 ; http://php.net/pcre.backtrack-limit
955 ;PCRE library recursion limit.
958 ;stack size limit imposed by the Operating System).
959 ; http://php.net/pcre.recursion-limit
1043 ; Maximum number of persistent links. -1 means no limit.
1068 ; Maximum number of persistent links. -1 means no limit.
1108 ; Maximum number of persistent links. -1 means no limit.
1167 ; Maximum number of links. -1 means no limit.
[all …]
/PHP-5.5/sapi/caudium/
H A DTODO4 - configurable limit of number of concurrent PHP executions
/PHP-5.5/sapi/cgi/
H A Dfastcgi.c1344 int limit, rest; local
1368 if (rest < limit) {
1374 req->out_pos += limit;
1375 rest -= limit;
1376 str += limit;
1387 if (limit < 0) limit = 0;
1390 if (len < limit) {
1400 if (limit > 0) {
1402 req->out_pos += limit;
1407 if (len > limit) {
[all …]
/PHP-5.5/sapi/cli/tests/
H A D006.phpt83 Parameter #3 [ <optional> $limit ]
93 Parameter #3 [ <optional> $limit ]
103 Parameter #3 [ <optional> $limit ]
112 Parameter #2 [ <optional> $limit ]

Completed in 439 milliseconds

123456