| /PHP_5_3/ext/sqlite/libsqlite/src/ |
| H A D | parse.c | 622 ** (In other words, the "major" token.) 630 YYCODETYPE major; /* The major token value. This is the code member in struct:yyStackEntry 1205 ** Return the major token number for the symbol popped. 1216 yyTokenName[yytos->major]); 1219 yymajor = yytos->major; 1383 int yyMajor, /* The major token to shift in */ 1409 yytos->major = (YYCODETYPE)yyMajor; 1417 fprintf(yyTraceFILE," %s",yyTokenName[yypParser->yystack[i].major]); 3113 yymsp->major [all...] |
| /PHP_5_3/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_3/ |
| 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_3/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_3/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 162 major(sb->st_rdev), dv_unit(sb->st_rdev), 167 (long)major(sb->st_rdev), (long)minor(sb->st_rdev))
|
| /PHP_5_3/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_3/ext/posix/ |
| H A D | posix.c | 171 ZEND_ARG_INFO(0, major) 865 /* {{{ proto bool posix_mknod(string pathname, int mode [, int major [, int minor]]) 873 long major = 0, minor = 0; local 880 &mode, &major, &minor) == FAILURE) { 895 php_error_docref(NULL TSRMLS_CC, E_WARNING, "For S_IFCHR and S_IFBLK you need to pass a major device kernel identifier"); 898 if (major == 0) { 904 php_dev = makedev(major, minor);
|
| /PHP_5_3/ext/standard/ |
| H A D | info.c | 266 char *major = NULL, *sub = NULL, *retval; local 287 major = "Windows Vista"; 289 major = "Windows Server 2008"; 294 major = "Windows 7"; 296 major = "Windows Server 2008 R2"; 299 major = "Unknow Windows version"; 362 major = "Windows Server 2003 R2"; 364 major = "Windows Storage Server 2003"; 366 major = "Windows Home Server"; 369 major [all...] |
| /PHP_5_3/ext/xsl/ |
| H A D | php_xsl.c | 309 int major, minor, subminor; local 312 major = xsltLibxsltVersion/10000; 313 minor = (xsltLibxsltVersion - major * 10000) / 100; 314 subminor = (xsltLibxsltVersion - major * 10000 - minor * 100); 315 snprintf(buffer, 128, "%d.%d.%d", major, minor, subminor); 317 major = xsltLibxmlVersion/10000; 318 minor = (xsltLibxmlVersion - major * 10000) / 100; 319 subminor = (xsltLibxmlVersion - major * 10000 - minor * 100); 320 snprintf(buffer, 128, "%d.%d.%d", major, minor, subminor);
|
| /PHP_5_3/ext/mysqlnd/ |
| H A D | mysqlnd.c | 1898 long major, minor, patch; local 1905 major = strtol(p, &p, 10); 1911 return (unsigned long)(major * 10000L + (unsigned long)(minor * 100L + patch));
|