| /src/external/gpl2/xcvs/dist/contrib/ |
| clmerge.in | 38 %months = ('Jan', 0, 153 $r = $months{substr ($a, 4, 3)} <=> $months{substr ($b, 4, 3)} if !$r;
|
| /src/external/bsd/ntp/dist/libntp/ |
| humandate.c | 32 tm->tm_mday, months[tm->tm_mon],
|
| prettydate.c | 21 const char * const months[12] = { variable 197 daynames[jd.weekday], months[jd.month-1], 203 daynames[tm->tm_wday], months[tm->tm_mon],
|
| /src/crypto/external/apache2/openssl/dist/crypto/x509/ |
| v3_timespec.c | 100 ASN1_EXP_OPT(OSSL_TIME_PERIOD, months, OSSL_TIME_SPEC_MONTH, 3), 368 } else if (p->months != NULL) { 454 if (p->months != NULL) { 492 if (p->months) { 495 switch (p->months->type) { 501 for (i = 0; i < sk_ASN1_INTEGER_num(p->months->choice.intMonth); i++) { 502 big_val = sk_ASN1_INTEGER_value(p->months->choice.intMonth, i); 512 if (!print_bit_month(out, p->months->choice.bitMonth))
|
| /src/usr.bin/quota/ |
| printquota.c | 102 time_t years, months, weeks, days, hours, minutes; local 113 months = (seconds + MONTH / 2) / MONTH; 121 (void)snprintf(buf, len, "%" PRId64 "months", months);
|
| /src/crypto/external/apache2/openssl/dist/test/recipes/ |
| 80-test_ca.t | 286 my %months = ( 291 return timegm($s, $m, $h, $d, $months{$mo}, $y);
|
| /src/crypto/external/bsd/openssl/dist/test/recipes/ |
| 80-test_ca.t | 272 my %months = ( 277 return timegm($s, $m, $h, $d, $months{$mo}, $y);
|
| /src/crypto/external/bsd/heimdal/dist/tests/db/ |
| add-modify-delete.in | 104 ${kadmin} modify --max-renewable-life=2months foo 107 ${EGREP} " *Max renewable life: 2 months$" tempfile > /dev/null || exit 1
|
| /src/external/apache2/llvm/dist/libcxx/src/ |
| locale.cpp | 4760 static string months[24]; local 4761 months[0] = "January"; 4762 months[1] = "February"; 4763 months[2] = "March"; 4764 months[3] = "April"; 4765 months[4] = "May"; 4766 months[5] = "June"; 4767 months[6] = "July"; 4768 months[7] = "August"; 4769 months[8] = "September" 4792 static wstring months[24]; local 4824 static const string* months = init_months(); local 4832 static const wstring* months = init_wmonths(); local [all...] |
| /src/usr.bin/calendar/ |
| calendar.c | 111 static const char *months[] = { variable 651 for (p = months; *p; ++p) 653 return (int)(p - months) + 1;
|
| /src/external/bsd/ipf/dist/perl/ |
| Ipfanaly.pl | 42 $month=$months{$monthis}; 433 %months=("01","January","02","February","03","March","04","April","05","May","06","June","07","July","08","August","09","September","10","October","11","November","12","December");
|
| /src/external/bsd/ntp/dist/include/ |
| ntp_calendar.h | 115 extern const char * const months[12]; 205 ntpcal_days_in_months(int32_t /* months */); 208 * Convert ELAPSED years/months/days of gregorian calendar to elapsed 212 ntpcal_edate_to_eradays(int32_t /* years */, int32_t /* months */, int32_t /* mdays */); 221 * Convert ELAPSED years/months/days of gregorian calendar to elapsed 225 * even if months & days are off-scale. 228 ntpcal_edate_to_yeardays(int32_t /* years */, int32_t /* months */, int32_t /* mdays */); 260 * split the number of elapsed days into the number of elapsed months
|
| /src/external/gpl2/groff/dist/src/preproc/refer/ |
| ref.cpp | 933 static const char *months[] = { local 956 for (unsigned int i = 0; i < sizeof(months)/sizeof(months[0]); i++) { 957 const char *q = months[i];
|
| /src/usr.bin/make/unit-tests/ |
| var-scope-cmdline.mk | 47 # Var_Delete to delete the global variable. Just two months earlier, in var.c
|
| /src/external/bsd/libbind/dist/isc/ |
| logging.c | 53 static const char *months[] = { "Jan", "Feb", "Mar", "Apr", "May", "Jun", variable 324 local_tm->tm_mday, months[local_tm->tm_mon],
|
| /src/external/gpl3/gcc.old/dist/libphobos/src/std/datetime/ |
| interval.d | 1136 static if (__traits(compiles, begin.add!"months"(1)) && 1141 of years and/or months (a positive number of years and months shifts 1143 It adds the years the given years and months to both begin and end. 1144 It effectively calls `add!"years"()` and then `add!"months"()` 1145 on begin and end with the given number of years and months. 1149 months = The number of months to shift the interval by. 1170 void shift(T)(T years, T months = 0, AllowDayOverflow allowOverflow = AllowDayOverflow.yes) 1179 begin.add!"months"(months, allowOverflow) [all...] |
| date.d | 66 Represents the 12 months of the Gregorian year (January is 1). 114 In some date calculations, adding months or years can cause the date to fall 123 AllowDayOverflow only applies to calculations involving months or years. 139 `"minutes"`, `"hours"`, `"days"`, `"weeks"`, `"months"`, and 143 "hours", "days", "weeks", "months", "years"]; 1055 Adds the given number of years or months to this $(LREF DateTime), 1067 units = The type of units to add ("years" or "months"). 1068 value = The number of months or years to add to this 1078 if (units == "years" || units == "months") 1088 dt1.add!"months"(11) [all...] |
| systime.d | 2765 Adds the given number of years or months to this $(LREF SysTime). A 2777 units = The type of units to add ("years" or "months"). 2778 value = The number of months or years to add to this 2784 if (units == "years" || units == "months") 2815 st1.add!"months"(11); 2819 st2.add!"months"(-11); 3245 // Test add!"months"() with AllowDayOverflow.yes 3252 sysTime.add!"months"(3); 3254 sysTime.add!"months"(-4); 3260 sysTime.add!"months"(6) [all...] |
| /src/external/gpl2/texinfo/dist/makeinfo/ |
| cmds.c | 587 static char *months[12] = 595 add_word_args ("%d %s %d", ts->tm_mday, _(months[ts->tm_mon]), 586 static char *months[12] = local
|
| /src/external/bsd/fetch/dist/libfetch/ |
| http.c | 848 static const char months[] = "JanFebMarAprMayJunJulAugSepOctNovDec"; local 853 weekdays + tm.tm_wday * 3, tm.tm_mday, months + tm.tm_mon * 3,
|
| /src/external/gpl3/gcc/dist/libstdc++-v3/python/libstdcxx/v6/ |
| printers.py | 2130 months = [None, 'January', 'February', 'March', 'April', 'May', 'June', variable 2155 if m < 1 or m >= len(months): 2157 return months[m] 2248 month = months[on['month']] 2722 'minutes', 'hours', 'days', 'weeks', 'years', 'months'):
|
| /src/crypto/external/apache2/openssl/dist/include/openssl/ |
| x509v3.h.in | 1278 OSSL_TIME_SPEC_MONTH *months;
|
| /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/ |
| time.d | 10 with such functions are "years", "months", "weeks", "days", "hours", 472 It's not possible to create a Duration of months or years, because the 474 between months or years and smaller units without a specific date. So, 475 nothing uses $(D Duration)s when dealing with months or years. Rather, 476 functions specific to months and years are defined. For instance, 477 $(REF Date, std,datetime) has $(D add!"years") and $(D add!"months") for adding 478 years and months rather than creating a Duration of years or months and 1267 $(D "nsecs") is accepted by split, but $(D "years") and $(D "months") 3436 units use truncating division. Years and months can be converted to eac [all...] |
| /src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/ |
| chrono.h | 915 /// months 916 using months = duration<_GLIBCXX_CHRONO_INT64_T, ratio<2629746>>;
|
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/ |
| chrono.h | 893 /// months 894 using months = duration<_GLIBCXX_CHRONO_INT64_T, ratio<2629746>>;
|