Searched refs:timelib_day_of_week (Results 1 – 4 of 4) sorted by relevance
/PHP-5.4/ext/date/lib/ |
H A D | dow.c | 50 timelib_sll timelib_day_of_week(timelib_sll y, timelib_sll m, timelib_sll d) in timelib_day_of_week() function 86 jan1weekday = timelib_day_of_week(y, 1, 1); in timelib_isoweek_from_date() 87 weekday = timelib_day_of_week(y, m, d); in timelib_isoweek_from_date() 129 dow = timelib_day_of_week(y, 1, 1); in timelib_daynr_from_weeknr() 155 printf("dow = %d\n", timelib_day_of_week(1978, 12, 22)); /* 5 */ 156 printf("dow = %d\n", timelib_day_of_week(2005, 2, 19)); /* 6 */
|
H A D | tm2unixtime.c | 148 current_dow = timelib_day_of_week(time->y, time->m, time->d); in do_adjust_for_weekday() 226 current_dow = timelib_day_of_week(time->y, time->m, time->d); in do_adjust_special_weekday() 248 current_dow = timelib_day_of_week(time->y, time->m, time->d); in do_adjust_special_weekday() 265 current_dow = timelib_day_of_week(time->y, time->m, time->d); in do_adjust_special_weekday()
|
H A D | timelib.h | 61 timelib_sll timelib_day_of_week(timelib_sll y, timelib_sll m, timelib_sll d);
|
/PHP-5.4/ext/date/ |
H A D | php_date.c | 991 timelib_sll day_of_week = timelib_day_of_week(y, m, d); in php_date_full_day_name() 1000 timelib_sll day_of_week = timelib_day_of_week(y, m, d); in php_date_short_day_name() 1054 … case 'w': length = slprintf(buffer, 32, "%d", (int) timelib_day_of_week(t->y, t->m, t->d)); break; in date_format() 1262 case 'w': retval = (int) timelib_day_of_week(t->y, t->m, t->d); break; in php_idate() 1620 ta.tm_wday = timelib_day_of_week(ts->y, ts->m, ts->d); in php_strftime() 1718 add_assoc_long(return_value, "tm_wday", timelib_day_of_week(ts->y, ts->m, ts->d)); in PHP_FUNCTION() 1728 add_next_index_long(return_value, timelib_day_of_week(ts->y, ts->m, ts->d)); in PHP_FUNCTION() 1761 add_assoc_long(return_value, "wday", timelib_day_of_week(ts->y, ts->m, ts->d)); in PHP_FUNCTION()
|
Completed in 23 milliseconds