Lines Matching refs:month

53 	ZEND_ARG_INFO(0, month)
59 ZEND_ARG_INFO(0, month)
74 ZEND_ARG_INFO(0, month)
84 ZEND_ARG_INFO(0, month)
96 ZEND_ARG_INFO(0, month)
106 ZEND_ARG_INFO(0, month)
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()
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()
411 add_assoc_long(return_value, "month", month); in PHP_FUNCTION()
421 add_assoc_string(return_value, "abbrevmonth", calendar->month_name_short[month], 1); in PHP_FUNCTION()
422 add_assoc_string(return_value, "monthname", calendar->month_name_long[month], 1); 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()
611 …ate), "%s %s %s", heb_number_to_chars(day, fl, &dayp), JewishMonthHebName[month], heb_number_to_ch… 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()
719 monthname = MonthNameLong[month]; in PHP_FUNCTION()
722 SdnToJulian(julday, &year, &month, &day); in PHP_FUNCTION()
723 monthname = MonthNameShort[month]; in PHP_FUNCTION()
726 SdnToJulian(julday, &year, &month, &day); in PHP_FUNCTION()
727 monthname = MonthNameLong[month]; in PHP_FUNCTION()
730 SdnToJewish(julday, &year, &month, &day); in PHP_FUNCTION()
731 monthname = JewishMonthName[month]; in PHP_FUNCTION()
734 SdnToFrench(julday, &year, &month, &day); in PHP_FUNCTION()
735 monthname = FrenchMonthName[month]; in PHP_FUNCTION()
739 SdnToGregorian(julday, &year, &month, &day); in PHP_FUNCTION()
740 monthname = MonthNameShort[month]; in PHP_FUNCTION()