| /PHP_5_5/TSRM/ |
| H A D | tsrm_config_common.h | 58 # define tsrm_do_alloca_ex(size, limit, use_heap) \ 59 ((use_heap = ((size) > (limit))) ? malloc(size) : alloca(size))
|
| /PHP_5_5/ext/sockets/tests/ |
| H A D | mcast_helpers.php.inc | 2 function checktimeout($sock, $limit) { 5 if (socket_select($readfs, $writefs, $exceptfs, 0, $limit*1000) != 1) {
|
| /PHP_5_5/ext/spl/internal/ |
| H A D | infiniteiterator.inc | 26 $limit = new LimitIterator($infinite, 0, 5); 27 foreach($limit as $val=>$key)
|
| H A D | limititerator.inc | 33 * @param it Iterator to limit
|
| /PHP_5_5/ext/sqlite3/libsqlite/ |
| H A D | sqlite3ext.h | 190 int (*limit)(sqlite3*,int,int); member in struct:sqlite3_api_routines 390 #define sqlite3_limit sqlite3_api->limit
|
| /PHP_5_5/win32/ |
| H A D | glob.c | 439 size_t limit = 0; local 497 if ((err = glob1(patbuf, patbuf+MAXPATHLEN-1, pglob, &limit)) != 0) 510 return(globextend(pattern, pglob, &limit));
|
| H A D | select.c | 39 DWORD ms_total, limit; local 100 limit = GetTickCount() + ms_total; 152 } while (retcode == 0 && (ms_total == INFINITE || GetTickCount() < limit));
|
| /PHP_5_5/ext/intl/transliterator/ |
| H A D | transliterator_methods.c | 309 limit = -1; local 321 &arg1, &str, &str_len, &start, &limit ) == FAILURE ) 357 &str, &str_len, &start, &limit ) == FAILURE ) 364 if( limit < -1 ) 372 if( start < 0 || ((limit != -1 ) && (start > limit )) ) 390 if( ( start > ustr_len ) || (( limit != -1 ) && (limit > ustr_len ) ) ) 412 int32_t temp_limit = ( limit == -1 ? ustr_len : (int32_t) limit ); [all...] |
| /PHP_5_5/ext/mbstring/libmbfl/filters/ |
| H A D | mbfilter_cp5022x.c | 491 const int limit = cp932ext3_ucs_table_size > local 495 for (i = 0; i < limit; i++) { 723 const int limit = cp932ext3_ucs_table_size > local 727 for (i = 0; i < limit; i++) { 870 const int limit = cp932ext3_ucs_table_size > local 874 for (i = 0; i < limit; i++) {
|
| /PHP_5_5/Zend/ |
| H A D | zend_builtin_functions.h | 28 ZEND_API void zend_fetch_debug_backtrace(zval *return_value, int skip_last, int options, int limit TSRMLS_DC);
|
| H A D | zend_builtin_functions.c | 231 ZEND_ARG_INFO(0, limit) 2056 /* {{{ proto void debug_print_backtrace([int options[, int limit]]) */ 2069 long limit = 0; local 2071 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|ll", &options, &limit) == FAILURE) { 2080 while (ptr && (limit == 0 || frameno < limit)) { 2225 ZEND_API void zend_fetch_debug_backtrace(zval *return_value, int skip_last, int options, int limit TSRMLS_DC) 2249 while (ptr && (limit == 0 || frameno < limit)) { 2395 /* {{{ proto array debug_backtrace([int options[, int limit]]) 2400 long limit = 0; local [all...] |
| H A D | zend_alloc.c | 428 size_t limit; member in struct:_zend_mm_heap 1119 heap->limit = ZEND_MM_LONG_CONST(1)<<(ZEND_MM_NUM_BUCKETS-2); 1745 size_t limit, 1777 limit, 1788 limit, 1940 if (!best_fit && heap->real_size >= heap->limit - heap->block_size) { 1969 heap->real_size + segment_size > heap->limit) { 1970 /* Memory limit overflow */ 1976 zend_mm_safe_error(heap, "Allowed memory size of %ld bytes exhausted at %s:%d (tried to allocate %lu bytes)", heap->limit, __zend_filename, __zend_lineno, size); 1978 zend_mm_safe_error(heap, "Allowed memory size of %ld bytes exhausted (tried to allocate %lu bytes)", heap->limit, siz 1743 zend_mm_safe_error(zend_mm_heap *heap, const char *format, size_t limit, const char *filename, uint lineno, size_t size) argument [all...] |
| /PHP_5_5/ext/pcre/ |
| H A D | php_pcre.h | 36 PHPAPI char *php_pcre_replace(char *regex, int regex_len, char *subject, int subject_len, zval *replace_val, int is_callable_replace, int *result_len, int limit, int *replace_count TSRMLS_DC); 61 int is_callable_replace, int *result_len, int limit, int *replace_count TSRMLS_DC);
|
| H A D | php_pcre.c | 431 * If we reached cache limit, clean out the items from the head of the list; 988 int *result_len, int limit, int *replace_count TSRMLS_DC) 998 is_callable_replace, result_len, limit, replace_count TSRMLS_CC); 1004 int is_callable_replace, int *result_len, int limit, int *replace_count TSRMLS_DC) 1105 if (count > 0 && (limit == -1 || limit > 0)) { 1192 if (limit != -1) 1193 limit--; 1195 } else if (count == PCRE_ERROR_NOMATCH || limit == 0) { 1246 static char *php_replace_in_subject(zval *regex, zval *replace, zval **subject, int *result_len, int limit, in argument 985 php_pcre_replace(char *regex, int regex_len, char *subject, int subject_len, zval *replace_val, int is_callable_replace, int *result_len, int limit, int *replace_count TSRMLS_DC) argument 1003 php_pcre_replace_impl(pcre_cache_entry *pce, char *subject, int subject_len, zval *replace_val, int is_callable_replace, int *result_len, int limit, int *replace_count TSRMLS_DC) argument 1344 long limit = -1; local [all...] |
| /PHP_5_5/ext/posix/ |
| H A D | posix.c | 1214 static int posix_addlimit(int limit, char *name, zval *return_value TSRMLS_DC) { argument 1223 result = getrlimit(limit, &rl); 1248 int limit; member in struct:limitlist 1315 if (posix_addlimit(l->limit, l->name, return_value TSRMLS_CC) == FAILURE) {
|
| /PHP_5_5/ext/session/ |
| H A D | mod_mm.c | 415 time_t limit; local 422 time(&limit); 424 limit -= maxlifetime; 432 if (sd->ctime < limit) {
|
| /PHP_5_5/ext/standard/ |
| H A D | php_string.h | 141 PHPAPI void php_explode(zval *delim, zval *str, zval *return_value, long limit);
|
| H A D | file.c | 2023 char *temp, *tptr, *bptr, *line_end, *limit; local 2038 line_end = limit = tptr; 2055 inc_len = (bptr < limit ? (*bptr == '\0' ? 1: php_mblen(bptr, limit - bptr)): 0); 2117 if ((size_t)temp_len > (size_t)(limit - buf)) { 2134 line_end = limit = (char *)php_fgetcsv_lookup_trailing_spaces(buf, buf_len, delimiter TSRMLS_CC); 2135 line_end_len = buf_len - (size_t)(limit - buf); 2199 inc_len = (bptr < limit ? (*bptr == '\0' ? 1: php_mblen(bptr, limit - bptr)): 0); 2223 inc_len = (bptr < limit [all...] |
| H A D | var_unserializer.c | 200 #define YYLIMIT limit 416 const unsigned char *cursor, *limit, *marker, *start; local 419 limit = max;
|
| H A D | var_unserializer.re | 198 #define YYLIMIT limit 420 const unsigned char *cursor, *limit, *marker, *start; 423 limit = max;
|
| /PHP_5_5/main/ |
| H A D | rfc1867.c | 707 sapi_module.sapi_error(E_WARNING, "POST Content-Length of %ld bytes exceeds the limit of %ld bytes", SG(request_info).content_length, SG(post_max_size)); 885 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Input variables exceeded %ld. To increase the limit change max_input_vars in php.ini.", PG(max_input_vars));
|
| /PHP_5_5/sapi/cgi/ |
| H A D | fastcgi.c | 1257 fprintf(stderr, "Too many open file descriptors. FD_SETSIZE limit exceeded."); 1333 int limit, rest; local 1346 limit = sizeof(req->out_buf) - (req->out_pos - req->out_buf); 1349 if (limit < sizeof(fcgi_header)) { 1356 limit = sizeof(req->out_buf) - (req->out_pos - req->out_buf); 1357 if (rest < limit) { 1362 memcpy(req->out_pos, str, limit); 1363 req->out_pos += limit; 1364 rest -= limit; 1365 str += limit; [all...] |
| /PHP_5_5/sapi/fpm/fpm/ |
| H A D | fastcgi.c | 879 zlog(ZLOG_ERROR, "Too many open file descriptors. FD_SETSIZE limit exceeded."); 955 int limit, rest; local 966 limit = sizeof(req->out_buf) - (req->out_pos - req->out_buf); 968 limit -= sizeof(fcgi_header); 969 if (limit < 0) limit = 0; 972 if (len < limit) { 978 } else if (len - limit < sizeof(req->out_buf) - sizeof(fcgi_header)) { 982 if (limit > 0) { 983 memcpy(req->out_pos, str, limit); [all...] |
| /PHP_5_5/ext/spl/ |
| H A D | spl_iterators.c | 1360 intern->u.limit.offset = 0; /* start at beginning */ 1361 intern->u.limit.count = -1; /* get all */ 1362 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "O|ll", &zobject, ce_inner, &intern->u.limit.offset, &intern->u.limit.count) == FAILURE) { 1366 if (intern->u.limit.offset < 0) { 1371 if (intern->u.limit.count < 0 && intern->u.limit.count != -1) { 2384 if (intern->u.limit.count != -1 && intern->current.pos >= intern->u.limit.offset + intern->u.limit [all...] |
| H A D | spl_iterators.h | 144 } limit; member in union:_spl_dual_it_object::__anon24
|