/php-src/ext/date/lib/ |
H A D | timelib_private.h | 116 # 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-src/ext/xsl/ |
H A D | php_xsl.c | 338 int major, minor, subminor; in PHP_MINFO_FUNCTION() local 342 minor = (xsltLibxsltVersion - major * 10000) / 100; in PHP_MINFO_FUNCTION() 343 subminor = (xsltLibxsltVersion - major * 10000 - minor * 100); in PHP_MINFO_FUNCTION() 344 snprintf(buffer, 128, "%d.%d.%d", major, minor, subminor); in PHP_MINFO_FUNCTION() 347 minor = (xsltLibxmlVersion - major * 10000) / 100; in PHP_MINFO_FUNCTION() 348 subminor = (xsltLibxmlVersion - major * 10000 - minor * 100); in PHP_MINFO_FUNCTION() 349 snprintf(buffer, 128, "%d.%d.%d", major, minor, subminor); in PHP_MINFO_FUNCTION()
|
/php-src/.github/ |
H A D | nightly_matrix.php | 45 $minor = (int) $matches['num']; 46 return [$major, $minor];
|
/php-src/ext/pdo_mysql/tests/ |
H A D | pdo_mysql_attr_server_version.phpt | 44 $minor = floor(($version - ($main * 10000)) / 100); 45 $sub = $version - ($main * 10000) - ($minor * 100); 48 if ($minor < 0) 49 printf("[007] Minor version should be at least 0, got '%s'\n", $minor);
|
/php-src/ext/curl/ |
H A D | config.m4 | 36 int major, minor; 43 if (sscanf(ptr, "OpenSSL/%d.%d", &major, &minor) == 2) { 44 if (major > 1 || (major == 1 && minor >= 1)) {
|
/php-src/Zend/tests/ |
H A D | bug44830.phpt | 2 Bug #44830 (Very minor issue with backslash in heredoc)
|
/php-src/ext/intl/tests/_files/ |
H A D | resourcebundle.txt | 12 minor:int { 4 }
|
H A D | es-bundle.txt | 12 minor:int { 4 }
|
/php-src/ext/fileinfo/libmagic/ |
H A D | fsmagic.c | 66 # define minor(dev) ((dev) & 0xff) macro 158 (long)minor(sb->st_rdev)) == -1) in file_fsmagic()
|
/php-src/win32/ |
H A D | winutil.c | 448 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-src/ext/com_dotnet/ |
H A D | com_typeinfo.c | 64 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-src/ext/phar/tests/zip/ |
H A D | create_new_and_modify.phpt | 23 // minor delay here.
|
/php-src/ext/phar/tests/tar/ |
H A D | create_new_and_modify.phpt | 23 // minor delay here.
|
/php-src/ext/phar/tests/ |
H A D | create_new_and_modify.phpt | 29 // minor delay here.
|
/php-src/ext/posix/ |
H A D | posix.stub.php | 398 function posix_mknod(string $filename, int $flags, int $major = 0, int $minor = 0): bool {} argument
|
H A D | posix.c | 614 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 D | posix_arginfo.h | 109 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, minor, IS_LONG, 0, "0")
|
/php-src/scripts/dev/ |
H A D | makedist | 57 - Y is minor version number
|
/php-src/ext/pdo_pgsql/ |
H A D | pgsql_driver.c | 443 int minor = version % 10000; in pdo_libpq_version() local 444 snprintf(buf, len, "%d.%d", major, minor); in pdo_libpq_version() 446 int minor = version / 100 % 100; in pdo_libpq_version() local 448 snprintf(buf, len, "%d.%d.%d", major, minor, revision); in pdo_libpq_version()
|
/php-src/docs/ |
H A D | release-process.md | 15 We publish [general availability][] (GA) releases for major and minor versions of 20 Each major and minor version undergoes a 24-week pre-release cycle before GA 22 first alpha release of the new major/minor version. The pre-release cycle 29 Feature freeze for the next major/minor occurs with the first beta release. 668 The first number is the major version, and the second number is the minor 817 (X.Y=major.minor release, e.g. '8.0'): 846 A major/minor version [feature freeze][] occurs with the first beta release. 910 > minor improvements and bug fixes. All major improvements and new features must 962 the next minor or major version (around March 1st or shortly thereafter), the
|
/php-src/ext/mysqlnd/ |
H A D | mysqlnd_connection.c | 1264 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-src/ext/pgsql/ |
H A D | pgsql.c | 550 int minor = version % 10000; in php_libpq_version() local 551 snprintf(buf, len, "%d.%d", major, minor); in php_libpq_version() 553 int minor = version / 100 % 100; in php_libpq_version() local 555 snprintf(buf, len, "%d.%d.%d", major, minor, revision); in php_libpq_version()
|
/php-src/win32/build/ |
H A D | confutils.js | 3223 var minor = ver.substr(3, 2); 3226 AC_DEFINE('PHP_LINKER_MINOR', minor, "Linker minor version", false);
|
/php-src/ext/dba/ |
H A D | config.m4 | 362 AC_MSG_CHECKING([for DB4 minor version and patch level])
|
/php-src/ext/pcre/pcre2lib/ |
H A D | pcre2_compile.c | 4630 int minor = 0; in parse_regex() local 4652 minor = (*ptr++ - CHAR_0) * 10; in parse_regex() 4654 if (IS_DIGIT(*ptr)) minor += *ptr++ - CHAR_0; in parse_regex() 4662 *parsed_pattern++ = minor; in parse_regex()
|