Home
last modified time | relevance | path

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

1234

/PHP-8.2/sapi/fpm/fpm/
H A Dzlog.c289 size = MIN(zlog_limit, MAX((stream->buf.data ? (size << 1) : size), needed)); in zlog_stream_buf_alloc_ex()
306 if (stream->buf.data && stream->buf.size >= MIN(zlog_limit, stream->buf_init_size)) { in zlog_stream_buf_alloc()
H A Dfpm_conf.c1018 …fpm_globals.heartbeat = fpm_globals.heartbeat ? MIN(fpm_globals.heartbeat, (wp->config->request_te… in fpm_conf_process_all_pools()
1056 …fpm_globals.heartbeat = fpm_globals.heartbeat ? MIN(fpm_globals.heartbeat, (wp->config->request_sl… in fpm_conf_process_all_pools()
H A Dfpm_main.c264 return fwrite(str, 1, MIN(str_length, 16384), stdout); in sapi_cgibin_single_write()
/PHP-8.2/ext/mysqlnd/
H A Dmysqlnd_wireprotocol.c227 error_msg_len = MIN((int)((buf_len - (p - buf))), (int) (error_buf_len - 1)); in php_mysqlnd_read_error_from_line()
525 len = MIN(strlen(packet->user), MYSQLND_MAX_ALLOWED_USER_LEN); in php_mysqlnd_auth_write()
556 size_t real_db_len = MIN(MYSQLND_MAX_ALLOWED_DB_LEN, packet->db_len); in php_mysqlnd_auth_write()
573 len = MIN(strlen(packet->auth_plugin_name), sizeof(buffer) - (p - buffer) - 1); in php_mysqlnd_auth_write()
724 packet->message_len = MIN(net_len, buf_len - (p - begin)); in php_mysqlnd_auth_response_read()
864 packet->message_len = MIN(net_len, buf_len - (p - begin)); in php_mysqlnd_ok_read()
/PHP-8.2/ext/gd/libgd/
H A Dgdft.c113 #ifndef MIN
114 #define MIN(a,b) ((a)<(b)?(a):(b)) macro
H A Dgd_interpolation.c80 #ifndef MIN
81 #define MIN(a,b) ((a)<(b)?(a):(b)) macro
83 #define MIN3(a,b,c) ((a)<(b)?(MIN(a,c)):(MIN(b,c)))
898 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-8.2/Zend/
H A Dzend_alloc.c1210 #ifndef MIN
1211 # define MIN(a, b) (((a) < (b)) ? (a) : (b)) macro
1568 …return zend_mm_realloc_slow(heap, ptr, size, MIN(old_size, copy_size) ZEND_FILE_LINE_RELAY_CC ZEND…
1611 copy_size = use_copy_size ? MIN(size, copy_size) : size;
1626 copy_size = use_copy_size ? MIN(old_size, copy_size) : old_size;
1720 copy_size = MIN(old_size, copy_size);
H A Dzend_execute.h253 used_stack += func->op_array.last_var - MIN(func->op_array.num_args, num_args); in zend_vm_calc_used_stack()
H A Dzend_builtin_functions.c1549 uint32_t first_extra_arg = MIN(num_args, call->func->op_array.num_args); in debug_backtrace_get_args()
1635 MIN(i, call->func->common.num_args) in debug_backtrace_get_args()
/PHP-8.2/ext/readline/
H A Dreadline_cli.c89 return fwrite(str, 1, MIN(str_length, 16384), pager_pipe); in readline_shell_write()
/PHP-8.2/ext/standard/
H A Dformatted_print.c93 copy_len = (expprec ? MIN(max_width, len) : len); in php_sprintf_appendstring()
H A Dftp_fopen_wrapper.c630 tmp_len = MIN(sizeof(ent->d_name), ZSTR_LEN(basename) - 1); in php_ftp_dirstream_read()
H A Dhttp_fopen_wrapper.c803 file_size = MIN(parsed, ZEND_LONG_MAX); in php_stream_url_wrap_http_ex()
/PHP-8.2/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.c320 size_t c = MIN((e + s + 1) / 2, e - 1); in get_template_string()
594 …size_t nbytes_copied = MIN(client->post_read_offset + count_bytes, content_len) - client->post_rea… in sapi_cli_server_read_post()
/PHP-8.2/ext/opcache/jit/
H A Dzend_jit_trace.c915 tssa->var_info[ssa_var].range.max = MIN(tssa->var_info[ssa_var].range.max, info->range.max); in zend_jit_trace_copy_ssa_var_range()
1575 parent_vars_count = MIN(zend_jit_traces[parent_trace].exit_info[exit_num].stack_size, in zend_jit_trace_build_tssa()
3767 MIN(op1_max, op2_max)); in zend_jit_trace_update_condition_ranges()
3773 MIN(op2_max, op1_max)); in zend_jit_trace_update_condition_ranges()
3784 MIN(op1_max, op2_max)); in zend_jit_trace_update_condition_ranges()
3790 MIN(op2_max, op1_max)); in zend_jit_trace_update_condition_ranges()
3801 MIN(op1_max, op2_max)); in zend_jit_trace_update_condition_ranges()
3821 op2_max != ZEND_LONG_MIN ?MIN(op2_max, op1_max - 1) : op1_max); in zend_jit_trace_update_condition_ranges()
3832 op2_max != ZEND_LONG_MIN ? MIN(op1_max, op2_max - 1) : op1_max); in zend_jit_trace_update_condition_ranges()
3852 MIN(op2_max, op1_max)); in zend_jit_trace_update_condition_ranges()
[all …]
/PHP-8.2/sapi/cgi/
H A Dcgi_main.c302 ret = fwrite(str, 1, MIN(str_length, 16384), stdout); in sapi_cgi_single_write()
485 count_bytes = MIN(count_bytes, remaining_bytes); in sapi_cgi_read_post()
/PHP-8.2/build/
H A Dphp.m41752 dnl PHP_PROG_BISON([MIN-VERSION], [EXCLUDED-VERSION...])
1755 dnl required version MIN-VERSION and doesn't match any of the blank separated
1821 dnl PHP_PROG_RE2C([MIN-VERSION])
1824 dnl required version MIN-VERSION.
/PHP-8.2/ext/phar/
H A Dstream.c392 …got = php_stream_read(data->fp, buf, MIN(count, (size_t)(entry->uncompressed_filesize - data->posi… in phar_stream_read()
/PHP-8.2/ext/zip/
H A Dphp_zip.c543 return MIN(num, ZEND_LONG_MAX); in php_zip_get_num_files()
1600 RETVAL_LONG(MIN(num, ZEND_LONG_MAX));
/PHP-8.2/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-8.2/ext/hash/
H A Dhash.c1303 salt_len = MIN(salt_len, SALT_SIZE); in PHP_FUNCTION()
/PHP-8.2/ext/oci8/
H A Doci8_interface.c540 data_len = MIN((zend_long) data_len, write_len); in PHP_FUNCTION()
/PHP-8.2/ext/fileinfo/
H A Dlibmagic.patch1611 #ifndef MIN
1612 #define MIN(a,b) (((a) < (b)) ? (a) : (b))
3395 slen = MIN(m->vallen, sizeof(m->value.s));

Completed in 199 milliseconds

1234