timelib_day_of_year   94 ext/date/lib/dow.c 	doy = timelib_day_of_year(y, m, d) + 1;
timelib_day_of_year   66 ext/date/lib/timelib.h timelib_sll timelib_day_of_year(timelib_sll y, timelib_sll m, timelib_sll d);
timelib_day_of_year 1106 ext/date/php_date.c 			case 'z': length = slprintf(buffer, 32, "%d", (int) timelib_day_of_year(t->y, t->m, t->d)); break;
timelib_day_of_year 1313 ext/date/php_date.c 		case 'z': retval = (int) timelib_day_of_year(t->y, t->m, t->d); break;
timelib_day_of_year 1668 ext/date/php_date.c 	ta.tm_yday  = timelib_day_of_year(ts->y, ts->m, ts->d);
timelib_day_of_year 1776 ext/date/php_date.c 		add_assoc_long(return_value, "tm_yday",  timelib_day_of_year(ts->y, ts->m, ts->d));
timelib_day_of_year 1786 ext/date/php_date.c 		add_next_index_long(return_value, timelib_day_of_year(ts->y, ts->m, ts->d));
timelib_day_of_year 1821 ext/date/php_date.c 	add_assoc_long(return_value, "yday", timelib_day_of_year(ts->y, ts->m, ts->d));