timelib_is_leap    46 date/lib/dow.c 	m1 = timelib_is_leap(y) ? m_table_leap[m] : m_table_common[m];
timelib_is_leap    74 date/lib/dow.c 	return (timelib_is_leap(y) ? d_table_leap[m] : d_table_common[m]) + d - 1;
timelib_is_leap    79 date/lib/dow.c 	return timelib_is_leap(y) ? ml_table_leap[m] : ml_table_common[m];
timelib_is_leap    86 date/lib/dow.c 	y_leap = timelib_is_leap(y);
timelib_is_leap    87 date/lib/dow.c 	prev_y_leap = timelib_is_leap(y-1);
timelib_is_leap    79 date/lib/tm2unixtime.c 			leapyear = timelib_is_leap(year);
timelib_is_leap    89 date/lib/tm2unixtime.c 			leapyear = timelib_is_leap(year);
timelib_is_leap   119 date/lib/tm2unixtime.c 	leapyear = timelib_is_leap(*y);
timelib_is_leap   129 date/lib/tm2unixtime.c 	leapyear = timelib_is_leap(last_year);
timelib_is_leap   320 date/lib/tm2unixtime.c 			if (timelib_is_leap(i)) {
timelib_is_leap   328 date/lib/tm2unixtime.c 			if (timelib_is_leap(i)) {
timelib_is_leap   340 date/lib/tm2unixtime.c 	if (timelib_is_leap(year)) {
timelib_is_leap    66 date/lib/unixtime2tm.c 			if (timelib_is_leap(cur_year)) {
timelib_is_leap    92 date/lib/unixtime2tm.c 				if (timelib_is_leap(cur_year)) {
timelib_is_leap   103 date/lib/unixtime2tm.c 	months = timelib_is_leap(cur_year) ? month_tab_leap : month_tab;
timelib_is_leap   104 date/lib/unixtime2tm.c 	if (timelib_is_leap(cur_year) && cur_year < 1970) {
timelib_is_leap  1010 date/php_date.c 			case 'L': length = slprintf(buffer, 32, "%d", timelib_is_leap((int) t->y)); break;
timelib_is_leap  1209 date/php_date.c 		case 'L': retval = (int) timelib_is_leap((int) t->y); break;