Home
last modified time | relevance | path

Searched refs:major (Results 1 – 25 of 38) sorted by relevance

12

/PHP-5.3/ext/xsl/
H A Dphp_xsl.c309 int major, minor, subminor; in PHP_MINFO_FUNCTION() local
312 major = xsltLibxsltVersion/10000; in PHP_MINFO_FUNCTION()
313 minor = (xsltLibxsltVersion - major * 10000) / 100; in PHP_MINFO_FUNCTION()
314 subminor = (xsltLibxsltVersion - major * 10000 - minor * 100); in PHP_MINFO_FUNCTION()
315 snprintf(buffer, 128, "%d.%d.%d", major, minor, subminor); in PHP_MINFO_FUNCTION()
317 major = xsltLibxmlVersion/10000; in PHP_MINFO_FUNCTION()
318 minor = (xsltLibxmlVersion - major * 10000) / 100; in PHP_MINFO_FUNCTION()
319 subminor = (xsltLibxmlVersion - major * 10000 - minor * 100); in PHP_MINFO_FUNCTION()
320 snprintf(buffer, 128, "%d.%d.%d", major, minor, subminor); in PHP_MINFO_FUNCTION()
/PHP-5.3/ext/fileinfo/libmagic/
H A Dfsmagic.c53 #ifdef major /* Might be defined in sys/types.h. */
58 # define major(dev) (((dev) >> 8) & 0xff) macro
162 major(sb->st_rdev), dv_unit(sb->st_rdev), in file_fsmagic()
167 (long)major(sb->st_rdev), (long)minor(sb->st_rdev)) in file_fsmagic()
/PHP-5.3/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-5.3/scripts/dev/generate-phpt/src/
H A Dgenerate-phpt.php10 list($major, $minor, $bug) = explode(".", phpversion(), 3);
11 if($major == 5) {
14 if ($major < 5) { die ("Seriously, you need to upgrade you PHP level\n"); }
/PHP-5.3/ext/standard/
H A Dinfo.c266 char *major = NULL, *sub = NULL, *retval; in php_get_windows_name() local
287 major = "Windows Vista"; in php_get_windows_name()
289 major = "Windows Server 2008"; in php_get_windows_name()
294 major = "Windows 7"; in php_get_windows_name()
296 major = "Windows Server 2008 R2"; in php_get_windows_name()
299 major = "Unknow Windows version"; in php_get_windows_name()
362 major = "Windows Server 2003 R2"; in php_get_windows_name()
366 major = "Windows Home Server"; in php_get_windows_name()
371 major = "Windows Server 2003"; in php_get_windows_name()
404 major = "Windows XP"; in php_get_windows_name()
[all …]
/PHP-5.3/ext/intl/tests/_files/
H A Des-bundle.txt11 major:int { 3 }
H A Dresourcebundle.txt11 major:int { 3 }
/PHP-5.3/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_inflate.phpt17 I am the very model of a modern major general, I've information vegetable, animal, and mineral.
H A Dzlib_filter_deflate2.phpt7 $text = 'I am the very model of a modern major general, I\'ve information vegetable, animal, and mi…
/PHP-5.3/ext/bz2/tests/
H A Dbz2_filter_compress.phpt7 $text = 'I am the very model of a modern major general, I\'ve information vegetable, animal, and mi…
H A Dbz2_filter_decompress.phpt17 I am the very model of a modern major general, I've information vegetable, animal, and mineral.
/PHP-5.3/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-5.3/ext/com_dotnet/
H A Dcom_typeinfo.c41 char *strtok_buf, *major, *minor; in php_com_load_typelib() local
52 major = php_strtok_r(NULL, ",", &strtok_buf); in php_com_load_typelib()
61 if (major && minor) { in php_com_load_typelib()
62 major_i = (WORD)atoi(major); in php_com_load_typelib()
71 if (FAILED(hr) && (major == NULL || minor == NULL)) { in php_com_load_typelib()
/PHP-5.3/
H A Dltmain.sh2660 versuffix="-$major"
3317 major=
3335 major=".$current"
3340 major=".$current"
3365 major=.$major
3392 major=".$current"
3400 versuffix="-$major"
3412 major=
3432 major=
3563 major_save=$major
[all …]
H A DREADME.RELEASE_PROCESS123 4. Update ``web/php.git/include/version.inc`` (x=major version number)
195 2. Edit ``phpweb/include/version.inc`` and change (X=major release number):
216 5. Update the ChangeLog file for the given major version
240 highlight the major important things (security fixes) and when it is important
262 2. Edit ``phpweb/include/version.inc`` and change (X=major release number):
276 highlight the major important things (security fixes) and when it is important
H A Dmakerpm123 - Fix rpm build directory for the major distributions.
H A Drun-tests.php64 list($major, $minor, $bug) = explode(".", phpversion(), 3);
70 define("PHP_VERSION_ID", "{$major}0{$minor}$bug");
71 define("PHP_MAJOR_VERSION", $major);
/PHP-5.3/ext/posix/
H A Dposix.c171 ZEND_ARG_INFO(0, major)
873 long major = 0, minor = 0; in PHP_FUNCTION() local
880 &mode, &major, &minor) == FAILURE) { in PHP_FUNCTION()
898 if (major == 0) { in PHP_FUNCTION()
904 php_dev = makedev(major, minor); in PHP_FUNCTION()
/PHP-5.3/ext/pdo_oci/
H A Doci_driver.c504 sword major, minor, update, patch, port_update; in oci_handle_get_attribute() local
507 OCIClientVersion(&major, &minor, &update, &patch, &port_update); in oci_handle_get_attribute()
508 slprintf(verstr, sizeof(verstr), "%d.%d.%d.%d.%d", major, minor, update, patch, port_update); in oci_handle_get_attribute()
/PHP-5.3/ext/sqlite/libsqlite/src/
H A Dparse.c630 YYCODETYPE major; /* The major token value. This is the code member
1216 yyTokenName[yytos->major]); in yy_pop_parser_stack()
1219 yymajor = yytos->major; in yy_pop_parser_stack()
1409 yytos->major = (YYCODETYPE)yyMajor; in yy_shift()
1417 fprintf(yyTraceFILE," %s",yyTokenName[yypParser->yystack[i].major]); in yy_shift()
3113 yymsp->major = (YYCODETYPE)yygoto; in yy_reduce()
3234 yypParser->yystack[0].major = 0; in sqliteParser()
3288 yymx = yypParser->yystack[yypParser->yyidx].major; in sqliteParser()
/PHP-5.3/build/
H A Dlibtool.m41379 soname_spec='${libname}${release}${shared_ext}$major'
1442 soname_spec='${libname}${release}${shared_ext}$major'
1517 soname_spec='${libname}${release}${major}$shared_ext'
1531 soname_spec='${libname}${release}${shared_ext}$major'
1588 soname_spec='${libname}${release}${shared_ext}$major'
1644 soname_spec='${libname}${release}${shared_ext}$major'
1663 soname_spec='${libname}${release}${shared_ext}$major'
1699 soname_spec='${libname}${release}${shared_ext}$major'
1753 soname_spec='${libname}${release}${shared_ext}$major'
1797 soname_spec='${libname}${release}${shared_ext}$major'
[all …]
/PHP-5.3/ext/pcre/pcrelib/
H A DNEWS73 Release 8.30 introduces a major new feature: support for 16-bit character
151 There are two major additions: support for (*MARK) and friends, and the option
299 A few bugs are fixed (see ChangeLog for details), but the major change is a
322 This release has a new major number because there have been some internal
325 to be a bit slower, but there should be no major effect on runtime performance.
386 major new pieces of functionality.
420 In the code, some bugs have been fixed, and there are also some major changes
/PHP-5.3/sapi/litespeed/
H A DREADME6 FastCGI SAPI with there major enhancements: better performance, dynamic
14 A major drawback of FastCGI PHP comparing to Apache mod_php is lacking

Completed in 144 milliseconds

12