Home
last modified time | relevance | path

Searched refs:major (Results 1 – 25 of 35) sorted by last modified time

12

/PHP-7.4/ext/fileinfo/
H A Dlibmagic.patch2086 COMMA, major(sb->st_rdev), dv_unit(sb->st_rdev),
2114 - COMMA, major(sb->st_rdev), dv_unit(sb->st_rdev),
2119 - COMMA, (long)major(sb->st_rdev),
/PHP-7.4/ext/mysqlnd/
H A Dmysqlnd_connection.c1437 zend_long major, minor, patch; local
1452 major = ZEND_STRTOL(p, &p, 10);
1458 return (zend_ulong)(major * Z_L(10000) + (zend_ulong)(minor * Z_L(100) + patch));
/PHP-7.4/ext/standard/
H A Dinfo.c279 major = "Windows 10"; in php_get_windows_name()
281 major = "Windows Server 2016"; in php_get_windows_name()
289 major = "Windows Vista"; in php_get_windows_name()
291 major = "Windows Server 2008"; in php_get_windows_name()
295 major = "Windows 7"; in php_get_windows_name()
297 major = "Windows Server 2008 R2"; in php_get_windows_name()
325 major = "Windows 8.1"; in php_get_windows_name()
331 major = "Windows 8"; in php_get_windows_name()
333 major = "Windows Server 2012"; in php_get_windows_name()
338 major = "Windows 8.1"; in php_get_windows_name()
[all …]
/PHP-7.4/ext/posix/
H A Dposix.c167 ZEND_ARG_INFO(0, major)
945 zend_long major = 0, minor = 0; in PHP_FUNCTION() local
953 Z_PARAM_LONG(major) in PHP_FUNCTION()
966 if (major == 0) { in PHP_FUNCTION()
972 php_dev = makedev(major, minor); in PHP_FUNCTION()
/PHP-7.4/build/
H A Dlibtool.m41381 soname_spec='${libname}${release}${shared_ext}$major'
1444 soname_spec='${libname}${release}${shared_ext}$major'
1519 soname_spec='${libname}${release}${major}$shared_ext'
1533 soname_spec='${libname}${release}${shared_ext}$major'
1586 soname_spec='${libname}${release}${shared_ext}$major'
1642 soname_spec='${libname}${release}${shared_ext}$major'
1661 soname_spec='${libname}${release}${shared_ext}$major'
1697 soname_spec='${libname}${release}${shared_ext}$major'
1751 soname_spec='${libname}${release}${shared_ext}$major'
1795 soname_spec='${libname}${release}${shared_ext}$major'
[all …]
/PHP-7.4/
H A Dphp.ini-development904 ; deprecated in a future PHP major version. So, when it is possible, please
H A Dphp.ini-production904 ; deprecated in a future PHP major version. So, when it is possible, please
H A DCONTRIBUTING.md333 … branch for PHP 8.0, which is open for backwards incompatible changes and major internal API chang…
/PHP-7.4/win32/build/
H A Dconfutils.js3207 var major = ver.substr(0, 2);
3210 AC_DEFINE('PHP_LINKER_MAJOR', major, "Linker major version", false);
/PHP-7.4/ext/com_dotnet/
H A Dcom_typeinfo.c66 char *strtok_buf, *major, *minor; in php_com_load_typelib() local
77 major = php_strtok_r(NULL, ",", &strtok_buf); in php_com_load_typelib()
86 if (major && minor) { in php_com_load_typelib()
87 major_i = (WORD)atoi(major); in php_com_load_typelib()
96 if (FAILED(hr) && (major == NULL || minor == NULL)) { in php_com_load_typelib()
/PHP-7.4/ext/pcre/pcre2lib/
H A Dpcre2_compile.c4310 int major = 0; in parse_regex() local
4326 if (!read_number(&ptr, ptrend, -1, 1000, ERR79, &major, &errorcode)) in parse_regex()
4341 *parsed_pattern++ = major; in parse_regex()
/PHP-7.4/ext/pdo_oci/
H A Doci_driver.c587 sword major, minor, update, patch, port_update; in oci_handle_get_attribute() local
590 OCIClientVersion(&major, &minor, &update, &patch, &port_update); in oci_handle_get_attribute()
591 slprintf(verstr, sizeof(verstr), "%d.%d.%d.%d.%d", major, minor, update, patch, port_update); in oci_handle_get_attribute()
/PHP-7.4/win32/
H A Dwinutil.c459 DWORD major = img->FileHeader->OptionalHeader.MajorLinkerVersion; in is_compatible() local
474 …if (14 == major && (is_smaller ? core_minor < comp_minor : core_minor > comp_minor) || PHP_LINKER_… in is_compatible()
476 if (PHP_LINKER_MAJOR != major) in is_compatible()
479 spprintf(err, 0, format, name, major, minor, PHP_LINKER_MAJOR, PHP_LINKER_MINOR); in is_compatible()
/PHP-7.4/docs/
H A Drelease-process.md166 2. Skip this step for non stable releases after GA of minor or major versions
170 highlight the major important things (security fixes) and when it is
272 * You can run `php bin/bumpRelease 7 4` where the first number is the major
296 5. Update the ChangeLog file for the given major version
318 highlight the major important things (security fixes) and when it is
357 highlight the major important things (security fixes) and when it is
424 next minor or major release, issue a call for volunteers on
/PHP-7.4/ext/xsl/
H A Dphp_xsl.c255 int major, minor, subminor; in PHP_MINFO_FUNCTION() local
258 major = xsltLibxsltVersion/10000; in PHP_MINFO_FUNCTION()
259 minor = (xsltLibxsltVersion - major * 10000) / 100; in PHP_MINFO_FUNCTION()
260 subminor = (xsltLibxsltVersion - major * 10000 - minor * 100); in PHP_MINFO_FUNCTION()
261 snprintf(buffer, 128, "%d.%d.%d", major, minor, subminor); in PHP_MINFO_FUNCTION()
263 major = xsltLibxmlVersion/10000; in PHP_MINFO_FUNCTION()
264 minor = (xsltLibxmlVersion - major * 10000) / 100; in PHP_MINFO_FUNCTION()
265 subminor = (xsltLibxmlVersion - major * 10000 - minor * 100); in PHP_MINFO_FUNCTION()
266 snprintf(buffer, 128, "%d.%d.%d", major, minor, subminor); in PHP_MINFO_FUNCTION()
/PHP-7.4/scripts/dev/
H A Dmakedist39 - X is major version number
/PHP-7.4/sapi/litespeed/
H A DREADME.md5 SAPI with there major enhancements: better performance, dynamic spawning and PHP
13 A major drawback of FastCGI PHP comparing to Apache mod_php is lacking the
/PHP-7.4/ext/zlib/tests/
H A Dzlib_filter_deflate.phpt7 $text = 'I am the very model of a modern major general, I\'ve information vegetable, animal, and mi…
H A Dzlib_filter_deflate2.phpt7 $text = 'I am the very model of a modern major general, I\'ve information vegetable, animal, and mi…
H A Dzlib_filter_inflate.phpt17 I am the very model of a modern major general, I've information vegetable, animal, and mineral.
/PHP-7.4/ext/pdo_mysql/tests/
H A Dpdo_mysql_attr_server_version.phpt35 printf("[003] Strange major version: '%s'. Should be more than 3\n", $matches[1]);
43 $major = floor($version / 10000);
46 if ($major < 3)
47 printf("[006] Strange major version: '%s'. Should be more than 3\n", $major);
/PHP-7.4/ext/mbstring/libmbfl/
H A DLICENSE322 normally distributed (in either source or binary form) with the major
/PHP-7.4/ext/intl/tests/
H A Dresourcebundle_arrayaccess.phpt21 printf( "testtable: %d\n", $r2['major'] );
H A Dresourcebundle_individual.phpt23 $str_res .= sprintf( "testtable: %d\n", ut_resourcebundle_get($r2, 'major' ) );
/PHP-7.4/ext/intl/tests/_files/
H A Des-bundle.txt11 major:int { 3 }

Completed in 118 milliseconds

12