timelib_is_leap    52 ext/date/lib/dow.c 	m1 = timelib_is_leap(y) ? m_table_leap[m] : m_table_common[m];
timelib_is_leap    80 ext/date/lib/dow.c 	return (timelib_is_leap(y) ? d_table_leap[m] : d_table_common[m]) + d - 1;
timelib_is_leap    85 ext/date/lib/dow.c 	return timelib_is_leap(y) ? ml_table_leap[m] : ml_table_common[m];
timelib_is_leap    92 ext/date/lib/dow.c 	y_leap = timelib_is_leap(y);
timelib_is_leap    93 ext/date/lib/dow.c 	prev_y_leap = timelib_is_leap(y-1);
timelib_is_leap    78 ext/date/lib/tm2unixtime.c 			leapyear = timelib_is_leap(year);
timelib_is_leap    88 ext/date/lib/tm2unixtime.c 			leapyear = timelib_is_leap(year);
timelib_is_leap   118 ext/date/lib/tm2unixtime.c 	leapyear = timelib_is_leap(*y);
timelib_is_leap   128 ext/date/lib/tm2unixtime.c 	leapyear = timelib_is_leap(last_year);
timelib_is_leap   327 ext/date/lib/tm2unixtime.c 			if (timelib_is_leap(i)) {
timelib_is_leap   335 ext/date/lib/tm2unixtime.c 			if (timelib_is_leap(i)) {
timelib_is_leap   347 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  1124 ext/date/php_date.c 			case 'L': length = slprintf(buffer, 32, "%d", timelib_is_leap((int) t->y)); break;
timelib_is_leap  1323 ext/date/php_date.c 		case 'L': retval = (int) timelib_is_leap((int) t->y); break;