Home
last modified time | relevance | path

Searched refs:MIN (Results 51 – 75 of 91) sorted by relevance

1234

/PHP-7.4/Zend/
H A Dzend_alloc.c1152 #ifndef MIN
1153 # define MIN(a, b) (((a) < (b)) ? (a) : (b)) macro
1510 …return zend_mm_realloc_slow(heap, ptr, size, MIN(old_size, copy_size) ZEND_FILE_LINE_RELAY_CC ZEND…
1553 copy_size = use_copy_size ? MIN(size, copy_size) : size;
1568 copy_size = use_copy_size ? MIN(old_size, copy_size) : old_size;
1662 copy_size = MIN(old_size, copy_size);
H A Dzend_execute.h214 used_stack += func->op_array.last_var + func->op_array.T - MIN(func->op_array.num_args, num_args); in zend_vm_calc_used_stack()
H A Dzend_exceptions.c521 smart_str_append_escaped(str, Z_STRVAL_P(arg), MIN(Z_STRLEN_P(arg), 15)); in _build_trace_args()
H A Dzend_execute_API.c1206 zend_quiet_write(2, log_buffer, MIN(output_len, sizeof(log_buffer))); in zend_timeout_handler()
H A Dzend_builtin_functions.c2117 uint32_t first_extra_arg = MIN(num_args, call->func->op_array.num_args); in debug_backtrace_get_args()
/PHP-7.4/ext/gd/libgd/
H A Dgd_interpolation.c79 #ifndef MIN
80 #define MIN(a,b) ((a)<(b)?(a):(b)) macro
82 #define MIN3(a,b,c) ((a)<(b)?(MIN(a,c)):(MIN(b,c)))
899 int iRight = MIN((int)ceil(dCenter + width_d), (int)src_size - 1); in _gdContributionsCalc()
H A Dgd.c347 #ifndef MIN
348 #define MIN(a,b) ((a)<(b)?(a):(b)) macro
350 #define MIN3(a,b,c) ((a)<(b)?(MIN(a,c)):(MIN(b,c)))
/PHP-7.4/ext/readline/
H A Dreadline_cli.c91 return fwrite(str, 1, MIN(str_length, 16384), pager_pipe); in readline_shell_write()
/PHP-7.4/ext/phar/
H A Ddirstream.c104 to_read = MIN(ZSTR_LEN(str_key), count); in phar_dir_read()
H A Dstream.c384 …got = php_stream_read(data->fp, buf, MIN(count, (size_t)(entry->uncompressed_filesize - data->posi… in phar_stream_read()
/PHP-7.4/ext/standard/
H A Dformatted_print.c95 copy_len = (expprec ? MIN(max_width, len) : len); in php_sprintf_appendstring()
H A Dftp_fopen_wrapper.c639 tmp_len = MIN(sizeof(ent->d_name), ZSTR_LEN(basename) - 1); in php_ftp_dirstream_read()
H A Dfile.c1203 num_bytes = MIN((size_t) maxlen, inputlen); in PHP_FUNCTION()
/PHP-7.4/sapi/fpm/fpm/
H A Dfpm_conf.c931 …fpm_globals.heartbeat = fpm_globals.heartbeat ? MIN(fpm_globals.heartbeat, (wp->config->request_te… in fpm_conf_process_all_pools()
969 …fpm_globals.heartbeat = fpm_globals.heartbeat ? MIN(fpm_globals.heartbeat, (wp->config->request_sl… in fpm_conf_process_all_pools()
H A Dfpm_main.c267 return fwrite(str, 1, MIN(str_length, 16384), stdout); in sapi_cgibin_single_write()
/PHP-7.4/sapi/cli/
H A Dphp_cli.c268 ret = fwrite(str, 1, MIN(str_length, 16384), stdout); in sapi_cli_single_write()
H A Dphp_cli_server.c321 size_t c = MIN((e + s + 1) / 2, e - 1); in get_template_string()
644 …size_t nbytes_copied = MIN(client->post_read_offset + count_bytes, content_len) - client->post_rea… in sapi_cli_server_read_post()
/PHP-7.4/ext/oci8/
H A Doci8_interface.c628 data_len = MIN((zend_long) data_len, write_len); in PHP_FUNCTION()
637 data_len = MIN((zend_long) data_len, write_len); in PHP_FUNCTION()
/PHP-7.4/sapi/cgi/
H A Dcgi_main.c305 ret = fwrite(str, 1, MIN(str_length, 16384), stdout); in sapi_cgi_single_write()
488 count_bytes = MIN(count_bytes, remaining_bytes); in sapi_cgi_read_post()
/PHP-7.4/build/
H A Dphp.m41770 dnl PHP_PROG_BISON([MIN-VERSION], [EXCLUDED-VERSION...])
1773 dnl required version MIN-VERSION and doesn't match any of the blank separated
1838 dnl PHP_PROG_RE2C([MIN-VERSION])
1841 dnl required version MIN-VERSION.
/PHP-7.4/ext/zip/
H A Dphp_zip.c452 return MIN(num, ZEND_LONG_MAX); in php_zip_get_num_files()
1580 RETVAL_LONG(MIN(num, ZEND_LONG_MAX));
/PHP-7.4/ext/hash/
H A Dhash.c1059 salt_len = MIN(salt_len, SALT_SIZE); in PHP_FUNCTION()
/PHP-7.4/ext/opcache/Optimizer/
H A Dzend_dump.c962 for (j = 0; j < MIN(op_array->num_args, func_info->num_args ); j++) { in zend_dump_op_array()
/PHP-7.4/ext/sockets/
H A Dconversions.c1211 size_t len = MIN(msghdr->msg_iov[i].iov_len, (size_t)bytes_left); in to_zval_read_iov()
/PHP-7.4/ext/fileinfo/libmagic/
H A Dsoftmagic.c2105 slen = MIN(m->vallen, sizeof(m->value.s)); in magiccheck()

Completed in 139 milliseconds

1234