/PHP-5.5/sapi/cgi/ |
H A D | cgi_main.c | 283 ret = fwrite(str, 1, MIN(str_length, 16384), stdout); in sapi_cgi_single_write() 511 count_bytes = MIN(count_bytes, (uint) SG(request_info).content_length - SG(read_post_bytes)); in sapi_cgi_read_post() 528 count_bytes = MIN(count_bytes, (uint) SG(request_info).content_length - SG(read_post_bytes)); in sapi_fcgi_read_post()
|
/PHP-5.5/ext/mcrypt/ |
H A D | mcrypt.c | 1223 memcpy(key_s, key, MIN(key_len, key_length_sizes[0])); in php_mcrypt_do_crypt() 1236 memcpy(key_s, key, MIN(key_len, use_key_length)); in php_mcrypt_do_crypt()
|
/PHP-5.5/ext/standard/ |
H A D | formatted_print.c | 83 copy_len = (expprec ? MIN(max_width, len) : len); in php_sprintf_appendstring()
|
H A D | ftp_fopen_wrapper.c | 639 tmp_len = MIN(sizeof(ent->d_name), basename_len - 1); in php_ftp_dirstream_read()
|
H A D | string.c | 2884 shift->entries[h] = MIN(shift->entries[h], m - j - B); 3001 res->B = B = MIN(B, res->m); 3002 res->Bp = Bp = MIN(Bp, res->m); 3185 MIN(Z_STRLEN_PP(from),
|
H A D | file.c | 1191 num_bytes = MAX(0, MIN((int)arg3, arg2len)); in PHP_FUNCTION()
|
/PHP-5.5/sapi/thttpd/ |
H A D | thttpd.c | 253 read_bytes = MIN(TG(unconsumed_length), count_bytes); in sapi_thttpd_read_post()
|
/PHP-5.5/sapi/fpm/fpm/ |
H A D | fpm_main.c | 294 return fwrite(str, 1, MIN(str_length, 16384), stdout); in sapi_cgibin_single_write() 502 count_bytes = MIN(count_bytes, (uint) SG(request_info).content_length - SG(read_post_bytes)); in sapi_cgi_read_post()
|
H A D | fpm_conf.c | 915 …fpm_globals.heartbeat = fpm_globals.heartbeat ? MIN(fpm_globals.heartbeat, (wp->config->request_te… in fpm_conf_process_all_pools() 953 …fpm_globals.heartbeat = fpm_globals.heartbeat ? MIN(fpm_globals.heartbeat, (wp->config->request_sl… in fpm_conf_process_all_pools()
|
/PHP-5.5/ext/phar/ |
H A D | dirstream.c | 112 to_read = MIN(keylen, count); in phar_dir_read()
|
H A D | stream.c | 379 got = php_stream_read(data->fp, buf, MIN(count, entry->uncompressed_filesize - data->position)); in phar_stream_read()
|
/PHP-5.5/sapi/apache2filter/ |
H A D | sapi_apache2.c | 163 n = MIN(to_read, count_bytes); in php_apache_sapi_read_post()
|
/PHP-5.5/ext/gd/libgd/ |
H A D | gd.c | 311 #ifndef MIN 312 #define MIN(a,b) ((a)<(b)?(a):(b)) macro 314 #define MIN3(a,b,c) ((a)<(b)?(MIN(a,c)):(MIN(b,c)))
|
/PHP-5.5/ext/oci8/ |
H A D | oci8_interface.c | 532 data_len = MIN(data_len, write_len); 541 data_len = MIN(data_len, write_len);
|
/PHP-5.5/sapi/cli/ |
H A D | php_cli.c | 282 ret = fwrite(str, 1, MIN(str_length, 16384), stdout); in sapi_cli_single_write()
|
H A D | php_cli_server.c | 424 size_t c = MIN((e + s + 1) / 2, e - 1); in get_template_string() 699 …size_t nbytes_copied = MIN(client->post_read_offset + count_bytes, content_len) - client->post_rea… in sapi_cli_server_read_post()
|
/PHP-5.5/ext/hash/ |
H A D | hash.c | 910 salt_len = MIN(salt_len, SALT_SIZE); in PHP_FUNCTION()
|
/PHP-5.5/ext/session/ |
H A D | session.c | 353 if (php_win32_get_random_bytes(rbuf, MIN(toread, sizeof(rbuf))) == SUCCESS){ in php_session_create_id() 379 n = read(fd, rbuf, MIN(to_read, sizeof(rbuf))); in php_session_create_id()
|
/PHP-5.5/ext/sockets/ |
H A D | conversions.c | 1230 size_t len = MIN(msghdr->msg_iov[i].iov_len, (size_t)bytes_left); in to_zval_read_iov()
|
H A D | sockets.c | 1104 retval = write(php_sock->bsd_socket, str, MIN(length, str_len));
|
/PHP-5.5/ext/mysqlnd/ |
H A D | mysqlnd.c | 1456 size_t to_copy = MIN(table_len, MYSQLND_MAX_ALLOWED_DB_LEN); 1463 size_t to_copy = MIN(wild_len, MYSQLND_MAX_ALLOWED_DB_LEN);
|
/PHP-5.5/ext/fileinfo/libmagic/ |
H A D | softmagic.c | 2030 slen = MIN(m->vallen, sizeof(m->value.s)); in magiccheck()
|
/PHP-5.5/ext/pcre/pcrelib/ |
H A D | HACKING | 252 UTF-32 mode these are one-unit items. Those with "MIN" in their names are the
|
/PHP-5.5/ext/mssql/ |
H A D | php_mssql.c | 2245 dbconvert(NULL, SQLBINARY, (BYTE*) binary, MIN(16, binary_len), SQLCHAR, buffer, -1);
|
/PHP-5.5/ext/sybase_ct/ |
H A D | php_sybase_ct.c | 273 for (i = 0; i < (result->store ? result->num_rows : MIN(1, result->num_rows)); i++) { in _free_sybase_result()
|