/linux-4.1.27/arch/frv/kernel/ |
D | time.c | 90 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()
|
D | setup.c | 1121 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/ |
D | mc146818-time.h | 91 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()
|
D | m48t37.h | 25 volatile u8 day; member
|
D | sgiarcs.h | 136 unsigned short day; member
|
/linux-4.1.27/arch/sh/boards/mach-sh03/ |
D | rtc.c | 42 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/ |
D | time.c | 23 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/ |
D | ds1302.c | 178 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()
|
D | efirtc.c | 73 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()
|
D | toshiba.c | 430 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()
|
D | rtc.c | 549 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/ |
D | rtc.c | 68 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()
|
D | config.c | 303 p->rev&0xf, p->yr, p->mth, p->day); in config_mvme16x()
|
/linux-4.1.27/fs/isofs/ |
D | util.c | 20 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/ |
D | time.c | 168 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/ |
D | time.c | 131 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/ |
D | rtc.c | 73 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/ |
D | rtc.c | 64 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/ |
D | rtc.h | 119 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/ |
D | rtc-m48t35.c | 33 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()
|
D | rtc-efi.c | 39 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()
|
D | rtc-mxc.c | 114 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()
|
D | rtc-bq4802.c | 96 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()
|
D | rtc-mv.c | 73 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()
|
D | rtc-ds1511.c | 187 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()
|
D | rtc-ds1286.c | 222 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()
|
D | rtc-bq32k.c | 42 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()
|
D | rtc-lib.c | 42 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()
|
D | rtc-ds1742.c | 93 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()
|
D | rtc-mrst.c | 115 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()
|
D | rtc-stk17ta8.c | 105 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()
|
D | rtc-ds3232.c | 108 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()
|
D | rtc-ds1553.c | 106 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()
|
D | interface.c | 166 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/ |
D | time.c | 142 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/ |
D | rtc_m41t81.c | 193 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()
|
D | rtc_xicor1241.c | 173 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/ |
D | stats.c | 104 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()
|
D | stats.h | 38 struct cache_stats day; member
|
/linux-4.1.27/arch/powerpc/kernel/ |
D | time.c | 1012 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 …]
|
D | rtas-proc.c | 400 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/ |
D | Makefile | 12 skew_consistency clocksource-switch leap-a-day \ 30 ./leap-a-day -s -i 10
|
/linux-4.1.27/arch/m68k/sun3/ |
D | intersil.c | 52 todintersil->day = t->tm_mday; in sun3_hwclk() 62 t->tm_mday = todintersil->day; in sun3_hwclk()
|
/linux-4.1.27/include/linux/ |
D | time.h | 43 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()
|
D | rtc.h | 20 extern int rtc_year_days(unsigned int day, unsigned int month, unsigned int year);
|
D | efi.h | 141 u8 day; member
|
/linux-4.1.27/Documentation/RCU/ |
D | RTFP.txt | 579 ,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 …]
|
D | whatisRCU.txt | 97 and communications cache misses that are so expensive on present-day
|
/linux-4.1.27/fs/fat/ |
D | misc.c | 193 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/ |
D | pcan_usb_pro.h | 46 u8 day; member 60 u8 day; member
|
/linux-4.1.27/fs/ncpfs/ |
D | dir.c | 1216 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/ |
D | efirtc.txt | 22 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/ |
D | intersil.h | 33 unsigned char day; member
|
/linux-4.1.27/crypto/asymmetric_keys/ |
D | x509_cert_parser.c | 502 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/ |
D | udftime.c | 112 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()
|
D | ecma_167.h | 64 uint8_t day; member
|
D | super.c | 925 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/ |
D | bootinfo-vme.h | 49 __u8 rev, mth, day, yr; member
|
/linux-4.1.27/drivers/firmware/ |
D | dmi_scan.c | 834 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/ |
D | hp_sdc_rtc.c | 613 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/ |
D | atarikbd.txt | 10 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 …]
|
D | yealink.txt | 98 'e' : Most significant day of the month digit,
|
/linux-4.1.27/arch/alpha/include/asm/ |
D | err_common.h | 73 u8 day; member
|
/linux-4.1.27/include/uapi/linux/ |
D | telephony.h | 100 char day[3]; member
|
/linux-4.1.27/drivers/media/rc/ |
D | imon.c | 692 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/ |
D | Kconfig | 21 Note: ACPI is expected to supersede PNPBIOS some day, currently it
|
/linux-4.1.27/kernel/time/ |
D | time.c | 325 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/ |
D | vtoc.h | 37 __u16 day; member
|
/linux-4.1.27/drivers/staging/unisys/common-spar/include/channels/ |
D | diagchannel.h | 112 u8 day; /* 1 - 31 */ member
|
/linux-4.1.27/drivers/scsi/esas2r/ |
D | esas2r_flash.c | 1082 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()
|
D | atvda.h | 611 u8 day; member 955 u8 day; member
|
/linux-4.1.27/arch/alpha/kernel/ |
D | err_common.c | 173 timestamp->b.month, timestamp->b.day, in el_print_timestamp()
|
/linux-4.1.27/include/acpi/ |
D | acbuffer.h | 81 u8 day; member
|
/linux-4.1.27/ |
D | REPORTING-BUGS | 29 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/ |
D | platform.h | 139 uint8_t day; member
|
/linux-4.1.27/arch/ia64/hp/sim/boot/ |
D | fw-emu.c | 96 tp->day = days + 1; in offtime()
|
/linux-4.1.27/security/tomoyo/ |
D | audit.c | 166 stamp.day, stamp.hour, stamp.min, stamp.sec, r->profile, in tomoyo_print_header()
|
D | util.c | 118 stamp->day = ++time; in tomoyo_convert_time()
|
D | common.h | 890 u8 day; member
|
D | common.c | 2299 stamp.year, stamp.month, stamp.day, in tomoyo_read_stat()
|
/linux-4.1.27/Documentation/development-process/ |
D | 6.Followthrough | 133 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
|
D | 2.Process | 37 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
|
D | 1.Intro | 92 thousands of lines of code are being changed every day. So it is not
|
/linux-4.1.27/Documentation/driver-model/ |
D | devres.txt | 30 day fiddling with braindamaged hardware with no document or
|
/linux-4.1.27/fs/jffs2/ |
D | README.Locking | 108 currently just '++->highest_ino++', but might one day get more complicated
|
/linux-4.1.27/Documentation/ |
D | bus-virt-phys-mapping.txt | 177 Comments? You may think that all the above is overly complex, but one day you
|
D | bcache.txt | 208 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
|
D | svga.txt | 162 a mail as I think of removing it some day.
|
D | devices.txt | 55 messages a day, so mail sent to other addresses may very well get lost
|
/linux-4.1.27/arch/x86/platform/efi/ |
D | efi.c | 115 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/ |
D | wmi.h | 641 u8 day; member
|
/linux-4.1.27/Documentation/virtual/kvm/ |
D | timekeeping.txt | 193 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/ |
D | README | 153 Alpha PC Company made it possible for me to not have a day job
|
/linux-4.1.27/drivers/scsi/ |
D | ips.h | 571 uint8_t day; member
|
D | ips.c | 6054 scb->cmd.ffdc.day = days + 1; in ips_fix_ffdc_time()
|
/linux-4.1.27/drivers/net/ethernet/neterion/vxge/ |
D | vxge-config.h | 214 u32 day; member
|
D | vxge-config.c | 821 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/ |
D | netdev-FAQ.txt | 153 to request a commit be added the day after it appears should be avoided.
|
D | ip-sysctl.txt | 1463 Default: 86400 (1 day)
|
/linux-4.1.27/Documentation/serial/ |
D | driver | 426 It is intended some day to drop the 'unused' entries from uart_port, and
|
/linux-4.1.27/Documentation/scsi/ |
D | aic7xxx.txt | 335 408-957-2550, 24 hours a day, 7 days a week.
|
D | aic79xx.txt | 438 408-957-2550, 24 hours a day, 7 days a week.
|
D | ChangeLog.sym53c8xx | 254 - Remove the quirk handling that has been useless since day one.
|
/linux-4.1.27/arch/cris/arch-v10/drivers/ |
D | Kconfig | 44 day...
|
/linux-4.1.27/arch/ia64/kernel/ |
D | efi.c | 248 ts->tv_sec = mktime(tm.year, tm.month, tm.day, in STUB_GET_TIME()
|
/linux-4.1.27/arch/sparc/lib/ |
D | checksum_32.S | 441 add %o1, 4, %o1 ! is worthy). Maybe some day - with the sll/srl
|
/linux-4.1.27/Documentation/blockdev/ |
D | paride.txt | 220 information. (Hopefully someone will write some man pages one day !).
|
/linux-4.1.27/init/ |
D | Kconfig | 631 testing RCU itself, and might one day be useful on systems with
|
/linux-4.1.27/arch/x86/ |
D | Kconfig | 692 timing infrastructure such as time of day, and system time
|