Searched refs:year (Results 151 - 175 of 273) sorted by relevance

1234567891011

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/
H A Dcalctrl.tex16 and the year (either or both of them may be disabled), and a month
57 \twocolitem{\windowstyle{wxCAL\_NO\_YEAR\_CHANGE}}{Disable the year changing}
58 \twocolitem{\windowstyle{wxCAL\_NO\_MONTH\_CHANGE}}{Disable the month (and, implicitly, the year) changing}
60 \twocolitem{\windowstyle{wxCAL\_SEQUENTIAL\_MONTH\_SELECTION}}{Use alternative, more compact, style for the month and year selection controls.}
77 \twocolitem{{\bf EVT\_CALENDAR\_YEAR(id, func)}}{The selected year changed.}
155 style bit directly. It allows or disallows the user to change the year
166 year can not be changed neither.
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/rtc/
H A Drtc-sh.c45 #define RYRCNT RTC_REG(7) /* RTC year */
424 "mday=%d, mon=%d, year=%d, wday=%d\n",
437 int year; local
455 year = (bin2bcd((tm->tm_year + 1900) / 100) << 8) |
457 writew(year, rtc->regbase + RYRCNT);
459 year = tm->tm_year % 100;
460 writeb(bin2bcd(year), rtc->regbase + RYRCNT);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/png/
H A Dpng.c641 ptime->year, ptime->hour % 24, ptime->minute % 60,
652 ptime->year, ptime->hour % 24, ptime->minute % 60,
660 ptime->year, ptime->hour % 24, ptime->minute % 60,
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/mmc/core/
H A Dmmc.c83 card->cid.year = UNSTUFF_BITS(resp, 8, 4) + 1997;
99 card->cid.year = UNSTUFF_BITS(resp, 8, 4) + 1997;
315 MMC_DEV_ATTR(date, "%02d/%04d\n", card->cid.month, card->cid.year);
H A Dsd.c82 card->cid.year = UNSTUFF_BITS(resp, 12, 8);
85 card->cid.year += 2000; /* SD cards year offset */
359 MMC_DEV_ATTR(date, "%02d/%04d\n", card->cid.month, card->cid.year);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/powerpc/kernel/
H A Drtas-proc.c402 unsigned int year, mon, day, hour, min, sec; local
403 year = ret[0]; mon = ret[1]; day = ret[2];
406 mktime(year, mon, day, hour, min, sec));
H A Dtime.c1024 #define leapyear(year) ((year) % 4 == 0 && \
1025 ((year) % 100 != 0 || (year) % 400 == 0))
1046 * Number of leap corrections to apply up to end of last year
1051 * This year is a leap year if it is divisible by 4 except when it is
1054 * e.g. 1904 was a leap year, 1900 was not, 1996 is, and 2000 was
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/x86/pci/
H A Dmmconfig-shared.c519 int year; local
528 if (dmi_get_date(DMI_BIOS_DATE, &year, NULL, NULL) &&
529 year >= 2010)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/lzo-2.06/autoconf/
H A Dshtool996 # Find the month. Next argument is day, followed by the year or time.
1016 year="$3"
1019 # gives either the time of the day or the year.
1020 case $year in
1030 # for the following months of the last year the time notation
1031 # is usually also used for files modified in the last year.
1036 year="$this_year"
1072 out = year;
1080 }' "day=$day" "month=$month" "year=$year" \
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/zlib-1.2.3/contrib/minizip/
H A Dzip.c322 uLong year = (uLong)ptm->tm_year; local
323 if (year>1980)
324 year-=1980;
325 else if (year>80)
326 year-=80;
328 (uLong) (((ptm->tm_mday) + (32 * (ptm->tm_mon+1)) + (512 * year)) << 16) |
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/zlib-1.2.3/contrib/minizip/
H A Dzip.c322 uLong year = (uLong)ptm->tm_year; local
323 if (year>1980)
324 year-=1980;
325 else if (year>80)
326 year-=80;
328 (uLong) (((ptm->tm_mday) + (32 * (ptm->tm_mon+1)) + (512 * year)) << 16) |
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/mtools-4.0.10/
H A Dmdir.c70 char year[5]; local
75 sprintf(year, "%04d", DOS_YEAR(dir));
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/libxml2-2.7.2/source/doc/
H A Dindex.py1055 year = T[0]
1056 url = "http://mail.gnome.org/archives/xml/%d-%s/date.html" % (year, month)
1202 print "Usage index.py [--force] [--archive] [--archive-year year] [--archive-month month] [--API] [--docs]"
1222 elif args[i] == '--archive-year':
1224 year = args[i]
1230 str = "%s-%s" % (year, month)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/msw/
H A Ddatectrl.cpp74 st->wYear = (WXWORD)tm.year;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/common/
H A Dstopwatch.cpp258 thenst.year = 1970;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/libxml2-2.7.2/doc/
H A Dindex.py1055 year = T[0]
1056 url = "http://mail.gnome.org/archives/xml/%d-%s/date.html" % (year, month)
1202 print "Usage index.py [--force] [--archive] [--archive-year year] [--archive-month month] [--API] [--docs]"
1222 elif args[i] == '--archive-year':
1224 year = args[i]
1230 str = "%s-%s" % (year, month)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/unzip60/wince/
H A Dintrface.cpp211 unsigned month, unsigned day, unsigned year,
874 unsigned month, unsigned day, unsigned year,
910 // Fix the year value to contain the real year.
911 year += 1900;
920 g_pFileLast->dwModified = (((DWORD)(year & 0x0FFF) << 20) |
869 SendAppMsg(z_uint8 uzSize, z_uint8 uzCompressedSize, unsigned ratio, unsigned month, unsigned day, unsigned year, unsigned hour, unsigned minute, char uppercase, LPCSTR szPath, LPCSTR szMethod, ulg dwCRC, char chCrypt) argument
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/
H A Dtime.h74 extern unsigned long mktime(const unsigned int year, const unsigned int mon,
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/alpha/kernel/
H A Derr_common.c176 timestamp->b.year, timestamp->b.hour,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-runtime/libasprintf/
H A Dtexi2html1841 local(@MoY, $sec, $min, $hour, $mday, $mon, $year, $wday, $yday, $isdst);
1845 ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday, $isdst) = localtime(time);
1846 $year += ($year < 70) ? 2000 : 1900;
1847 return("$mday $MoY[$mon] $year");
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/doc/
H A Dtexi2html1841 local(@MoY, $sec, $min, $hour, $mday, $mon, $year, $wday, $yday, $isdst);
1845 ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday, $isdst) = localtime(time);
1846 $year += ($year < 70) ? 2000 : 1900;
1847 return("$mday $MoY[$mon] $year");
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/gperf-3.0.4/doc/
H A Dtexi2html1841 local(@MoY, $sec, $min, $hour, $mday, $mon, $year, $wday, $yday, $isdst);
1845 ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday, $isdst) = localtime(time);
1846 $year += ($year < 70) ? 2000 : 1900;
1847 return("$mday $MoY[$mon] $year");
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/smbfs/
H A Dproc.c459 int month, year; local
465 year = date >> 9;
467 ((date & 31) - 1 + day_n[month] + (year / 4) + year * 365 - ((year & 3) == 0 &&
480 int day, year, nl_day, month; local
491 year = day / 365;
492 if ((year + 3) / 4 + 365 * year > day)
493 year
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/media/IR/
H A Dimon.c563 * Arguments: year - last 2 digits of year, month - 1..12,
568 unsigned int year, unsigned int month,
585 clock_enable_pkt[0][1] = year;
611 clock_enable_pkt[0][0] = year;
727 unsigned int year, month, day, dow, hour, minute, second; local
742 if (sscanf(buf, "%u %u %u %u %u %u %u", &year, &month, &day, &dow,
755 retval = send_set_imon_clock(ictx, year, month, day, dow,
567 send_set_imon_clock(struct imon_context *ictx, unsigned int year, unsigned int month, unsigned int day, unsigned int dow, unsigned int hour, unsigned int minute, unsigned int second) argument
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/util/
H A Dmkerr.pl17 my $year = (localtime)[5] + 1900;
395 " * Copyright (c) 2001-$year The OpenSSL Project. All rights reserved.\n",
588 * Copyright (c) 1999-$year The OpenSSL Project. All rights reserved.

Completed in 439 milliseconds

1234567891011