timelib_day_of_week   98 ext/date/lib/dow.c 	jan1weekday = timelib_day_of_week(y, 1, 1);
timelib_day_of_week   99 ext/date/lib/dow.c 	weekday = timelib_day_of_week(y, m, d);
timelib_day_of_week  141 ext/date/lib/dow.c 	dow = timelib_day_of_week(y, 1, 1);
timelib_day_of_week  167 ext/date/lib/dow.c 	printf("dow = %d\n", timelib_day_of_week(1978, 12, 22)); /* 5 */
timelib_day_of_week  168 ext/date/lib/dow.c 	printf("dow = %d\n", timelib_day_of_week(2005,  2, 19)); /* 6 */
timelib_day_of_week   64 ext/date/lib/timelib.h timelib_sll timelib_day_of_week(timelib_sll y, timelib_sll m, timelib_sll d);
timelib_day_of_week  148 ext/date/lib/tm2unixtime.c 	current_dow = timelib_day_of_week(time->y, time->m, time->d);
timelib_day_of_week  227 ext/date/lib/tm2unixtime.c 	dow = timelib_day_of_week(time->y, time->m, time->d);
timelib_day_of_week 1041 ext/date/php_date.c 	timelib_sll day_of_week = timelib_day_of_week(y, m, d);
timelib_day_of_week 1050 ext/date/php_date.c 	timelib_sll day_of_week = timelib_day_of_week(y, m, d);
timelib_day_of_week 1104 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 1312 ext/date/php_date.c 		case 'w': retval = (int) timelib_day_of_week(t->y, t->m, t->d); break;
timelib_day_of_week 1667 ext/date/php_date.c 	ta.tm_wday  = timelib_day_of_week(ts->y, ts->m, ts->d);
timelib_day_of_week 1775 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 1785 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 1818 ext/date/php_date.c 	add_assoc_long(return_value, "wday", timelib_day_of_week(ts->y, ts->m, ts->d));