Home
last modified time | relevance | path

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

1234

/PHP-7.1/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)))
966 int iRight = MIN((int)ceil(dCenter + width_d), (int)src_size - 1); in _gdContributionsCalc()
H A Dgd.c309 #ifndef MIN
310 #define MIN(a,b) ((a)<(b)?(a):(b)) macro
312 #define MIN3(a,b,c) ((a)<(b)?(MIN(a,c)):(MIN(b,c)))
/PHP-7.1/ext/standard/
H A Dformatted_print.c82 copy_len = (expprec ? MIN(max_width, len) : len); in php_sprintf_appendstring()
H A Dftp_fopen_wrapper.c642 tmp_len = MIN(sizeof(ent->d_name), ZSTR_LEN(basename) - 1); in php_ftp_dirstream_read()
H A Dfile.c1181 num_bytes = MIN((size_t) maxlen, inputlen); in PHP_FUNCTION()
/PHP-7.1/ext/phar/
H A Ddirstream.c105 to_read = MIN(ZSTR_LEN(str_key), count); in phar_dir_read()
H A Dstream.c383 got = php_stream_read(data->fp, buf, MIN(count, entry->uncompressed_filesize - data->position)); in phar_stream_read()
/PHP-7.1/ext/mysqlnd/
H A Dmysqlnd_vio.c89 net_stream->chunk_size = MIN(to_read, vio->data->options.net_read_buffer_size); in MYSQLND_METHOD()
/PHP-7.1/sapi/fpm/fpm/
H A Dfpm_conf.c928 …fpm_globals.heartbeat = fpm_globals.heartbeat ? MIN(fpm_globals.heartbeat, (wp->config->request_te… in fpm_conf_process_all_pools()
966 …fpm_globals.heartbeat = fpm_globals.heartbeat ? MIN(fpm_globals.heartbeat, (wp->config->request_sl… in fpm_conf_process_all_pools()
H A Dfpm_main.c305 return fwrite(str, 1, MIN(str_length, 16384), stdout); in sapi_cgibin_single_write()
/PHP-7.1/ext/oci8/
H A Doci8_interface.c613 data_len = MIN((zend_long) data_len, write_len); in PHP_FUNCTION()
622 data_len = MIN((zend_long) data_len, write_len); in PHP_FUNCTION()
/PHP-7.1/sapi/cli/
H A Dphp_cli.c289 ret = fwrite(str, 1, MIN(str_length, 16384), stdout); in sapi_cli_single_write()
H A Dphp_cli_server.c316 size_t c = MIN((e + s + 1) / 2, e - 1); in get_template_string()
586 …size_t nbytes_copied = MIN(client->post_read_offset + count_bytes, content_len) - client->post_rea… in sapi_cli_server_read_post()
/PHP-7.1/Zend/
H A Dzend_alloc.c1170 #ifndef MIN
1171 # define MIN(a, b) (((a) < (b)) ? (a) : (b)) macro
1623 memcpy(ret, ptr, MIN(old_size, copy_size));
H A Dzend_exceptions.c500 smart_str_append_escaped(str, Z_STRVAL_P(arg), MIN(Z_STRLEN_P(arg), 15)); in _build_trace_args()
H A Dzend_execute_API.c1231 write(2, log_buffer, MIN(output_len, sizeof(log_buffer))); in zend_timeout_handler()
H A Dzend_inheritance.c515 smart_str_appendl(&str, Z_STRVAL_P(zv), MIN(Z_STRLEN_P(zv), 10)); in zend_get_function_declaration()
H A Dzend_builtin_functions.c2311 uint32_t first_extra_arg = MIN(num_args, call->func->op_array.num_args); in debug_backtrace_get_args()
/PHP-7.1/sapi/cgi/
H A Dcgi_main.c311 ret = fwrite(str, 1, MIN(str_length, 16384), stdout); in sapi_cgi_single_write()
493 count_bytes = MIN(count_bytes, remaining_bytes); in sapi_cgi_read_post()
/PHP-7.1/ext/hash/
H A Dhash.c1059 salt_len = MIN(salt_len, SALT_SIZE); in PHP_FUNCTION()
/PHP-7.1/ext/opcache/Optimizer/
H A Dzend_dump.c892 for (j = 0; j < MIN(op_array->num_args, func_info->num_args ); j++) { in zend_dump_op_array()
/PHP-7.1/ext/sockets/
H A Dconversions.c1207 size_t len = MIN(msghdr->msg_iov[i].iov_len, (size_t)bytes_left); in to_zval_read_iov()
H A Dsockets.c1130 retval = write(php_sock->bsd_socket, str, MIN(length, str_len));
/PHP-7.1/ext/fileinfo/libmagic/
H A Dsoftmagic.c1983 slen = MIN(m->vallen, sizeof(m->value.s)); in magiccheck()
/PHP-7.1/ext/pcre/pcrelib/
H A DHACKING252 UTF-32 mode these are one-unit items. Those with "MIN" in their names are the

Completed in 212 milliseconds

1234