Home
last modified time | relevance | path

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

12

/PHP-8.1/ext/pgsql/
H A Dpgsql.c422 int major = version / 10000; in php_libpq_version() local
423 if (major >= 10) { in php_libpq_version()
425 snprintf(buf, len, "%d.%d", major, minor); in php_libpq_version()
429 snprintf(buf, len, "%d.%d.%d", major, minor, revision); in php_libpq_version()
/PHP-8.1/ext/xsl/
H A Dphp_xsl.c241 int major, minor, subminor; in PHP_MINFO_FUNCTION() local
244 major = xsltLibxsltVersion/10000; in PHP_MINFO_FUNCTION()
245 minor = (xsltLibxsltVersion - major * 10000) / 100; in PHP_MINFO_FUNCTION()
246 subminor = (xsltLibxsltVersion - major * 10000 - minor * 100); in PHP_MINFO_FUNCTION()
247 snprintf(buffer, 128, "%d.%d.%d", major, minor, subminor); in PHP_MINFO_FUNCTION()
249 major = xsltLibxmlVersion/10000; in PHP_MINFO_FUNCTION()
250 minor = (xsltLibxmlVersion - major * 10000) / 100; in PHP_MINFO_FUNCTION()
251 subminor = (xsltLibxmlVersion - major * 10000 - minor * 100); in PHP_MINFO_FUNCTION()
252 snprintf(buffer, 128, "%d.%d.%d", major, minor, subminor); in PHP_MINFO_FUNCTION()
/PHP-8.1/ext/fileinfo/tests/
H A Dmagic私はガラスを食べられます2707 # device major minor if not zero
15193 >&0 ubyte 0 \b, major version 0
15269 # major revision
21910 # Map's version major
25703 # Sector Shift Exponent 9~512 for major version 3 or C~4096 for major version 4
27096 >>4 byte =3 (major 1)
27097 >>4 byte =2 (major 1)
27102 >>4 byte =5 (major 2)
27103 >>4 byte =4 (major 2)
33199 >0x44 uleshort >0 \b, major %u
[all …]
H A Dmagic2707 # device major minor if not zero
15193 >&0 ubyte 0 \b, major version 0
15269 # major revision
21910 # Map's version major
25703 # Sector Shift Exponent 9~512 for major version 3 or C~4096 for major version 4
27096 >>4 byte =3 (major 1)
27097 >>4 byte =2 (major 1)
27102 >>4 byte =5 (major 2)
27103 >>4 byte =4 (major 2)
33199 >0x44 uleshort >0 \b, major %u
[all …]
/PHP-8.1/ext/mysqlnd/
H A Dmysqlnd_connection.c1276 zend_long major, minor, patch; local
1283 major = ZEND_STRTOL(p, &p, 10);
1289 return (zend_ulong)(major * Z_L(10000) + (zend_ulong)(minor * Z_L(100) + patch));
/PHP-8.1/build/
H A Dlibtool.m41381 soname_spec='${libname}${release}${shared_ext}$major'
1446 soname_spec='${libname}${release}${shared_ext}$major'
1455 soname_spec='${libname}${release}${shared_ext}$major'
1530 soname_spec='${libname}${release}${major}$shared_ext'
1544 soname_spec='${libname}${release}${shared_ext}$major'
1597 soname_spec='${libname}${release}${shared_ext}$major'
1653 soname_spec='${libname}${release}${shared_ext}$major'
1672 soname_spec='${libname}${release}${shared_ext}$major'
1708 soname_spec='${libname}${release}${shared_ext}$major'
1762 soname_spec='${libname}${release}${shared_ext}$major'
[all …]
/PHP-8.1/
H A DCONTRIBUTING.md331 … branch for PHP 8.1, which is open for backwards incompatible changes and major internal API chang…
H A Dphp.ini-development911 ; deprecated in a future PHP major version. So, when it is possible, please
H A Dphp.ini-production913 ; deprecated in a future PHP major version. So, when it is possible, please
/PHP-8.1/docs/
H A Drelease-process.md148 2. Skip this step for non-stable releases after GA of minor or major versions
152 highlight the major important things (security fixes) and when it is
256 * You can run `php bin/bumpRelease 7 4` where the first number is the major
263 (X.Y=major.minor release, e.g. '8.0'):
286 5. Update the ChangeLog file for the given major version
308 highlight the major important things (security fixes) and when it is
340 (X.Y=major.minor release, e.g. '8.0'):
348 highlight the major important things (security fixes) and when it is
422 next minor or major release, issue a call for volunteers on
/PHP-8.1/ext/standard/
H A Dinfo.c274 major = "Windows 11"; in php_get_windows_name()
276 major = "Windows 10"; in php_get_windows_name()
280 major = "Windows Server 2022"; in php_get_windows_name()
291 major = "Windows Server 2019"; in php_get_windows_name()
297 major = "Windows Server 2016"; in php_get_windows_name()
306 major = "Windows Vista"; in php_get_windows_name()
308 major = "Windows Server 2008"; in php_get_windows_name()
312 major = "Windows 7"; in php_get_windows_name()
342 major = "Windows 8.1"; in php_get_windows_name()
348 major = "Windows 8"; in php_get_windows_name()
[all …]
/PHP-8.1/scripts/dev/
H A Dmakedist48 - X is major version number
/PHP-8.1/ext/posix/
H A Dposix.c657 zend_long major = 0, minor = 0; in PHP_FUNCTION() local
665 Z_PARAM_LONG(major) in PHP_FUNCTION()
674 if (major == 0) { in PHP_FUNCTION()
679 php_dev = makedev(major, minor); in PHP_FUNCTION()
H A Dposix.stub.php89 function posix_mknod(string $filename, int $flags, int $major = 0, int $minor = 0): bool {} argument
H A Dposix_arginfo.h108 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, major, IS_LONG, 0, "0")
/PHP-8.1/ext/date/lib/
H A Dtimelib_private.h116 # define TIMELIB_GNUC_CHECK_VERSION(major, minor) \ argument
117 ((__GNUC__ > (major)) || \
118 ((__GNUC__ == (major)) && (__GNUC_MINOR__ >= (minor))))
120 # define TIMELIB_GNUC_CHECK_VERSION(major, minor) 0 argument
/PHP-8.1/ext/pdo_pgsql/
H A Dpgsql_driver.c417 int major = version / 10000; in pdo_libpq_version() local
418 if (major >= 10) { in pdo_libpq_version()
420 snprintf(buf, len, "%d.%d", major, minor); in pdo_libpq_version()
424 snprintf(buf, len, "%d.%d.%d", major, minor, revision); in pdo_libpq_version()
/PHP-8.1/win32/build/
H A Dconfutils.js3206 var major = ver.substr(0, 2);
3209 AC_DEFINE('PHP_LINKER_MAJOR', major, "Linker major version", false);
/PHP-8.1/win32/
H A Dwinutil.c447 DWORD major = pNTHeader->OptionalHeader.MajorLinkerVersion; in is_compatible() local
462 …if (14 == major && (is_smaller ? core_minor < comp_minor : core_minor > comp_minor) || PHP_LINKER_… in is_compatible()
464 if (PHP_LINKER_MAJOR != major) in is_compatible()
469 spprintf(err, 0, format, buf, major, minor, PHP_LINKER_MAJOR, PHP_LINKER_MINOR); in is_compatible()
/PHP-8.1/ext/fileinfo/
H A Dlibmagic.patch1924 COMMA, major(sb->st_rdev), dv_unit(sb->st_rdev),
1952 - COMMA, major(sb->st_rdev), dv_unit(sb->st_rdev),
1957 - COMMA, (long)major(sb->st_rdev),
/PHP-8.1/ext/com_dotnet/
H A Dcom_typeinfo.c64 char *strtok_buf, *major, *minor; in php_com_load_typelib() local
75 major = php_strtok_r(NULL, ",", &strtok_buf); in php_com_load_typelib()
84 if (major && minor) { in php_com_load_typelib()
85 major_i = (WORD)atoi(major); in php_com_load_typelib()
94 if (FAILED(hr) && (major == NULL || minor == NULL)) { in php_com_load_typelib()
/PHP-8.1/ext/pcre/pcre2lib/
H A Dpcre2_compile.c4331 int major = 0; in parse_regex() local
4347 if (!read_number(&ptr, ptrend, -1, 1000, ERR79, &major, &errorcode)) in parse_regex()
4363 *parsed_pattern++ = major; in parse_regex()
/PHP-8.1/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-8.1/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…

Completed in 268 milliseconds

12