timelib_day_of_week   92 date/lib/dow.c 	jan1weekday = timelib_day_of_week(y, 1, 1);
timelib_day_of_week   93 date/lib/dow.c 	weekday = timelib_day_of_week(y, m, d);
timelib_day_of_week  135 date/lib/dow.c 	dow = timelib_day_of_week(y, 1, 1);
timelib_day_of_week  161 date/lib/dow.c 	printf("dow = %d\n", timelib_day_of_week(1978, 12, 22)); /* 5 */
timelib_day_of_week  162 date/lib/dow.c 	printf("dow = %d\n", timelib_day_of_week(2005,  2, 19)); /* 6 */
timelib_day_of_week   61 date/lib/timelib.h timelib_sll timelib_day_of_week(timelib_sll y, timelib_sll m, timelib_sll d);
timelib_day_of_week  149 date/lib/tm2unixtime.c 	current_dow = timelib_day_of_week(time->y, time->m, time->d);
timelib_day_of_week  227 date/lib/tm2unixtime.c 	current_dow = timelib_day_of_week(time->y, time->m, time->d);
timelib_day_of_week  249 date/lib/tm2unixtime.c 		current_dow = timelib_day_of_week(time->y, time->m, time->d);
timelib_day_of_week  266 date/lib/tm2unixtime.c 		current_dow = timelib_day_of_week(time->y, time->m, time->d);
timelib_day_of_week  927 date/php_date.c 	timelib_sll day_of_week = timelib_day_of_week(y, m, d);
timelib_day_of_week  936 date/php_date.c 	timelib_sll day_of_week = timelib_day_of_week(y, m, d);
timelib_day_of_week  990 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 1198 date/php_date.c 		case 'w': retval = (int) timelib_day_of_week(t->y, t->m, t->d); break;
timelib_day_of_week 1555 date/php_date.c 	ta.tm_wday  = timelib_day_of_week(ts->y, ts->m, ts->d);
timelib_day_of_week 1653 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 1663 date/php_date.c 		add_next_index_long(return_value, timelib_day_of_week(ts->y, ts->m, ts->d));
timelib_day_of_week 1696 date/php_date.c 	add_assoc_long(return_value, "wday", timelib_day_of_week(ts->y, ts->m, ts->d));