timelib_is_leap    56 ext/date/lib/dow.c 	m1 = timelib_is_leap(y) ? m_table_leap[m] : m_table_common[m];
timelib_is_leap    84 ext/date/lib/dow.c 	return (timelib_is_leap(y) ? d_table_leap[m] : d_table_common[m]) + d - 1;
timelib_is_leap    89 ext/date/lib/dow.c 	return timelib_is_leap(y) ? ml_table_leap[m] : ml_table_common[m];
timelib_is_leap    96 ext/date/lib/dow.c 	y_leap = timelib_is_leap(y);
timelib_is_leap    97 ext/date/lib/dow.c 	prev_y_leap = timelib_is_leap(y-1);
timelib_is_leap    82 ext/date/lib/tm2unixtime.c 			leapyear = timelib_is_leap(year);
timelib_is_leap    92 ext/date/lib/tm2unixtime.c 			leapyear = timelib_is_leap(year);
timelib_is_leap   122 ext/date/lib/tm2unixtime.c 	leapyear = timelib_is_leap(*y);
timelib_is_leap   132 ext/date/lib/tm2unixtime.c 	leapyear = timelib_is_leap(last_year);
timelib_is_leap   331 ext/date/lib/tm2unixtime.c 			if (timelib_is_leap(i)) {
timelib_is_leap   339 ext/date/lib/tm2unixtime.c 			if (timelib_is_leap(i)) {
timelib_is_leap   351 ext/date/lib/tm2unixtime.c 	if (timelib_is_leap(year)) {
timelib_is_leap    70 ext/date/lib/unixtime2tm.c 			if (timelib_is_leap(cur_year)) {
timelib_is_leap    96 ext/date/lib/unixtime2tm.c 				if (timelib_is_leap(cur_year)) {
timelib_is_leap   107 ext/date/lib/unixtime2tm.c 	months = timelib_is_leap(cur_year) ? month_tab_leap : month_tab;
timelib_is_leap   108 ext/date/lib/unixtime2tm.c 	if (timelib_is_leap(cur_year) && cur_year < 1970) {
timelib_is_leap  1136 ext/date/php_date.c 			case 'L': length = slprintf(buffer, 32, "%d", timelib_is_leap((int) t->y)); break;
timelib_is_leap  1333 ext/date/php_date.c 		case 'L': retval = (int) timelib_is_leap((int) t->y); break;