timelib_is_leap    40 ext/date/lib/dow.c 	m1 = timelib_is_leap(y) ? m_table_leap[m] : m_table_common[m];
timelib_is_leap    68 ext/date/lib/dow.c 	return (timelib_is_leap(y) ? d_table_leap[m] : d_table_common[m]) + d - 1;
timelib_is_leap    73 ext/date/lib/dow.c 	return timelib_is_leap(y) ? ml_table_leap[m] : ml_table_common[m];
timelib_is_leap    80 ext/date/lib/dow.c 	y_leap = timelib_is_leap(y);
timelib_is_leap    81 ext/date/lib/dow.c 	prev_y_leap = timelib_is_leap(y-1);
timelib_is_leap    79 ext/date/lib/tm2unixtime.c 			leapyear = timelib_is_leap(year);
timelib_is_leap    89 ext/date/lib/tm2unixtime.c 			leapyear = timelib_is_leap(year);
timelib_is_leap   119 ext/date/lib/tm2unixtime.c 	leapyear = timelib_is_leap(*y);
timelib_is_leap   129 ext/date/lib/tm2unixtime.c 	leapyear = timelib_is_leap(last_year);
timelib_is_leap   317 ext/date/lib/tm2unixtime.c 			if (timelib_is_leap(i)) {
timelib_is_leap   325 ext/date/lib/tm2unixtime.c 			if (timelib_is_leap(i)) {
timelib_is_leap   337 ext/date/lib/tm2unixtime.c 	if (timelib_is_leap(year)) {
timelib_is_leap    66 ext/date/lib/unixtime2tm.c 			if (timelib_is_leap(cur_year)) {
timelib_is_leap    92 ext/date/lib/unixtime2tm.c 				if (timelib_is_leap(cur_year)) {
timelib_is_leap   103 ext/date/lib/unixtime2tm.c 	months = timelib_is_leap(cur_year) ? month_tab_leap : month_tab;
timelib_is_leap   104 ext/date/lib/unixtime2tm.c 	if (timelib_is_leap(cur_year) && cur_year < 1970) {
timelib_is_leap  1114 ext/date/php_date.c 			case 'L': length = slprintf(buffer, 32, "%d", timelib_is_leap((int) t->y)); break;
timelib_is_leap  1313 ext/date/php_date.c 		case 'L': retval = (int) timelib_is_leap((int) t->y); break;