Home
last modified time | relevance | path

Searched refs:minor (Results 1 – 25 of 27) sorted by relevance

12

/PHP-8.3/ext/xsl/
H A Dphp_xsl.c227 int major, minor, subminor; in PHP_MINFO_FUNCTION() local
231 minor = (xsltLibxsltVersion - major * 10000) / 100; in PHP_MINFO_FUNCTION()
232 subminor = (xsltLibxsltVersion - major * 10000 - minor * 100); in PHP_MINFO_FUNCTION()
233 snprintf(buffer, 128, "%d.%d.%d", major, minor, subminor); in PHP_MINFO_FUNCTION()
236 minor = (xsltLibxmlVersion - major * 10000) / 100; in PHP_MINFO_FUNCTION()
237 subminor = (xsltLibxmlVersion - major * 10000 - minor * 100); in PHP_MINFO_FUNCTION()
238 snprintf(buffer, 128, "%d.%d.%d", major, minor, subminor); in PHP_MINFO_FUNCTION()
/PHP-8.3/ext/date/lib/
H A Dtimelib_private.h116 # define TIMELIB_GNUC_CHECK_VERSION(major, minor) \ argument
118 ((__GNUC__ == (major)) && (__GNUC_MINOR__ >= (minor))))
120 # define TIMELIB_GNUC_CHECK_VERSION(major, minor) 0 argument
/PHP-8.3/ext/pdo_mysql/tests/
H A Dpdo_mysql_attr_server_version.phpt45 $minor = floor(($version - ($main * 10000)) / 100);
46 $sub = $version - ($main * 10000) - ($minor * 100);
49 if ($minor < 0)
50 printf("[007] Minor version should be at least 0, got '%s'\n", $minor);
/PHP-8.3/Zend/tests/
H A Dbug44830.phpt2 Bug #44830 (Very minor issue with backslash in heredoc)
/PHP-8.3/ext/intl/tests/_files/
H A Des-bundle.txt12 minor:int { 4 }
H A Dresourcebundle.txt12 minor:int { 4 }
/PHP-8.3/ext/fileinfo/libmagic/
H A Dfsmagic.c66 # define minor(dev) ((dev) & 0xff) macro
158 (long)minor(sb->st_rdev)) == -1) in file_fsmagic()
/PHP-8.3/win32/
H A Dwinutil.c448 DWORD minor = pNTHeader->OptionalHeader.MinorLinkerVersion; in is_compatible() local
461 DWORD comp_minor = (DWORD)(minor/10); in is_compatible()
469 spprintf(err, 0, format, buf, major, minor, PHP_LINKER_MAJOR, PHP_LINKER_MINOR); in is_compatible()
/PHP-8.3/ext/com_dotnet/
H A Dcom_typeinfo.c64 char *strtok_buf, *major, *minor; in php_com_load_typelib() local
76 minor = php_strtok_r(NULL, ",", &strtok_buf); in php_com_load_typelib()
84 if (major && minor) { in php_com_load_typelib()
86 minor_i = (WORD)atoi(minor); in php_com_load_typelib()
94 if (FAILED(hr) && (major == NULL || minor == NULL)) { in php_com_load_typelib()
/PHP-8.3/ext/phar/tests/tar/
H A Dcreate_new_and_modify.phpt23 // minor delay here.
/PHP-8.3/ext/phar/tests/zip/
H A Dcreate_new_and_modify.phpt23 // minor delay here.
/PHP-8.3/ext/phar/tests/
H A Dcreate_new_and_modify.phpt29 // minor delay here.
/PHP-8.3/ext/posix/
H A Dposix.stub.php377 function posix_mknod(string $filename, int $flags, int $major = 0, int $minor = 0): bool {} argument
H A Dposix.c614 zend_long major = 0, minor = 0; in PHP_FUNCTION() local
623 Z_PARAM_LONG(minor) in PHP_FUNCTION()
636 php_dev = makedev(major, minor); in PHP_FUNCTION()
H A Dposix_arginfo.h109 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, minor, IS_LONG, 0, "0")
/PHP-8.3/scripts/dev/
H A Dmakedist49 - Y is minor version number
/PHP-8.3/ext/pdo_oci/
H A Doci_driver.c614 sword major, minor, update, patch, port_update; in oci_handle_get_attribute() local
617 OCIClientVersion(&major, &minor, &update, &patch, &port_update); in oci_handle_get_attribute()
618 slprintf(verstr, sizeof(verstr), "%d.%d.%d.%d.%d", major, minor, update, patch, port_update); in oci_handle_get_attribute()
/PHP-8.3/ext/pdo_pgsql/
H A Dpgsql_driver.c418 int minor = version % 10000; in pdo_libpq_version() local
419 snprintf(buf, len, "%d.%d", major, minor); in pdo_libpq_version()
421 int minor = version / 100 % 100; in pdo_libpq_version() local
423 snprintf(buf, len, "%d.%d.%d", major, minor, revision); in pdo_libpq_version()
/PHP-8.3/docs/
H A Drelease-process.md16 We publish [general availability][] (GA) releases for major and minor versions of
21 Each major and minor version undergoes a 24-week pre-release cycle before GA
23 first alpha release of the new major/minor version. The pre-release cycle
30 Feature freeze for the next major/minor occurs with the first beta release.
656 The first number is the major version, and the second number is the minor
796 (X.Y=major.minor release, e.g. '8.0'):
825 A major/minor version [feature freeze][] occurs with the first beta release.
889 > minor improvements and bug fixes. All major improvements and new features must
911 the next minor or major version (around March 1st or shortly thereafter), the
/PHP-8.3/ext/mysqlnd/
H A Dmysqlnd_connection.c1264 zend_long major, minor, patch; local
1273 minor = ZEND_STRTOL(p, &p, 10);
1277 return (zend_ulong)(major * Z_L(10000) + (zend_ulong)(minor * Z_L(100) + patch));
/PHP-8.3/ext/pgsql/
H A Dpgsql.c434 int minor = version % 10000; in php_libpq_version() local
435 snprintf(buf, len, "%d.%d", major, minor); in php_libpq_version()
437 int minor = version / 100 % 100; in php_libpq_version() local
439 snprintf(buf, len, "%d.%d.%d", major, minor, revision); in php_libpq_version()
/PHP-8.3/ext/dba/
H A Dconfig.m4331 AC_MSG_CHECKING([for DB4 minor version and patch level])
/PHP-8.3/win32/build/
H A Dconfutils.js3227 var minor = ver.substr(3, 2);
3230 AC_DEFINE('PHP_LINKER_MINOR', minor, "Linker minor version", false);
/PHP-8.3/ext/pcre/pcre2lib/
H A Dpcre2_compile.c4419 int minor = 0; in parse_regex() local
4441 minor = (*ptr++ - CHAR_0) * 10; in parse_regex()
4443 if (IS_DIGIT(*ptr)) minor += *ptr++ - CHAR_0; in parse_regex()
4451 *parsed_pattern++ = minor; in parse_regex()
/PHP-8.3/ext/fileinfo/
H A Dlibmagic.patch1584 # define minor(dev) ((dev) & 0xff)
1760 - (long)minor(sb->st_rdev)) == -1)

Completed in 101 milliseconds

12