Searched refs:year (Results 126 - 150 of 273) sorted by relevance

1234567891011

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/unzip60/macos/source/
H A Dmactime.c408 statictime.tm_year = dtr.year - 1900; /* year, ranging from 1904 to 2040 */
439 dtr.year = tp->tm_year + 1900; /* years since 1900 */
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/forked-daapd-0.19/src/
H A Dscan-flac.c172 pmp3->year = atoi(val);
178 pmp3->year = atoi(val);
H A Dfilescanner_ffmpeg.c115 { "year", 1, mfi_offsetof(year), NULL },
116 { "date", 1, mfi_offsetof(year), NULL },
186 { "TYE", 1, mfi_offsetof(year), NULL }, /* ID3v2.2 */
187 { "TYER", 1, mfi_offsetof(year), NULL }, /* ID3v2.3 */
188 { "TDRC", 1, mfi_offsetof(year), NULL }, /* ID3v2.4 */
H A Ddaap_query_hash.c129 {"daap.songyear", "f.year", 1},
H A Ddb.h97 uint32_t year; /* TDRC */ member in struct:media_file_info
237 char *year; member in struct:db_media_file_info
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/m68k/apollo/
H A Dconfig.c219 t->tm_year=rtc->year;
228 rtc->year=t->tm_year;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/zip30/macos/source/
H A Dmactime.c408 statictime.tm_year = dtr.year - 1900; /* year, ranging from 1904 to 2040 */
439 dtr.year = tp->tm_year + 1900; /* years since 1900 */
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/zip30/msdos/
H A Dmsdos.c1076 /* Nonzero if `y' is a leap year, else zero. */
1082 time_t _dtoxtime(year, month, mday, hour, min, sec)
1083 int year, month, mday, year, hour, min, sec;
1090 year += 1980;
1091 if (leap(year) && month > 2)
1095 tm.tm_year = year - 1900;
1098 days += 365 * (year - 1970) + nleap (year);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/cifs/
H A Dnetmisc.c966 int sec, min, days, month, year; local
992 year = sd->Year;
993 days += year * 365;
994 days += (year/4); /* leap year */
995 /* generalized leap year calculation is more complex, ie no leap year
997 year is 2**7, the last year is 1980+127, which means we need only
999 adjust for the lack of leap year fo
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/rtc/
H A Dinterface.c136 enum { none, day, month, year } missing = none; enumerator in enum:__anon14000
144 * day/month/year calendar data.
234 missing = year;
247 * could also be in the next month or year. This is a common
276 case year:
277 dev_dbg(&rtc->dev, "alarm rollover: %s\n", "year");
H A Drtc-ds1553.c105 unsigned int year, month, day, hour, minute, second, week; local
119 year = readb(ioaddr + RTC_YEAR);
128 /* year is 1900 + tm->tm_year */
129 tm->tm_year = bcd2bin(year) + bcd2bin(century) * 100 - 1900;
H A Drtc-pl031.c104 int year = tm->tm_year + 1900; local
121 *bcd_year = (bin2bcd(year % 100) | bin2bcd(year / 100) << 8);
H A Drtc-stk17ta8.c104 unsigned int year, month, day, hour, minute, second, week; local
121 year = readb(ioaddr + RTC_YEAR);
130 /* year is 1900 + tm->tm_year */
131 tm->tm_year = bcd2bin(year) + bcd2bin(century) * 100 - 1900;
H A Drtc-s3c.c194 int year = tm->tm_year - 100; local
202 if (year < 0 || year >= 100) {
212 writeb(bin2bcd(year), base + S3C2410_RTCYEAR);
H A Drtc-ab8500.c61 static unsigned long get_elapsed_seconds(int year) argument
65 .tm_year = year - 1900,
71 * 1900, even if we supply the offset from year 1900.
137 dev_dbg(dev, "year should be equal to or greater than %d\n",
228 dev_dbg(dev, "year should be equal to or greater than %d\n",
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/lib/replace/
H A Dstrptime.c23 some of them in the same format (such as year, week and weekday)
205 /* Nonzero if YEAR is a leap year (every 4 years,
207 # define __isleap(year) \
208 ((year) % 4 == 0 && ((year) % 100 != 0 || (year) % 400 == 0))
229 /* Compute the day of the year. */
484 /* Match day number of year. */
652 /* Match year within century. */
662 /* Match year includin
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/libid3tag-0.15.0b/
H A Dtag.c388 char title[31], artist[31], album[31], year[5], comment[31]; local
400 title[30] = artist[30] = album[30] = year[4] = comment[30] = 0;
405 memcpy(year, &data[93], 4);
421 v1_attachstr(tag, ID3_FRAME_YEAR, year, 0) == -1 ||
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/minidlna-1.1.5/tagutils/
H A Dtagutils-wav.c196 psong->year = atoi(p + 8);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/packages/libid3tag-0.15.0b/
H A Dtag.c388 char title[31], artist[31], album[31], year[5], comment[31]; local
400 title[30] = artist[30] = album[30] = year[4] = comment[30] = 0;
405 memcpy(year, &data[93], 4);
421 v1_attachstr(tag, ID3_FRAME_YEAR, year, 0) == -1 ||
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/s390/include/asm/
H A Dvtoc.h38 __u8 year; member in struct:vtoc_labeldate
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/mmc/
H A Dcard.h20 unsigned short year; member in struct:mmc_cid
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/
H A Do_time.c190 short year, month, day, hour, minute, second, centi_second; member in struct:vms_vectime
218 result->tm_year = time_values.year - 1900;
241 * with restricted date types and overflows which cause the year 2038
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/
H A Do_time.c190 short year, month, day, hour, minute, second, centi_second; member in struct:vms_vectime
218 result->tm_year = time_values.year - 1900;
241 * with restricted date types and overflows which cause the year 2038
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/ata/
H A Dahci.c797 int year, month, date; local
808 dmi_get_date(DMI_BIOS_DATE, &year, &month, &date);
809 snprintf(buf, sizeof(buf), "%04d%02d%02d", year, month, date);
932 int year, month, date; local
938 dmi_get_date(DMI_BIOS_DATE, &year, &month, &date);
939 snprintf(buf, sizeof(buf), "%04d%02d%02d", year, month, date);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/
H A Dtdate.tex28 but also more exotic week and year day calculations, work day testing, standard
71 year/month/day components. See more about \helpref{timezones}{tdatetimezones}
96 the year is leap or not).
150 All methods returning the date components (year, month, day, hour, minute,
197 the given year and to determine whether it is in effect at the given moment or

Completed in 303 milliseconds

1234567891011