Home
last modified time | relevance | path

Searched refs:day (Results 1 – 109 of 109) sorted by relevance

/linux-4.1.27/arch/frv/kernel/
Dtime.c90 unsigned int year, mon, day, hour, min, sec; in read_persistent_clock() local
92 extern void arch_gettod(int *year, int *mon, int *day, int *hour, int *min, int *sec); in read_persistent_clock()
98 mon = day = 1; in read_persistent_clock()
100 arch_gettod (&year, &mon, &day, &hour, &min, &sec); in read_persistent_clock()
104 ts->tv_sec = mktime(year, mon, day, hour, min, sec); in read_persistent_clock()
Dsetup.c1121 void arch_gettod(int *year, int *mon, int *day, int *hour, in arch_gettod() argument
1124 *year = *mon = *day = *hour = *min = *sec = 0; in arch_gettod()
/linux-4.1.27/arch/mips/include/asm/
Dmc146818-time.h91 unsigned int year, mon, day, hour, min, sec; in mc146818_get_cmos_time() local
100 day = CMOS_READ(RTC_DAY_OF_MONTH); in mc146818_get_cmos_time()
109 day = bcd2bin(day); in mc146818_get_cmos_time()
116 return mktime(year, mon, day, hour, min, sec); in mc146818_get_cmos_time()
Dm48t37.h25 volatile u8 day; member
Dsgiarcs.h136 unsigned short day; member
/linux-4.1.27/arch/sh/boards/mach-sh03/
Drtc.c42 unsigned int year, mon, day, hour, min, sec; in get_cmos_time() local
50 day = (__raw_readb(RTC_DAY1) & 0xf) + (__raw_readb(RTC_DAY10) & 0xf) * 10; in get_cmos_time()
56 if (year == 0 || mon < 1 || mon > 12 || day > 31 || day < 1 || in get_cmos_time()
61 year, mon, day, hour, min, sec); in get_cmos_time()
77 return mktime(year, mon, day, hour, min, sec); in get_cmos_time()
/linux-4.1.27/arch/mips/dec/
Dtime.c23 unsigned int year, mon, day, hour, min, sec, real_year; in read_persistent_clock() local
32 day = CMOS_READ(RTC_DAY_OF_MONTH); in read_persistent_clock()
49 day = bcd2bin(day); in read_persistent_clock()
56 ts->tv_sec = mktime(year, mon, day, hour, min, sec); in read_persistent_clock()
/linux-4.1.27/drivers/char/
Dds1302.c178 unsigned char mon, day, hrs, min, sec, leap_yr; in rtc_ioctl() local
189 day = rtc_tm.tm_mday; in rtc_ioctl()
200 if ((mon > 12) || (day == 0)) in rtc_ioctl()
203 if (day > (days_in_mo[mon] + ((mon == 2) && leap_yr))) in rtc_ioctl()
217 day = bin2bcd(day); in rtc_ioctl()
225 CMOS_WRITE(day, RTC_DAY_OF_MONTH); in rtc_ioctl()
Defirtc.c73 return __mon_yday[is_leap(eft->year)][eft->month-1]+ eft->day -1; in compute_yday()
108 eft->day = wtime->tm_mday; in convert_to_efi_time()
124 wtime->tm_mday = eft->day; in convert_from_efi_time()
323 eft.year, eft.month, eft.day, in efi_rtc_proc_show()
340 alm.year, alm.month, alm.day, in efi_rtc_proc_show()
Dtoshiba.c430 int i,major,minor,day,year,month,flag; in tosh_probe() local
480 day = ((readb(bios+0xfff5)-'0')*10)+(readb(bios+0xfff6)-'0'); in tosh_probe()
484 | ((day & 0x1f)<<1); in tosh_probe()
Drtc.c549 unsigned char mon, day, hrs, min, sec, leap_yr; in rtc_do_ioctl() local
565 day = rtc_tm.tm_mday; in rtc_do_ioctl()
575 if ((mon > 12) || (day == 0)) in rtc_do_ioctl()
578 if (day > (days_in_mo[mon] + ((mon == 2) && leap_yr))) in rtc_do_ioctl()
618 day = bin2bcd(day); in rtc_do_ioctl()
633 CMOS_WRITE(day, RTC_DAY_OF_MONTH); in rtc_do_ioctl()
/linux-4.1.27/arch/m68k/mvme16x/
Drtc.c68 unsigned char mon, day, hrs, min, sec, leap_yr; in rtc_ioctl() local
81 day = rtc_tm.tm_mday; in rtc_ioctl()
88 if ((mon > 12) || (day == 0)) in rtc_ioctl()
91 if (day > (days_in_mo[mon] + ((mon == 2) && leap_yr))) in rtc_ioctl()
106 rtc->bcd_dom = bin2bcd(day); in rtc_ioctl()
Dconfig.c303 p->rev&0xf, p->yr, p->mth, p->day); in config_mvme16x()
/linux-4.1.27/fs/isofs/
Dutil.c20 int year, month, day, hour, minute, second, tz; in iso_date() local
25 day = p[2]; in iso_date()
35 crtime = mktime64(year+1900, month, day, hour, minute, second); in iso_date()
/linux-4.1.27/arch/m68k/atari/
Dtime.c168 int sec=0, min=0, hour=0, day=0, mon=0, year=0, wday=0; in atari_tt_hwclk() local
182 day = t->tm_mday; in atari_tt_hwclk()
201 day = bin2bcd(day); in atari_tt_hwclk()
234 day = RTC_READ( RTC_DAY_OF_MONTH ); in atari_tt_hwclk()
243 RTC_WRITE( RTC_DAY_OF_MONTH, day ); in atari_tt_hwclk()
263 day = bcd2bin(day); in atari_tt_hwclk()
279 t->tm_mday = day; in atari_tt_hwclk()
/linux-4.1.27/arch/powerpc/platforms/chrp/
Dtime.c131 unsigned int year, mon, day, hour, min, sec; in chrp_get_rtc_time() local
137 day = chrp_cmos_clock_read(RTC_DAY_OF_MONTH); in chrp_get_rtc_time()
146 day = bcd2bin(day); in chrp_get_rtc_time()
155 tm->tm_mday = day; in chrp_get_rtc_time()
/linux-4.1.27/arch/m68k/bvme6000/
Drtc.c73 unsigned char mon, day, hrs, min, sec, leap_yr; in rtc_ioctl() local
86 day = rtc_tm.tm_mday; in rtc_ioctl()
93 if ((mon > 12) || (mon < 1) || (day == 0)) in rtc_ioctl()
96 if (day > (days_in_mo[mon] + ((mon == 2) && leap_yr))) in rtc_ioctl()
115 rtc->bcd_dom = bin2bcd(day); in rtc_ioctl()
/linux-4.1.27/arch/x86/kernel/
Drtc.c64 unsigned int status, year, mon, day, hour, min, sec, century = 0; in mach_get_cmos_time() local
81 day = CMOS_READ(RTC_DAY_OF_MONTH); in mach_get_cmos_time()
100 day = bcd2bin(day); in mach_get_cmos_time()
111 now->tv_sec = mktime(year, mon, day, hour, min, sec); in mach_get_cmos_time()
/linux-4.1.27/include/asm-generic/
Drtc.h119 unsigned char mon, day, hrs, min, sec; in __set_rtc_time() local
128 day = time->tm_mday; in __set_rtc_time()
169 day = bin2bcd(day); in __set_rtc_time()
184 CMOS_WRITE(day, RTC_DAY_OF_MONTH); in __set_rtc_time()
/linux-4.1.27/drivers/rtc/
Drtc-m48t35.c33 u8 day; member
95 unsigned char mon, day, hrs, min, sec; in m48t35_set_time() local
101 day = tm->tm_mday; in m48t35_set_time()
122 day = bin2bcd(day); in m48t35_set_time()
131 writeb(day, &priv->reg->date); in m48t35_set_time()
Drtc-efi.c39 return rtc_year_days(eft->day, eft->month - 1, eft->year); in compute_yday()
73 eft->day = wtime->tm_mday; in convert_to_efi_time()
99 if (!eft->day || eft->day > 31) in convert_from_efi_time()
101 wtime->tm_mday = eft->day; in convert_from_efi_time()
Drtc-mxc.c114 u32 day = 0, hr = 0, min = 0, sec = 0, hr_min = 0; in get_alarm_or_time() local
118 day = readw(ioaddr + RTC_DAYR); in get_alarm_or_time()
123 day = readw(ioaddr + RTC_DAYALARM); in get_alarm_or_time()
132 return ((((time64_t)day * 24 + hr) * 60) + min) * 60 + sec; in get_alarm_or_time()
140 u32 tod, day, hr, min, sec, temp; in set_alarm_or_time() local
145 day = div_s64_rem(time, 86400, &tod); in set_alarm_or_time()
159 writew(day, ioaddr + RTC_DAYR); in set_alarm_or_time()
164 writew(day, ioaddr + RTC_DAYALARM); in set_alarm_or_time()
Drtc-bq4802.c96 u8 sec, min, hrs, day, mon, yrs, century, val; in bq4802_set_time() local
105 day = tm->tm_mday; in bq4802_set_time()
113 day = bin2bcd(day); in bq4802_set_time()
126 p->write(p, 0x06, day); in bq4802_set_time()
Drtc-mv.c73 unsigned int year, month, day, hour, minute, second, wday; in mv_rtc_read_time() local
83 day = rtc_date & 0x3f; in mv_rtc_read_time()
90 tm->tm_mday = bcd2bin(day); in mv_rtc_read_time()
104 unsigned int year, month, day, hour, minute, second, wday; in mv_rtc_read_alarm() local
114 day = rtc_date & 0x3f; in mv_rtc_read_alarm()
121 alm->time.tm_mday = bcd2bin(day); in mv_rtc_read_alarm()
Drtc-ds1511.c187 u8 mon, day, dow, hrs, min, sec, yrs, cen; in ds1511_rtc_set_time() local
202 day = rtc_tm->tm_mday; in ds1511_rtc_set_time()
208 if ((mon > 12) || (day == 0)) in ds1511_rtc_set_time()
211 if (day > rtc_month_days(rtc_tm->tm_mon, rtc_tm->tm_year)) in ds1511_rtc_set_time()
223 day = bin2bcd(day) & 0x3f; in ds1511_rtc_set_time()
233 rtc_write(day, RTC_DOM); in ds1511_rtc_set_time()
Drtc-ds1286.c222 unsigned char mon, day, hrs, min, sec; in ds1286_set_time() local
229 day = tm->tm_mday; in ds1286_set_time()
247 day = bin2bcd(day); in ds1286_set_time()
257 ds1286_rtc_write(priv, day, RTC_DATE); in ds1286_set_time()
Drtc-bq32k.c42 uint8_t day; member
100 tm->tm_wday = bcd2bin(regs.day) - 1; in bq32k_rtc_read_time()
115 regs.day = bin2bcd(tm->tm_wday + 1); in bq32k_rtc_set_time()
Drtc-lib.c42 int rtc_year_days(unsigned int day, unsigned int month, unsigned int year) in rtc_year_days() argument
44 return rtc_ydays[is_leap_year(year)][month] + day-1; in rtc_year_days()
Drtc-ds1742.c93 unsigned int year, month, day, hour, minute, second, week; in ds1742_rtc_read_time() local
104 day = readb(ioaddr + RTC_DATE); in ds1742_rtc_read_time()
113 tm->tm_mday = bcd2bin(day); in ds1742_rtc_read_time()
Drtc-mrst.c115 unsigned char mon, day, hrs, min, sec; in mrst_set_time() local
120 day = time->tm_mday; in mrst_set_time()
133 vrtc_cmos_write(day, RTC_DAY_OF_MONTH); in mrst_set_time()
Drtc-stk17ta8.c105 unsigned int year, month, day, hour, minute, second, week; in stk17ta8_rtc_read_time() local
119 day = readb(ioaddr + RTC_DATE); in stk17ta8_rtc_read_time()
128 tm->tm_mday = bcd2bin(day); in stk17ta8_rtc_read_time()
Drtc-ds3232.c108 unsigned int year, month, day, hour, minute, second; in ds3232_read_time() local
123 day = buf[4]; in ds3232_read_time()
149 time->tm_mday = bcd2bin(day); in ds3232_read_time()
Drtc-ds1553.c106 unsigned int year, month, day, hour, minute, second, week; in ds1553_rtc_read_time() local
117 day = readb(ioaddr + RTC_DATE); in ds1553_rtc_read_time()
126 tm->tm_mday = bcd2bin(day); in ds1553_rtc_read_time()
Dinterface.c166 enum { none, day, month, year } missing = none; in __rtc_read_alarm() enumerator
252 missing = day; in __rtc_read_alarm()
278 case day: in __rtc_read_alarm()
/linux-4.1.27/arch/m32r/kernel/
Dtime.c142 unsigned int epoch, year, mon, day, hour, min, sec; in read_persistent_clock() local
144 sec = min = hour = day = mon = year = 0; in read_persistent_clock()
149 day = 17; in read_persistent_clock()
160 ts->tv_sec = mktime(year, mon, day, hour, min, sec); in read_persistent_clock()
/linux-4.1.27/arch/mips/sibyte/swarm/
Drtc_m41t81.c193 unsigned int year, mon, day, hour, min, sec; in m41t81_get_time() local
207 day = m41t81_read(M41T81REG_DT); in m41t81_get_time()
215 day = bcd2bin(day); in m41t81_get_time()
221 return mktime(year, mon, day, hour, min, sec); in m41t81_get_time()
Drtc_xicor1241.c173 unsigned int year, mon, day, hour, min, sec, y2k; in xicor_get_time() local
188 day = xicor_read(X1241REG_DT); in xicor_get_time()
197 day = bcd2bin(day); in xicor_get_time()
204 return mktime(year, mon, day, hour, min, sec); in xicor_get_time()
/linux-4.1.27/drivers/md/bcache/
Dstats.c104 ret = ret ?: kobject_add(&acc->day.kobj, parent, in bch_cache_accounting_add_kobjs()
121 kobject_put(&acc->day.kobj); in bch_cache_accounting_destroy()
158 acc->day.name += t; \ in scale_accounting()
171 scale_stats(&acc->day, DAY_RESCALE); in scale_accounting()
233 kobject_init(&acc->day.kobj, &bch_stats_ktype); in bch_cache_accounting_init()
Dstats.h38 struct cache_stats day; member
/linux-4.1.27/arch/powerpc/kernel/
Dtime.c1012 int day; in GregorianDay() local
1028 day = tm->tm_mon > 2 && leapyear(tm->tm_year); in GregorianDay()
1030 day += lastYear*365 + leapsToDate + MonthOffset[tm->tm_mon-1] + in GregorianDay()
1033 tm->tm_wday = day % 7; in GregorianDay()
1040 register long hms, day; in to_tm() local
1042 day = tim / SECDAY; in to_tm()
1051 for (i = STARTOFTIME; day >= days_in_year(i); i++) in to_tm()
1052 day -= days_in_year(i); in to_tm()
1058 for (i = 1; day >= days_in_month(i); i++) in to_tm()
1059 day -= days_in_month(i); in to_tm()
[all …]
Drtas-proc.c400 unsigned int year, mon, day, hour, min, sec; in ppc_rtas_clock_show() local
401 year = ret[0]; mon = ret[1]; day = ret[2]; in ppc_rtas_clock_show()
404 mktime(year, mon, day, hour, min, sec)); in ppc_rtas_clock_show()
/linux-4.1.27/tools/testing/selftests/timers/
DMakefile12 skew_consistency clocksource-switch leap-a-day \
30 ./leap-a-day -s -i 10
/linux-4.1.27/arch/m68k/sun3/
Dintersil.c52 todintersil->day = t->tm_mday; in sun3_hwclk()
62 t->tm_mday = todintersil->day; in sun3_hwclk()
/linux-4.1.27/include/linux/
Dtime.h43 const unsigned int day, const unsigned int hour,
50 const unsigned int mon, const unsigned int day, in mktime() argument
54 return mktime64(year, mon, day, hour, min, sec); in mktime()
Drtc.h20 extern int rtc_year_days(unsigned int day, unsigned int month, unsigned int year);
Defi.h141 u8 day; member
/linux-4.1.27/Documentation/RCU/
DRTFP.txt579 ,day="23"
597 ,day="24"
1199 ,day="15"
1228 ,day="30"
1242 ,day="17"
1257 ,day="18"
1288 ,day="3"
1371 ,day="6"
1385 ,day="1"
1399 ,day="8"
[all …]
DwhatisRCU.txt97 and communications cache misses that are so expensive on present-day
/linux-4.1.27/fs/fat/
Dmisc.c193 time_t second, day, leap_day, month, year; in fat_time_fat2unix() local
197 day = max(1, date & 0x1f) - 1; in fat_time_fat2unix()
209 + days_in_year[month] + day in fat_time_fat2unix()
/linux-4.1.27/drivers/net/can/usb/peak_usb/
Dpcan_usb_pro.h46 u8 day; member
60 u8 day; member
/linux-4.1.27/fs/ncpfs/
Ddir.c1216 int day, year, nl_day, month; in ncp_date_unix2dos() local
1222 day = unix_date / 86400 - 3652; in ncp_date_unix2dos()
1223 year = day / 365; in ncp_date_unix2dos()
1224 if ((year + 3) / 4 + 365 * year > day) in ncp_date_unix2dos()
1226 day -= (year + 3) / 4 + 365 * year; in ncp_date_unix2dos()
1227 if (day == 59 && !(year & 3)) { in ncp_date_unix2dos()
1228 nl_day = day; in ncp_date_unix2dos()
1231 nl_day = (year & 3) || day <= 59 ? day : day - 1; in ncp_date_unix2dos()
/linux-4.1.27/Documentation/ia64/
Defirtc.txt22 at first, the time of day service. This is required in order to access, in a
53 III/ Time of day service
55 The part of the driver gives access to the time of day service of EFI.
89 Root privileges are required to be able to set the time of day.
/linux-4.1.27/arch/m68k/include/asm/
Dintersil.h33 unsigned char day; member
/linux-4.1.27/crypto/asymmetric_keys/
Dx509_cert_parser.c502 unsigned year, mon, day, hour, min, sec, mon_len; in x509_decode_time() local
528 day = DD2bin(p); in x509_decode_time()
550 day < 1 || day > mon_len || in x509_decode_time()
556 *_t = mktime64(year, mon, day, hour, min, sec); in x509_decode_time()
/linux-4.1.27/fs/udf/
Dudftime.c112 yday = ((__mon_yday[__isleap(year)][src.month - 1]) + src.day - 1); in udf_disk_stamp_to_time()
160 dest->day = days + 1; in udf_time_to_disk_stamp()
Decma_167.h64 uint8_t day; member
Dsuper.c925 le16_to_cpu(ts->year), ts->month, ts->day, ts->hour, in udf_load_pvoldesc()
2210 le16_to_cpu(ts.year), ts.month, ts.day, in udf_fill_super()
/linux-4.1.27/arch/m68k/include/uapi/asm/
Dbootinfo-vme.h49 __u8 rev, mth, day, yr; member
/linux-4.1.27/drivers/firmware/
Ddmi_scan.c834 int year = 0, month = 0, day = 0; in dmi_get_date() local
872 day = simple_strtoul(s, &e, 10); in dmi_get_date()
873 if (s == y || s == e || *e != '/' || day > 31) in dmi_get_date()
874 day = 0; in dmi_get_date()
881 *dayp = day; in dmi_get_date()
/linux-4.1.27/drivers/input/misc/
Dhp_sdc_rtc.c613 unsigned char mon, day, hrs, min, sec, leap_yr; in hp_sdc_rtc_ioctl()
624 day = hp_sdc_rtc_tm.tm_mday; in hp_sdc_rtc_ioctl()
634 if ((mon > 12) || (day == 0)) in hp_sdc_rtc_ioctl()
636 if (day > (days_in_mo[mon] + ((mon == 2) && leap_yr))) in hp_sdc_rtc_ioctl()
/linux-4.1.27/Documentation/input/
Datarikbd.txt10 The ikbd processor also maintains a time-of-day clock with one second
35 0xFC time-of-day
157 The ikbd also maintains a time-of-day clock for the system. Commands are
158 available to set and interrogate the timer-of-day clock. Time-keeping is
203 mode and parameter settings. It does not affect the time-of-day clock.
417 time-of-day clock, and monitor the joystick. The rate sets the interval
430 time-of-day clock, and monitor the fire button on Joystick 1. The fire button
480 DD ; day
485 All time-of-day data should be sent to the ikbd in packed BCD format.
488 only some subfields of the time-of-day clock.
[all …]
Dyealink.txt98 'e' : Most significant day of the month digit,
/linux-4.1.27/arch/alpha/include/asm/
Derr_common.h73 u8 day; member
/linux-4.1.27/include/uapi/linux/
Dtelephony.h100 char day[3]; member
/linux-4.1.27/drivers/media/rc/
Dimon.c692 unsigned int day, unsigned int dow, in send_set_imon_clock() argument
710 clock_enable_pkt[0][3] = day; in send_set_imon_clock()
736 clock_enable_pkt[0][2] = day; in send_set_imon_clock()
849 unsigned int year, month, day, dow, hour, minute, second; in store_imon_clock() local
864 if (sscanf(buf, "%u %u %u %u %u %u %u", &year, &month, &day, &dow, in store_imon_clock()
871 (day < 1 || day > 31) || (dow > 6) || in store_imon_clock()
877 retval = send_set_imon_clock(ictx, year, month, day, dow, in store_imon_clock()
/linux-4.1.27/drivers/pnp/pnpbios/
DKconfig21 Note: ACPI is expected to supersede PNPBIOS some day, currently it
/linux-4.1.27/kernel/time/
Dtime.c325 const unsigned int day, const unsigned int hour, in mktime64() argument
337 (year/4 - year/100 + year/400 + 367*mon/12 + day) + in mktime64()
/linux-4.1.27/arch/s390/include/uapi/asm/
Dvtoc.h37 __u16 day; member
/linux-4.1.27/drivers/staging/unisys/common-spar/include/channels/
Ddiagchannel.h112 u8 day; /* 1 - 31 */ member
/linux-4.1.27/drivers/scsi/esas2r/
Desas2r_flash.c1082 u8 day = LOBYTE(HIWORD(a->flash_ver)); in esas2r_print_flash_rev() local
1085 if (day == 0 in esas2r_print_flash_rev()
1087 || day > 31 in esas2r_print_flash_rev()
1096 sprintf(a->flash_rev, "%02d/%02d/%04d", month, day, year); in esas2r_print_flash_rev()
Datvda.h611 u8 day; member
955 u8 day; member
/linux-4.1.27/arch/alpha/kernel/
Derr_common.c173 timestamp->b.month, timestamp->b.day, in el_print_timestamp()
/linux-4.1.27/include/acpi/
Dacbuffer.h81 u8 day; member
/linux-4.1.27/
DREPORTING-BUGS29 lost in the noise of a mailing list that gets 1000+ emails a day.
154 they may not be able to address your bug in a day, a week, or two weeks.
/linux-4.1.27/include/xen/interface/
Dplatform.h139 uint8_t day; member
/linux-4.1.27/arch/ia64/hp/sim/boot/
Dfw-emu.c96 tp->day = days + 1; in offtime()
/linux-4.1.27/security/tomoyo/
Daudit.c166 stamp.day, stamp.hour, stamp.min, stamp.sec, r->profile, in tomoyo_print_header()
Dutil.c118 stamp->day = ++time; in tomoyo_convert_time()
Dcommon.h890 u8 day; member
Dcommon.c2299 stamp.year, stamp.month, stamp.day, in tomoyo_read_stat()
/linux-4.1.27/Documentation/development-process/
D6.Followthrough133 Some day, if all goes well, you'll log on and see that your patch has been
182 One day, you may open your mail client and see that somebody has mailed you
D2.Process37 per day.
168 - Please note that most maintainers also have day jobs, so merging
390 day, the amount of noise is high, the conversation can be severely
D1.Intro92 thousands of lines of code are being changed every day. So it is not
/linux-4.1.27/Documentation/driver-model/
Ddevres.txt30 day fiddling with braindamaged hardware with no document or
/linux-4.1.27/fs/jffs2/
DREADME.Locking108 currently just '++->highest_ino++', but might one day get more complicated
/linux-4.1.27/Documentation/
Dbus-virt-phys-mapping.txt177 Comments? You may think that all the above is overly complex, but one day you
Dbcache.txt208 Writing to this file resets the running total stats (not the day/hour/5 minute
283 versions that decay over the past day, hour and 5 minutes; they're also
Dsvga.txt162 a mail as I think of removing it some day.
Ddevices.txt55 messages a day, so mail sent to other addresses may very well get lost
/linux-4.1.27/arch/x86/platform/efi/
Defi.c115 now->tv_sec = mktime(eft.year, eft.month, eft.day, eft.hour, in efi_get_time()
/linux-4.1.27/drivers/net/wireless/ath/wil6210/
Dwmi.h641 u8 day; member
/linux-4.1.27/Documentation/virtual/kvm/
Dtimekeeping.txt193 can function as a periodic timer, an additional once a day alarm, and can issue
214 06h byte Current day of week (BCD)
215 07h byte Current day of month (BCD)
/linux-4.1.27/fs/reiserfs/
DREADME153 Alpha PC Company made it possible for me to not have a day job
/linux-4.1.27/drivers/scsi/
Dips.h571 uint8_t day; member
Dips.c6054 scb->cmd.ffdc.day = days + 1; in ips_fix_ffdc_time()
/linux-4.1.27/drivers/net/ethernet/neterion/vxge/
Dvxge-config.h214 u32 day; member
Dvxge-config.c821 fw_date->day = in __vxge_hw_vpath_fw_ver_get()
829 fw_date->month, fw_date->day, fw_date->year); in __vxge_hw_vpath_fw_ver_get()
841 flash_date->day = in __vxge_hw_vpath_fw_ver_get()
849 flash_date->month, flash_date->day, flash_date->year); in __vxge_hw_vpath_fw_ver_get()
/linux-4.1.27/Documentation/networking/
Dnetdev-FAQ.txt153 to request a commit be added the day after it appears should be avoided.
Dip-sysctl.txt1463 Default: 86400 (1 day)
/linux-4.1.27/Documentation/serial/
Ddriver426 It is intended some day to drop the 'unused' entries from uart_port, and
/linux-4.1.27/Documentation/scsi/
Daic7xxx.txt335 408-957-2550, 24 hours a day, 7 days a week.
Daic79xx.txt438 408-957-2550, 24 hours a day, 7 days a week.
DChangeLog.sym53c8xx254 - Remove the quirk handling that has been useless since day one.
/linux-4.1.27/arch/cris/arch-v10/drivers/
DKconfig44 day...
/linux-4.1.27/arch/ia64/kernel/
Defi.c248 ts->tv_sec = mktime(tm.year, tm.month, tm.day, in STUB_GET_TIME()
/linux-4.1.27/arch/sparc/lib/
Dchecksum_32.S441 add %o1, 4, %o1 ! is worthy). Maybe some day - with the sll/srl
/linux-4.1.27/Documentation/blockdev/
Dparide.txt220 information. (Hopefully someone will write some man pages one day !).
/linux-4.1.27/init/
DKconfig631 testing RCU itself, and might one day be useful on systems with
/linux-4.1.27/arch/x86/
DKconfig692 timing infrastructure such as time of day, and system time