Searched refs:major (Results 1 - 11 of 11) sorted by relevance
| /PHP_5_5/ext/sqlite3/libsqlite/ |
| H A D | sqlite3.c | 635 ** format "X.Y.Z" where X is the major version number (always 3 for 104166 YYCODETYPE major; /* The major token value. This is the code member in struct:yyStackEntry [all...] |
| /PHP_5_5/ |
| H A D | ltmain.sh | 2659 major=`expr $current - $age` 2660 versuffix="-$major" 3251 # use the current revision as the major version 3317 major= 3326 major=.`expr $current - $age` 3327 versuffix="$major.$age.$revision" 3335 major=".$current" 3340 major=".$current" 3346 major=`expr $current - $age` 3348 major [all...] |
| H A D | makerpm | 123 - Fix rpm build directory for the major distributions.
|
| H A D | run-tests.php | 64 list($major, $minor, $bug) = explode(".", phpversion(), 3); 70 define("PHP_VERSION_ID", "{$major}0{$minor}$bug"); 71 define("PHP_MAJOR_VERSION", $major);
|
| /PHP_5_5/scripts/dev/generate-phpt/src/ |
| H A D | generate-phpt.php | 10 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_5/ext/com_dotnet/ |
| H A D | com_typeinfo.c | 35 * b) a CLSID, major, minor e.g. "{00000200-0000-0010-8000-00AA006D2EA4},2,0" 41 char *strtok_buf, *major, *minor; local 52 major = php_strtok_r(NULL, ",", &strtok_buf); 60 /* pick up the major/minor numbers; if none specified, default to 1,0 */ 61 if (major && minor) { 62 major_i = (WORD)atoi(major); 71 if (FAILED(hr) && (major == NULL || minor == NULL)) {
|
| /PHP_5_5/ext/posix/ |
| H A D | posix.c | 171 ZEND_ARG_INFO(0, major) 860 /* {{{ proto bool posix_mknod(string pathname, int mode [, int major [, int minor]]) 868 long major = 0, minor = 0; local 875 &mode, &major, &minor) == FAILURE) { 885 php_error_docref(NULL TSRMLS_CC, E_WARNING, "For S_IFCHR and S_IFBLK you need to pass a major device kernel identifier"); 888 if (major == 0) { 894 php_dev = makedev(major, minor);
|
| /PHP_5_5/ext/xsl/ |
| H A D | php_xsl.c | 310 int major, minor, subminor; local 313 major = xsltLibxsltVersion/10000; 314 minor = (xsltLibxsltVersion - major * 10000) / 100; 315 subminor = (xsltLibxsltVersion - major * 10000 - minor * 100); 316 snprintf(buffer, 128, "%d.%d.%d", major, minor, subminor); 318 major = xsltLibxmlVersion/10000; 319 minor = (xsltLibxmlVersion - major * 10000) / 100; 320 subminor = (xsltLibxmlVersion - major * 10000 - minor * 100); 321 snprintf(buffer, 128, "%d.%d.%d", major, minor, subminor);
|
| /PHP_5_5/ext/standard/ |
| H A D | info.c | 301 char *major = NULL, *sub = NULL, *retval; local 322 major = "Windows Vista"; 324 major = "Windows Server 2008"; 329 major = "Windows 7"; 331 major = "Windows Server 2008 R2"; 335 major = "Windows 8"; 337 major = "Windows Server 2012"; 340 major = "Unknown Windows version"; 403 major = "Windows Server 2003 R2"; 405 major [all...] |
| /PHP_5_5/ext/fileinfo/libmagic/ |
| H A D | fsmagic.c | 44 /* Since major is a function on SVR4, we cannot use `ifndef major'. */ 53 #ifdef major /* Might be defined in sys/types.h. */ 58 # define major(dev) (((dev) >> 8) & 0xff) macro 167 COMMA, major(sb->st_rdev), dv_unit(sb->st_rdev), 172 COMMA, (long)major(sb->st_rdev),
|
| /PHP_5_5/ext/mysqlnd/ |
| H A D | mysqlnd.c | 2078 long major, minor, patch; local 2085 major = strtol(p, &p, 10); 2091 return (unsigned long)(major * 10000L + (unsigned long)(minor * 100L + patch));
|
Completed in 137 milliseconds