Searched defs:days (Results 1 - 5 of 5) sorted by relevance
| /PHP_TRUNK/ext/date/lib/ |
| H A D | timelib_structs.h | 139 timelib_sll days; /* Contains the number of *days*, instead of Y-M-D differences */ member in struct:timelib_rel_time 215 /* 400*365 days + 97 leap days */
|
| H A D | tm2unixtime.c | 66 timelib_sll days; local 74 printf( "S: Y%d M%d %d %d %d %d\n", year, month, *y, *m, *d, days); 80 days = leapyear ? days_in_month_leap[month] : days_in_month[month]; 82 /* printf( "I Y%d M%d %d %d %d %d\n", year, month, *y, *m, *d, days); */ 84 *d += days; 90 days = leapyear ? days_in_month_leap[month] : days_in_month[month]; 92 /* printf( "I Y%d M%d %d %d %d %d\n", year, month, *y, *m, *d, days); */ 94 *d += days; 100 printf( "E: Y%d M%d %d %d %d %d\n", year, month, *y, *m, *d, days);
|
| H A D | unixtime2tm.c | 42 timelib_sll days, remainder, tmp_days; local 48 days = ts / SECS_PER_DAY; 49 remainder = ts - (days * SECS_PER_DAY); 51 days++; 54 TIMELIB_DEBUG(printf("days=%lld, rem=%lld\n", days, remainder);); 57 tmp_days = days + 1; 73 tmp_days = days;
|
| /PHP_TRUNK/ext/fileinfo/libmagic/ |
| H A D | cdf.c | 1031 int days, hours, mins, secs; local 1040 days = (int)ts; 1042 if (days) { 1043 len += snprintf(buf + len, bufsiz - len, "%dd+", days); 1048 if (days || hours) {
|
| H A D | cdf_time.c | 49 * Return the number of days between jan 01 1601 and jan 01 of year. 54 int days = 0; local 58 days += isleap(y) + 365; 60 return days; 67 cdf_getday(int year, int days) argument 73 if (days < sub) 74 return days; 75 days -= sub; 77 return days; 84 cdf_getmonth(int year, int days) argument [all...] |
Completed in 6 milliseconds