| /PHP_TRUNK/ext/date/tests/ |
| H A D | DateTime_data-dates.inc | 12 * Particular days 41 * Particular days, negative
|
| H A D | examine_diff.inc | 4 * Helper for the DateTime diff/days/math tests 29 * @param int $expect_days the number of days to compare with the 30 * interval's "days" property
|
| /PHP_TRUNK/ext/date/lib/ |
| H A D | interval.c | 63 rt->days = abs(floor((one->sse - two->sse - (dst_h_corr * 3600) - (dst_m_corr * 60)) / 86400));
|
| 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;
|
| H A D | parse_iso_intervals.c | 1086 in.period->days = TIMELIB_UNSET;
|
| H A D | parse_iso_intervals.re | 480 in.period->days = TIMELIB_UNSET;
|
| H A D | timelib.c | 274 printf("%3lldY %3lldM %3lldD / %3lldH %3lldM %3lldS (days: %lld)%s", 275 d->y, d->m, d->d, d->h, d->i, d->s, d->days, d->invert ? " inverted" : "");
|
| H A D | parse_date.re | 198 { "days", TIMELIB_DAY, 1 }, 1799 in.time->relative.days = TIMELIB_UNSET;
|
| /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...] |
| /PHP_TRUNK/ext/openssl/ |
| H A D | openssl.c | 192 ZEND_ARG_INFO(0, days) 2686 /* {{{ proto resource openssl_csr_sign(mixed csr, mixed x509, mixed priv_key, long days [, array config_args [, long serial]])
|
| /PHP_TRUNK/ext/date/ |
| H A D | php_date.c | 2411 if (intervalobj->diff->days != -99999) { 2412 PHP_DATE_INTERVAL_ADD_PROPERTY_I64("days", days); 2416 zend_hash_update(props, "days", 5, &zv, sizeof(zval), NULL); 4055 GET_VALUE_FROM_STRUCT(days, "days"); 4199 PHP_DATE_INTERVAL_READ_PROPERTY_I64("days", days); 4303 if ((int) t->days != -99999) { 4304 length = slprintf(buffer, 32, "%d", (int) t->days); [all...] |