Home
last modified time | relevance | path

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

12

/PHP-8.0/ext/xsl/
H A Dphp_xsl.c243 int major, minor, subminor; in PHP_MINFO_FUNCTION() local
247 minor = (xsltLibxsltVersion - major * 10000) / 100; in PHP_MINFO_FUNCTION()
248 subminor = (xsltLibxsltVersion - major * 10000 - minor * 100); in PHP_MINFO_FUNCTION()
249 snprintf(buffer, 128, "%d.%d.%d", major, minor, subminor); in PHP_MINFO_FUNCTION()
252 minor = (xsltLibxmlVersion - major * 10000) / 100; in PHP_MINFO_FUNCTION()
253 subminor = (xsltLibxmlVersion - major * 10000 - minor * 100); in PHP_MINFO_FUNCTION()
254 snprintf(buffer, 128, "%d.%d.%d", major, minor, subminor); in PHP_MINFO_FUNCTION()
/PHP-8.0/ext/pdo_mysql/tests/
H A Dpdo_mysql_attr_server_version.phpt44 $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-8.0/Zend/tests/
H A Dbug44830.phpt2 Bug #44830 (Very minor issue with backslash in heredoc)
/PHP-8.0/ext/intl/tests/_files/
H A Des-bundle.txt12 minor:int { 4 }
H A Dresourcebundle.txt12 minor:int { 4 }
/PHP-8.0/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.0/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.0/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.0/ext/posix/
H A Dposix.stub.php77 function posix_mknod(string $filename, int $flags, int $major = 0, int $minor = 0): bool {} argument
H A Dposix.c651 zend_long major = 0, minor = 0; in PHP_FUNCTION() local
660 Z_PARAM_LONG(minor) in PHP_FUNCTION()
673 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.0/ext/phar/tests/
H A Dcreate_new_and_modify.phpt29 // minor delay here.
/PHP-8.0/ext/phar/tests/tar/
H A Dcreate_new_and_modify.phpt23 // minor delay here.
/PHP-8.0/ext/phar/tests/zip/
H A Dcreate_new_and_modify.phpt23 // minor delay here.
/PHP-8.0/scripts/dev/
H A Dmakedist40 - Y is minor version number
/PHP-8.0/ext/pdo_oci/
H A Doci_driver.c603 sword major, minor, update, patch, port_update; in oci_handle_get_attribute() local
606 OCIClientVersion(&major, &minor, &update, &patch, &port_update); in oci_handle_get_attribute()
607 slprintf(verstr, sizeof(verstr), "%d.%d.%d.%d.%d", major, minor, update, patch, port_update); in oci_handle_get_attribute()
/PHP-8.0/ext/pdo_pgsql/
H A Dpgsql_driver.c417 int minor = version % 10000; in pdo_libpq_version() local
418 snprintf(buf, len, "%d.%d", major, minor); in pdo_libpq_version()
420 int minor = version / 100 % 100; in pdo_libpq_version() local
422 snprintf(buf, len, "%d.%d.%d", major, minor, revision); in pdo_libpq_version()
/PHP-8.0/docs/
H A Drelease-process.md167 2. Skip this step for non stable releases after GA of minor or major versions
276 version, and the second number is the minor version (7.4 in this example).
444 next minor or major release, issue a call for volunteers on
/PHP-8.0/ext/mysqlnd/
H A Dmysqlnd_connection.c1432 zend_long major, minor, patch; local
1441 minor = ZEND_STRTOL(p, &p, 10);
1445 return (zend_ulong)(major * Z_L(10000) + (zend_ulong)(minor * Z_L(100) + patch));
/PHP-8.0/ext/pgsql/
H A Dpgsql.c337 int minor = version % 10000; in php_libpq_version() local
338 snprintf(buf, len, "%d.%d", major, minor); in php_libpq_version()
340 int minor = version / 100 % 100; in php_libpq_version() local
342 snprintf(buf, len, "%d.%d.%d", major, minor, revision); in php_libpq_version()
/PHP-8.0/ext/dba/
H A Dconfig.m4331 AC_MSG_CHECKING([for DB4 minor version and patch level])
/PHP-8.0/win32/build/
H A Dconfutils.js3202 var minor = ver.substr(3, 2);
3205 AC_DEFINE('PHP_LINKER_MINOR', minor, "Linker minor version", false);
/PHP-8.0/ext/pcre/pcre2lib/
H A Dpcre2_compile.c4311 int minor = 0; in parse_regex() local
4333 minor = (*ptr++ - CHAR_0) * 10; in parse_regex()
4334 if (IS_DIGIT(*ptr)) minor += *ptr++ - CHAR_0; in parse_regex()
4342 *parsed_pattern++ = minor; in parse_regex()
/PHP-8.0/
H A DNEWS595 . Fixed bug #81472 (Cannot support large linux major/minor device number when
1372 . Fixed minor regression caused by fixing bug #80220. (cmb)
/PHP-8.0/ext/fileinfo/
H A Dlibmagic.patch2002 # define minor(dev) ((dev) & 0xff)
2178 - (long)minor(sb->st_rdev)) == -1)

Completed in 147 milliseconds

12