Home
last modified time | relevance | path

Searched refs:MIN (Results 76 – 87 of 87) sorted by relevance

1234

/PHP-5.5/Zend/
H A Dzend_compile.c1820 …zend_str_tolower_copy(lcname, CG(active_op_array)->function_name, MIN(name_len, sizeof(lcname)-1)); in zend_do_end_function_declaration()
3362 REALLOC_BUF_IF_EXCEED(buf, offset, length, MIN(Z_STRLEN_P(zv), 10)); in zend_get_function_declaration()
3363 memcpy(offset, Z_STRVAL_P(zv), MIN(Z_STRLEN_P(zv), 10)); in zend_get_function_declaration()
3364 offset += MIN(Z_STRLEN_P(zv), 10); in zend_get_function_declaration()
H A Dzend_API.c1973 zend_str_tolower_copy(lcname, fptr->common.function_name, MIN(name_len, sizeof(lcname)-1)); in zend_check_magic_method_implementation()
/PHP-5.5/ext/fileinfo/
H A Dlibmagic.patch1396 #ifndef MIN
1397 #define MIN(a,b) (((a) < (b)) ? (a) : (b))
/PHP-5.5/ext/spl/
H A Dspl_directory.c2853 str_len = MAX(0, MIN(length, str_len)); in SPL_METHOD()
/PHP-5.5/ext/curl/
H A Dinterface.c1582 length = MIN((int) (size * nmemb), Z_STRLEN_P(retval_ptr)); in curl_read()
/PHP-5.5/ext/mbstring/oniguruma/
H A Dregexec.c3569 int offset = (MIN(start, range) - str); in onig_search()
H A Dregparse.c1954 to = MIN(to1, to2); in and_code_range_buf()
/PHP-5.5/ext/sqlite3/libsqlite/
H A Dsqlite3.c8917 #define MIN(A,B) ((A)<(B)?(A):(B)) macro
59393 int nAdd = MIN(nNew,iOld-iNew);
68496 int nCmp = MIN(mem1.n, pRhs->n);
68517 int nCmp = MIN(nStr, pRhs->n);
78718 res = memcmp(v1, v2, MIN(n1, n2));
117955 mxBitCol = MIN(BMS-1,pTable->nCol);
132756 #ifndef MIN
132757 # define MIN(x,y) ((x)<(y)?(x):(y))
147063 int nCmp = MIN(nLhs, nRhs);
151330 #ifndef MIN
[all …]
/PHP-5.5/sapi/thttpd/
H A Dthttpd_patch2027 iv[1].iov_len = MIN( c->bytes_to_send - c->bytes_sent, c->limit );
/PHP-5.5/ext/phar/
H A Dphar_object.c229 got = php_stream_read(fp, buf, MIN(8192, info->uncompressed_filesize - position)); in phar_file_action()
/PHP-5.5/ext/reflection/
H A Dphp_reflection.c744 string_write(str, Z_STRVAL_P(zv), MIN(Z_STRLEN_P(zv), 15)); in _parameter_string()
/PHP-5.5/ext/pgsql/
H A Dpgsql.c6347 …smart_str_appendl(querystr, buf, MIN(snprintf(buf, sizeof(buf), "%F", Z_DVAL_PP(val)), sizeof(buf)…

Completed in 513 milliseconds

1234