timelib_day_of_week   86 ext/date/lib/dow.c 	jan1weekday = timelib_day_of_week(y, 1, 1);
timelib_day_of_week   87 ext/date/lib/dow.c 	weekday = timelib_day_of_week(y, m, d);
timelib_day_of_week  129 ext/date/lib/dow.c 	dow = timelib_day_of_week(y, 1, 1);
timelib_day_of_week  155 ext/date/lib/dow.c 	printf("dow = %d\n", timelib_day_of_week(1978, 12, 22)); /* 5 */
timelib_day_of_week  156 ext/date/lib/dow.c 	printf("dow = %d\n", timelib_day_of_week(2005,  2, 19)); /* 6 */
timelib_day_of_week   61 ext/date/lib/timelib.h timelib_sll timelib_day_of_week(timelib_sll y, timelib_sll m, timelib_sll d);
timelib_day_of_week  149 ext/date/lib/tm2unixtime.c 	current_dow = timelib_day_of_week(time->y, time->m, time->d);
timelib_day_of_week  226 ext/date/lib/tm2unixtime.c 	dow = timelib_day_of_week(time->y, time->m, time->d);
timelib_day_of_week 1031 ext/date/php_date.c 	timelib_sll day_of_week = timelib_day_of_week(y, m, d);
timelib_day_of_week 1040 ext/date/php_date.c 	timelib_sll day_of_week = timelib_day_of_week(y, m, d);
timelib_day_of_week 1094 ext/date/php_date.c 			case 'w': length = slprintf(buffer, 32, "%d", (int) timelib_day_of_week(t->y, t->m, t->d)); break;
timelib_day_of_week 1302 ext/date/php_date.c 		case 'w': retval = (int) timelib_day_of_week(t->y, t->m, t->d); break;
timelib_day_of_week 1657 ext/date/php_date.c 	ta.tm_wday  = timelib_day_of_week(ts->y, ts->m, ts->d);
timelib_day_of_week 1765 ext/date/php_date.c 		add_assoc_long(return_value, "tm_wday",  timelib_day_of_week(ts->y, ts->m, ts->d));
timelib_day_of_week 1775 ext/date/php_date.c 		add_next_index_long(return_value, timelib_day_of_week(ts->y, ts->m, ts->d));
timelib_day_of_week 1808 ext/date/php_date.c 	add_assoc_long(return_value, "wday", timelib_day_of_week(ts->y, ts->m, ts->d));