Lines Matching refs:year

54 	ZEND_ARG_INFO(0, year)
61 ZEND_ARG_INFO(0, year)
76 ZEND_ARG_INFO(0, year)
86 ZEND_ARG_INFO(0, year)
98 ZEND_ARG_INFO(0, year)
108 ZEND_ARG_INFO(0, year)
122 ZEND_ARG_INFO(0, year)
126 ZEND_ARG_INFO(0, year)
181 typedef long int (*cal_to_jd_func_t) (int month, int day, int year);
182 typedef void (*cal_from_jd_func_t) (long int jd, int *year, int *month, int *day);
183 typedef char *(*cal_as_string_func_t) (int year, int month, int day);
326 long cal, month, year; in PHP_FUNCTION() local
330 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "lll", &cal, &month, &year) == FAILURE) { in PHP_FUNCTION()
341 sdn_start = calendar->to_jd(year, month, 1); in PHP_FUNCTION()
348 sdn_next = calendar->to_jd(year, 1 + month, 1); in PHP_FUNCTION()
354 if (year == -1) { in PHP_FUNCTION()
358 sdn_next = calendar->to_jd(year + 1, 1, 1); in PHP_FUNCTION()
370 long cal, month, day, year; in PHP_FUNCTION() local
372 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "llll", &cal, &month, &day, &year) != SUCCESS… in PHP_FUNCTION()
381 RETURN_LONG(cal_conversion_table[cal].to_jd(year, month, day)); in PHP_FUNCTION()
390 int month, day, year, dow; in PHP_FUNCTION() local
406 calendar->from_jd(jd, &year, &month, &day); in PHP_FUNCTION()
408 snprintf(date, sizeof(date), "%i/%i/%i", month, day, year); in PHP_FUNCTION()
413 add_assoc_long(return_value, "year", year); in PHP_FUNCTION()
431 int year, month, day; in PHP_FUNCTION() local
438 SdnToGregorian(julday, &year, &month, &day); in PHP_FUNCTION()
439 snprintf(date, sizeof(date), "%i/%i/%i", month, day, year); in PHP_FUNCTION()
449 long year, month, day; in PHP_FUNCTION() local
451 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "lll", &month, &day, &year) == FAILURE) { in PHP_FUNCTION()
455 RETURN_LONG(GregorianToSdn(year, month, day)); in PHP_FUNCTION()
464 int year, month, day; in PHP_FUNCTION() local
471 SdnToJulian(julday, &year, &month, &day); in PHP_FUNCTION()
472 snprintf(date, sizeof(date), "%i/%i/%i", month, day, year); in PHP_FUNCTION()
482 long year, month, day; in PHP_FUNCTION() local
484 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "lll", &month, &day, &year) == FAILURE) { in PHP_FUNCTION()
488 RETURN_LONG(JulianToSdn(year, month, day)); in PHP_FUNCTION()
593 int year, month, day; in PHP_FUNCTION() local
601 SdnToJewish(julday, &year, &month, &day); in PHP_FUNCTION()
603 snprintf(date, sizeof(date), "%i/%i/%i", month, day, year); in PHP_FUNCTION()
606 if (year <= 0 || year > 9999) { in PHP_FUNCTION()
611 …number_to_chars(day, fl, &dayp), JewishMonthHebName[month], heb_number_to_chars(year, fl, &yearp)); in PHP_FUNCTION()
630 long year, month, day; in PHP_FUNCTION() local
632 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "lll", &month, &day, &year) == FAILURE) { in PHP_FUNCTION()
636 RETURN_LONG(JewishToSdn(year, month, day)); in PHP_FUNCTION()
645 int year, month, day; in PHP_FUNCTION() local
652 SdnToFrench(julday, &year, &month, &day); in PHP_FUNCTION()
653 snprintf(date, sizeof(date), "%i/%i/%i", month, day, year); in PHP_FUNCTION()
663 long year, month, day; in PHP_FUNCTION() local
665 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "lll", &month, &day, &year) == FAILURE) { in PHP_FUNCTION()
669 RETURN_LONG(FrenchToSdn(year, month, day)); in PHP_FUNCTION()
710 int month, day, year; in PHP_FUNCTION() local
718 SdnToGregorian(julday, &year, &month, &day); in PHP_FUNCTION()
722 SdnToJulian(julday, &year, &month, &day); in PHP_FUNCTION()
726 SdnToJulian(julday, &year, &month, &day); in PHP_FUNCTION()
730 SdnToJewish(julday, &year, &month, &day); in PHP_FUNCTION()
734 SdnToFrench(julday, &year, &month, &day); in PHP_FUNCTION()
739 SdnToGregorian(julday, &year, &month, &day); in PHP_FUNCTION()