Home
last modified time | relevance | path

Searched refs:date (Results 1 – 200 of 216) sorted by relevance

12

/linux-4.4.14/drivers/rtc/
Drtc-rx4581.c105 unsigned char date[7]; in rx4581_get_datetime() local
133 date[0] = 0x80; in rx4581_get_datetime()
134 err = spi_write_then_read(spi, date, 1, date, 7); in rx4581_get_datetime()
156 date[0], date[1], date[2], date[3], date[4], date[5], date[6]); in rx4581_get_datetime()
158 tm->tm_sec = bcd2bin(date[RX4581_REG_SC] & 0x7F); in rx4581_get_datetime()
159 tm->tm_min = bcd2bin(date[RX4581_REG_MN] & 0x7F); in rx4581_get_datetime()
160 tm->tm_hour = bcd2bin(date[RX4581_REG_HR] & 0x3F); /* rtc hr 0-23 */ in rx4581_get_datetime()
161 tm->tm_wday = ilog2(date[RX4581_REG_DW] & 0x7F); in rx4581_get_datetime()
162 tm->tm_mday = bcd2bin(date[RX4581_REG_DM] & 0x3F); in rx4581_get_datetime()
163 tm->tm_mon = bcd2bin(date[RX4581_REG_MO] & 0x1F) - 1; /* rtc mn 1-12 */ in rx4581_get_datetime()
[all …]
Drtc-rx8025.c181 u8 date[7]; in rx8025_get_time() local
188 err = rx8025_read_regs(rx8025->client, RX8025_REG_SEC, 7, date); in rx8025_get_time()
194 date[0], date[1], date[2], date[3], date[4], in rx8025_get_time()
195 date[5], date[6]); in rx8025_get_time()
197 dt->tm_sec = bcd2bin(date[RX8025_REG_SEC] & 0x7f); in rx8025_get_time()
198 dt->tm_min = bcd2bin(date[RX8025_REG_MIN] & 0x7f); in rx8025_get_time()
200 dt->tm_hour = bcd2bin(date[RX8025_REG_HOUR] & 0x3f); in rx8025_get_time()
202 dt->tm_hour = bcd2bin(date[RX8025_REG_HOUR] & 0x1f) % 12 in rx8025_get_time()
203 + (date[RX8025_REG_HOUR] & 0x20 ? 12 : 0); in rx8025_get_time()
205 dt->tm_mday = bcd2bin(date[RX8025_REG_MDAY] & 0x3f); in rx8025_get_time()
[all …]
Drtc-rx8581.c100 unsigned char date[7]; in rx8581_get_datetime() local
128 7, date); in rx8581_get_datetime()
150 date[0], date[1], date[2], date[3], date[4], date[5], date[6]); in rx8581_get_datetime()
152 tm->tm_sec = bcd2bin(date[RX8581_REG_SC] & 0x7F); in rx8581_get_datetime()
153 tm->tm_min = bcd2bin(date[RX8581_REG_MN] & 0x7F); in rx8581_get_datetime()
154 tm->tm_hour = bcd2bin(date[RX8581_REG_HR] & 0x3F); /* rtc hr 0-23 */ in rx8581_get_datetime()
155 tm->tm_wday = ilog2(date[RX8581_REG_DW] & 0x7F); in rx8581_get_datetime()
156 tm->tm_mday = bcd2bin(date[RX8581_REG_DM] & 0x3F); in rx8581_get_datetime()
157 tm->tm_mon = bcd2bin(date[RX8581_REG_MO] & 0x1F) - 1; /* rtc mn 1-12 */ in rx8581_get_datetime()
158 tm->tm_year = bcd2bin(date[RX8581_REG_YR]); in rx8581_get_datetime()
Drtc-rv8803.c115 u8 *date = date1; in rv8803_get_time() local
128 7, date); in rv8803_get_time()
139 date = date2; in rv8803_get_time()
142 tm->tm_sec = bcd2bin(date[RV8803_SEC] & 0x7f); in rv8803_get_time()
143 tm->tm_min = bcd2bin(date[RV8803_MIN] & 0x7f); in rv8803_get_time()
144 tm->tm_hour = bcd2bin(date[RV8803_HOUR] & 0x3f); in rv8803_get_time()
145 tm->tm_wday = ffs(date[RV8803_WEEK] & 0x7f); in rv8803_get_time()
146 tm->tm_mday = bcd2bin(date[RV8803_DAY] & 0x3f); in rv8803_get_time()
147 tm->tm_mon = bcd2bin(date[RV8803_MONTH] & 0x1f) - 1; in rv8803_get_time()
148 tm->tm_year = bcd2bin(date[RV8803_YEAR]) + 100; in rv8803_get_time()
[all …]
Drtc-spear.c209 unsigned int time, date; in spear_rtc_read_time() local
215 date = readl(config->ioaddr + DATE_REG); in spear_rtc_read_time()
219 tm->tm_mday = (date >> MDAY_SHIFT) & DAY_MASK; in spear_rtc_read_time()
220 tm->tm_mon = (date >> MONTH_SHIFT) & MONTH_MASK; in spear_rtc_read_time()
221 tm->tm_year = (date >> YEAR_SHIFT) & YEAR_MASK; in spear_rtc_read_time()
238 unsigned int time, date; in spear_rtc_set_time() local
246 date = (tm->tm_mday << MDAY_SHIFT) | (tm->tm_mon << MONTH_SHIFT) | in spear_rtc_set_time()
249 writel(date, config->ioaddr + DATE_REG); in spear_rtc_set_time()
265 unsigned int time, date; in spear_rtc_read_alarm() local
270 date = readl(config->ioaddr + ALARM_DATE_REG); in spear_rtc_read_alarm()
[all …]
Drtc-sunxi.c204 u32 date; in sunxi_rtc_getalarm() local
207 date = readl(chip->base + SUNXI_RTC_YMD); in sunxi_rtc_getalarm()
213 alrm_tm->tm_mday = SUNXI_DATE_GET_DAY_VALUE(date); in sunxi_rtc_getalarm()
214 alrm_tm->tm_mon = SUNXI_DATE_GET_MON_VALUE(date); in sunxi_rtc_getalarm()
215 alrm_tm->tm_year = SUNXI_DATE_GET_YEAR_VALUE(date, in sunxi_rtc_getalarm()
236 u32 date, time; in sunxi_rtc_gettime() local
242 date = readl(chip->base + SUNXI_RTC_YMD); in sunxi_rtc_gettime()
244 } while ((date != readl(chip->base + SUNXI_RTC_YMD)) || in sunxi_rtc_gettime()
251 rtc_tm->tm_mday = SUNXI_DATE_GET_DAY_VALUE(date); in sunxi_rtc_gettime()
252 rtc_tm->tm_mon = SUNXI_DATE_GET_MON_VALUE(date); in sunxi_rtc_gettime()
[all …]
Drtc-sun6i.c161 u32 date, time; in sun6i_rtc_gettime() local
167 date = readl(chip->base + SUN6I_RTC_YMD); in sun6i_rtc_gettime()
169 } while ((date != readl(chip->base + SUN6I_RTC_YMD)) || in sun6i_rtc_gettime()
176 rtc_tm->tm_mday = SUN6I_DATE_GET_DAY_VALUE(date); in sun6i_rtc_gettime()
177 rtc_tm->tm_mon = SUN6I_DATE_GET_MON_VALUE(date); in sun6i_rtc_gettime()
178 rtc_tm->tm_year = SUN6I_DATE_GET_YEAR_VALUE(date); in sun6i_rtc_gettime()
269 u32 date = 0; in sun6i_rtc_settime() local
283 date = SUN6I_DATE_SET_DAY_VALUE(rtc_tm->tm_mday) | in sun6i_rtc_settime()
288 date |= SUN6I_LEAP_SET_VALUE(1); in sun6i_rtc_settime()
315 writel(date, chip->base + SUN6I_RTC_YMD); in sun6i_rtc_settime()
Drtc-vt8500.c112 u32 date, time; in vt8500_rtc_read_time() local
114 date = readl(vt8500_rtc->regbase + VT8500_RTC_DR); in vt8500_rtc_read_time()
120 tm->tm_mday = bcd2bin(date & DATE_DAY_MASK); in vt8500_rtc_read_time()
121 tm->tm_mon = bcd2bin((date & DATE_MONTH_MASK) >> DATE_MONTH_S) - 1; in vt8500_rtc_read_time()
122 tm->tm_year = bcd2bin((date & DATE_YEAR_MASK) >> DATE_YEAR_S) in vt8500_rtc_read_time()
123 + ((date >> DATE_CENTURY_S) & 1 ? 200 : 100); in vt8500_rtc_read_time()
Drtc-at91rm9200.c119 unsigned int time, date; in at91_rtc_decodetime() local
124 date = at91_rtc_read(calreg); in at91_rtc_decodetime()
126 (date != at91_rtc_read(calreg))); in at91_rtc_decodetime()
137 tm->tm_year = bcd2bin(date & AT91_RTC_CENT) * 100; /* century */ in at91_rtc_decodetime()
138 tm->tm_year += bcd2bin((date & AT91_RTC_YEAR) >> 8); /* year */ in at91_rtc_decodetime()
140 tm->tm_wday = bcd2bin((date & AT91_RTC_DAY) >> 21) - 1; /* day of the week [0-6], Sunday=0 */ in at91_rtc_decodetime()
141 tm->tm_mon = bcd2bin((date & AT91_RTC_MONTH) >> 16) - 1; in at91_rtc_decodetime()
142 tm->tm_mday = bcd2bin((date & AT91_RTC_DATE) >> 24); in at91_rtc_decodetime()
Drtc-m48t35.c34 u8 date; member
67 tm->tm_mday = readb(&priv->reg->date); in m48t35_read_time()
131 writeb(day, &priv->reg->date); in m48t35_set_time()
Drtc-bq32k.c43 uint8_t date; member
99 tm->tm_mday = bcd2bin(regs.date); in bq32k_rtc_read_time()
116 regs.date = bin2bcd(tm->tm_mday); in bq32k_rtc_set_time()
Drtc-sysfs.c48 static DEVICE_ATTR_RO(date);
/linux-4.4.14/arch/sh/boards/mach-sdk7786/
Dfpga.c57 u16 version, date; in sdk7786_fpga_init() local
66 date = fpga_read_reg(FPGADR); in sdk7786_fpga_init()
70 ((date >> 12) & 0xf) + 2000, in sdk7786_fpga_init()
71 (date >> 8) & 0xf, bcd2bin(date & 0xff)); in sdk7786_fpga_init()
/linux-4.4.14/fs/fat/
Dmisc.c192 u16 time = le16_to_cpu(__time), date = le16_to_cpu(__date); in fat_time_fat2unix() local
195 year = date >> 9; in fat_time_fat2unix()
196 month = max(1, (date >> 5) & 0xf); in fat_time_fat2unix()
197 day = max(1, date & 0x1f) - 1; in fat_time_fat2unix()
228 __le16 *time, __le16 *date, u8 *time_cs) in fat_time_unix2fat() argument
238 *date = cpu_to_le16((0 << 9) | (1 << 5) | 1); in fat_time_unix2fat()
245 *date = cpu_to_le16((127 << 9) | (12 << 5) | 31); in fat_time_unix2fat()
259 *date = cpu_to_le16(tm.tm_year << 9 | tm.tm_mon << 5 | tm.tm_mday); in fat_time_unix2fat()
Dnamei_msdos.c231 __le16 time, date; in msdos_add_entry() local
239 fat_time_unix2fat(sbi, ts, &time, &date, NULL); in msdos_add_entry()
244 de.date = date; in msdos_add_entry()
Ddir.c1140 __le16 date, time; in fat_alloc_new_dir() local
1155 fat_time_unix2fat(sbi, ts, &time, &date, &time_cs); in fat_alloc_new_dir()
1164 de[0].date = de[1].date = date; in fat_alloc_new_dir()
1169 de[0].adate = de[0].cdate = de[1].adate = de[1].cdate = date; in fat_alloc_new_dir()
Dnamei_vfat.c590 __le16 time, date; in vfat_build_slots() local
644 fat_time_unix2fat(sbi, ts, &time, &date, &time_cs); in vfat_build_slots()
646 de->date = de->cdate = de->adate = date; in vfat_build_slots()
Dfat.h407 __le16 *time, __le16 *date, u8 *time_cs);
Dinode.c501 fat_time_fat2unix(sbi, &inode->i_mtime, de->time, de->date, 0); in fat_fill_inode()
782 &raw_entry->date, NULL); in __fat_write_inode()
/linux-4.4.14/drivers/media/platform/vivid/
Dvivid-rds-gen.c59 unsigned date; in vivid_rds_generate() local
105 date = 14956 + tm.tm_mday + ((tm.tm_year - l) * 1461) / 4 + in vivid_rds_generate()
112 data[1].lsb |= date >> 15; in vivid_rds_generate()
114 data[2].lsb = (date << 1) & 0xfe; in vivid_rds_generate()
116 data[2].msb = (date >> 7) & 0xff; in vivid_rds_generate()
/linux-4.4.14/arch/x86/kernel/cpu/microcode/
Dintel.c396 unsigned int sig, pf, rev, total_size, data_size, date; in show_saved_mc() local
425 date = mc_saved_header->date; in show_saved_mc()
429 date & 0xffff, in show_saved_mc()
430 date >> 24, in show_saved_mc()
431 (date >> 16) & 0xff); in show_saved_mc()
576 print_ucode_info(struct ucode_cpu_info *uci, unsigned int date) in print_ucode_info() argument
583 date & 0xffff, in print_ucode_info()
584 date >> 24, in print_ucode_info()
585 (date >> 16) & 0xff); in print_ucode_info()
626 *current_mc_date_p = mc_intel->hdr.date; in print_ucode()
[all …]
/linux-4.4.14/Documentation/
DSecurityBugs28 A disclosure date is negotiated by the security team working with the
30 holds the final say when setting a disclosure date. The timeframe for
32 to a few weeks. As a basic default policy, we expect report date to
33 disclosure date to be on the order of 7 days.
Drtc.txt41 clock that keeps the date and time while your computer is turned off.
146 date: RTC-provided date
171 time, returning the result as a Gregorian calendar date and 24 hour
Dmagic-number.txt37 Now it should be up to date with Linux 2.1.112. Because
Dcpu-hotplug.txt443 echo `date` ":cpu.agent" add cpu >> /tmp/hotplug.txt
446 echo `date` ":cpu.agent" remove cpu >>/tmp/hotplug.txt
Dcircular-buffers.txt221 This will instruct the CPU to make sure the index is up to date before reading
Dstable_api_nonsense.txt93 date over time.
DHOWTO10 If anything in this document becomes out of date, please send in patches
210 self-referential, indexed webpage format. An excellent up-to-date
Dcachetlb.txt361 page up to date. It is assumed here that the user has no
Dapplying-patches.txt409 sure you have up-to-date backups -- that goes for any experimental kernel but
Dkernel-docs.txt621 be more up to date than the web version.
/linux-4.4.14/tools/testing/selftests/pstore/
Dcommon_tests60 LOG_DIR=$TOP_DIR/logs/`date +%Y%m%d-%H%M%S`_${UUID}/
66 date > $LOG_FILE
/linux-4.4.14/include/linux/
Dsdb.h31 uint32_t date; /* 0x28..0x2b */ member
125 uint32_t date; /* 0x2c-0x2f */ member
Dnfs_xdr.h1227 struct nfstime4 date; member
/linux-4.4.14/fs/ncpfs/
Dncp_fs.h65 int ncp_date_dos2unix(__le16 time, __le16 date);
66 void ncp_date_unix2dos(int unix_date, __le16 * time, __le16 * date);
Ddir.c1197 unsigned short time = le16_to_cpu(t), date = le16_to_cpu(d); in ncp_date_dos2unix() local
1202 month = ((date >> 5) - 1) & 15; in ncp_date_dos2unix()
1203 year = date >> 9; in ncp_date_dos2unix()
1205 86400 * ((date & 31) - 1 + day_n[month] + (year / 4) + in ncp_date_dos2unix()
1214 ncp_date_unix2dos(int unix_date, __le16 *time, __le16 *date) in ncp_date_unix2dos() argument
1236 *date = cpu_to_le16(nl_day - day_n[month - 1] + 1 + (month << 5) + (year << 9)); in ncp_date_unix2dos()
/linux-4.4.14/scripts/
Dbootgraph.pl156 my $date = `date`;
159 print "<text transform=\"translate($xheader,$cyheader)\">Date: $date</text>\n";
Dstackusage4 now=`date +%s`
Dmkcompile_h41 TIMESTAMP=`date`
Dcheckpatch.pl654 my $date = POSIX::strftime("%Y%m%d%H%M",
656 $last_mod_date = $date if ($last_mod_date < $date);
/linux-4.4.14/tools/testing/selftests/ftrace/
Dftracetest95 LOG_DIR=$TOP_DIR/logs/`date +%Y%m%d-%H%M%S`/
112 date > $LOG_FILE
/linux-4.4.14/drivers/staging/gs_fpgaboot/
Dgs_fpgaboot.h52 char date[MAX_STR]; member
Dgs_fpgaboot.c130 pr_info("date: %s\n", fimage->date); in gs_print_header()
146 readinfo_bitstream(bitdata, fimage->date, &offset); in gs_read_bitstream()
/linux-4.4.14/tools/testing/selftests/rcutorture/bin/
Dkvm-test-1-run.sh66 echo ' ---' `date`: Starting build
137 echo ' ---' `date`: Starting kernel
Dkvm.sh49 ds=`date +%Y.%m.%d-%H:%M:%S`
/linux-4.4.14/drivers/staging/rtl8188eu/include/
Dfw.h46 u8 date; member
/linux-4.4.14/arch/mips/include/asm/
Dm48t37.h26 volatile u8 date; member
/linux-4.4.14/arch/s390/include/uapi/asm/
Dhypfs.h41 char date[8]; /* MM/DD/YY in EBCDIC */ member
/linux-4.4.14/Documentation/power/
Ds2ram.txt78 correct date/time! It is therefore advisable to use a program like ntp-date
79 or rdate to reset the correct date/time from an external time source when
/linux-4.4.14/arch/s390/boot/
DMakefile6 tr -c '[0-9A-Za-z]' '_'`__`date | \
/linux-4.4.14/
DKbuild42 # We use internal kbuild rules to avoid the "is up to date" message from make
77 # We use internal kbuild rules to avoid the "is up to date" message from make
DREADME115 Compiling and running the 4.x kernels requires up-to-date
DMakefile769 KBUILD_CFLAGS += $(call cc-option,-Werror=date-time)
DCOPYING112 stating that you changed the files and the date of any change.
/linux-4.4.14/drivers/gpu/drm/tdfx/
Dtdfx_drv.c63 .date = DRIVER_DATE,
/linux-4.4.14/drivers/gpu/drm/
Ddrm_platform.c62 driver->date, dev->primary->index); in drm_get_platform_dev()
Ddrm_ioctl.c497 err = drm_copy_field(version->date, &version->date_len, in drm_version()
498 dev->driver->date); in drm_version()
Ddrm_pci.c306 driver->date, pci_name(pdev), dev->primary->index); in drm_get_pci_dev()
Ddrm_ioc32.c82 u32 date; /**< User-space buffer to hold date */ member
104 || __put_user((void __user *)(unsigned long)v32.date, in compat_drm_version()
105 &version->date) in compat_drm_version()
/linux-4.4.14/drivers/gpu/drm/i810/
Di810_drv.c73 .date = DRIVER_DATE,
/linux-4.4.14/drivers/gpu/drm/savage/
Dsavage_drv.c66 .date = DRIVER_DATE,
/linux-4.4.14/drivers/nfc/s3fwrn5/
Dfirmware.h78 char date[13]; member
Dfirmware.c310 memcpy(fw->date, fw->fw->data + 0x00, 12); in s3fwrn5_fw_request_firmware()
311 fw->date[12] = '\0'; in s3fwrn5_fw_request_firmware()
/linux-4.4.14/arch/x86/include/asm/
Dmicrocode_intel.h9 unsigned int date; member
/linux-4.4.14/drivers/gpu/drm/r128/
Dr128_drv.c78 .date = DRIVER_DATE,
/linux-4.4.14/arch/mips/lasat/image/
DMakefile22 -D TIMESTAMP=$(shell date +%s)
/linux-4.4.14/drivers/gpu/drm/virtio/
Dvirtgpu_drm_bus.c88 driver->date, dev->primary->index); in drm_virtio_init()
Dvirtgpu_drv.c158 .date = DRIVER_DATE,
/linux-4.4.14/net/wireless/
Ddb.txt8 # up-to-date on your behalf.
/linux-4.4.14/tools/usb/
Dhcd-tests.sh89 echo $(date)
/linux-4.4.14/drivers/gpu/drm/mga/
Dmga_drv.c82 .date = DRIVER_DATE,
/linux-4.4.14/drivers/infiniband/hw/qib/
Dqib_qsfp.h166 u8 date[QSFP_DATE_LEN]; member
Dqib_qsfp.c400 ret = qsfp_read(ppd, QSFP_DATE_OFFS, &cp->date, QSFP_DATE_LEN); in qib_refresh_qsfp_cache()
404 cks += cp->date[idx]; in qib_refresh_qsfp_cache()
539 QSFP_DATE_LEN, cd.date); in qib_qsfp_dump()
/linux-4.4.14/drivers/gpu/drm/via/
Dvia_drv.c97 .date = DRIVER_DATE,
/linux-4.4.14/drivers/gpu/drm/udl/
Dudl_drv.c61 .date = DRIVER_DATE,
/linux-4.4.14/drivers/gpu/drm/sis/
Dsis_drv.c118 .date = DRIVER_DATE,
/linux-4.4.14/drivers/staging/gdm72xx/
Dusb_boot.c49 char date[32]; member
63 char date[32]; member
/linux-4.4.14/drivers/net/wimax/i2400m/
Dfw.c1194 module_id, module_vendor, date, size; in i2400m_fw_hdr_check() local
1203 date = le32_to_cpu(bcf_hdr->date); in i2400m_fw_hdr_check()
1210 major_version, minor_version, header_len, size, date); in i2400m_fw_hdr_check()
1236 if (date < 0x20080300) in i2400m_fw_hdr_check()
1239 i2400m->fw_name, index, offset, date); in i2400m_fw_hdr_check()
/linux-4.4.14/drivers/gpu/drm/mgag200/
Dmgag200_drv.c99 .date = DRIVER_DATE,
/linux-4.4.14/Documentation/sound/oss/
Doss-parameters.txt7 This document may not be entirely up to date and comprehensive. The command
/linux-4.4.14/Documentation/arm/Samsung-S3C24XX/
DEB2410ITX.txt42 information or up-to-date versions of linux-mtd.
/linux-4.4.14/Documentation/kbuild/
Dkbuild.txt216 Setting this to a date string overrides the timestamp used in the
218 be a string that can be passed to date -d. The default value
219 is the output of the date command at one point during build.
/linux-4.4.14/drivers/gpu/drm/fsl-dcu/
Dfsl_dcu_drm_drv.c216 .date = "20150213",
374 driver->date, drm->primary->index); in fsl_dcu_drm_probe()
/linux-4.4.14/drivers/gpu/drm/cirrus/
Dcirrus_drv.c140 .date = DRIVER_DATE,
/linux-4.4.14/sound/firewire/bebob/
Dbebob_maudio.c98 u64 date; in snd_bebob_maudio_load_firmware() local
107 &date, sizeof(u64)); in snd_bebob_maudio_load_firmware()
114 if (date < 0x3230303730343031LL) { in snd_bebob_maudio_load_firmware()
/linux-4.4.14/drivers/ata/
Dahci.c1078 int year, month, date; in ahci_sb600_enable_64bit() local
1089 dmi_get_date(DMI_BIOS_DATE, &year, &month, &date); in ahci_sb600_enable_64bit()
1090 snprintf(buf, sizeof(buf), "%04d%02d%02d", year, month, date); in ahci_sb600_enable_64bit()
1213 int year, month, date; in ahci_broken_suspend() local
1219 dmi_get_date(DMI_BIOS_DATE, &year, &month, &date); in ahci_broken_suspend()
1220 snprintf(buf, sizeof(buf), "%04d%02d%02d", year, month, date); in ahci_broken_suspend()
/linux-4.4.14/include/uapi/linux/
Diso_fs.h150 char date [ISODCL (19, 25)]; /* 7 by 711 */ member
Dmsdos_fs.h183 __le16 time,date,start;/* time, date and first cluster */ member
/linux-4.4.14/Documentation/hwmon/
Dnct668332 build date 04/03/13 do not match the register locations in the Nuvoton
Dsubmitting-patches37 date.
39 * Make sure the information in Kconfig is up to date.
/linux-4.4.14/drivers/gpu/drm/ast/
Dast_drv.c207 .date = DRIVER_DATE,
/linux-4.4.14/drivers/gpu/drm/bochs/
Dbochs_drv.c89 .date = "20130925",
/linux-4.4.14/Documentation/input/
Dyealink.txt145 date +"%m.%e.%k:%M" | sed 's/^0/ /' > ./line1
147 Will update the LCD with the current date & time.
Datarikbd.txt487 and not alter that particular field of the date or time. This permits setting
/linux-4.4.14/Documentation/sound/alsa/
Dalsa-parameters.txt7 This document may not be entirely up to date and comprehensive. The command
DProcfile.txt24 Shows the version string and compile date.
/linux-4.4.14/Documentation/video4linux/
DREADME.ir11 from http://bytesex.org/snapshot/input-<date>.tar.gz
/linux-4.4.14/include/uapi/linux/wimax/
Di2400m.h140 __le32 date; /* BCD YYYMMDD */ member
/linux-4.4.14/drivers/gpu/drm/vgem/
Dvgem_drv.c261 .date = DRIVER_DATE,
/linux-4.4.14/drivers/gpu/drm/qxl/
Dqxl_drv.c267 .date = DRIVER_DATE,
/linux-4.4.14/drivers/media/usb/dvb-usb/
DKconfig42 For an up-to-date list of devices supported by this driver, have a look
63 For an up-to-date list of devices supported by this driver, have a look
92 For an up-to-date list of devices supported by this driver, have a look
/linux-4.4.14/drivers/gpu/drm/radeon/
Dradeon_drv.c368 .date = DRIVER_DATE,
613 .date = DRIVER_DATE,
/linux-4.4.14/Documentation/filesystems/
Dvfat.txt241 unsigned char cdate[2]; // Creation date
242 unsigned char adate[2]; // Last access date
245 unsigned char date[2]; // date stamp
Dromfs.txt152 romfs has also a mailing list, and to date, it hasn't received any
Daffs.txt185 this fs. For a most up-to-date list of bugs please consult
Dvfs.txt733 they believe the cache may be out of date with storage) by
764 block is up to date then the read can complete without needing the IO
765 to bring the whole page up to date.
1165 (Note some of these resources are not up-to-date with the latest kernel
DLocking2 It is (believed to be) up-to-date. *Please*, if you change anything in
/linux-4.4.14/drivers/gpu/drm/vc4/
Dvc4_drv.c118 .date = DRIVER_DATE,
/linux-4.4.14/drivers/gpu/drm/sti/
Dsti_drv.c219 .date = DRIVER_DATE,
/linux-4.4.14/drivers/staging/slicoss/
Dslichw.h670 u8 date[2]; member
678 u8 date[3]; member
/linux-4.4.14/Documentation/networking/
Dgen_stats.txt107 up-to-date info.
Dregulatory.txt7 More up to date information can be obtained at the project's web page:
205 The file net/wireless/db.txt should be kept up-to-date with the db.txt
Ddccp.txt43 For more up-to-date versions of the DCCP implementation, please consider using
DLICENSE.qlcnic106 stating that you changed the files and the date of any change.
Dphy.txt203 Fills the phydev structure with up-to-date information about the current
DLICENSE.qlge106 stating that you changed the files and the date of any change.
/linux-4.4.14/drivers/gpu/drm/rcar-du/
Drcar_du_drv.c297 .date = "20130110",
/linux-4.4.14/Documentation/vm/
Dpagemap.txt128 is up-to-date one has to read /sys/kernel/mm/page_idle/bitmap first.
132 3. UPTODATE page has up-to-date data
/linux-4.4.14/tools/perf/
Dbuiltin-kvm.c561 char date[64]; in show_timeofday() local
567 strftime(date, sizeof(date), "%H:%M:%S", &ltime); in show_timeofday()
568 pr_info("%s.%06ld", date, tv.tv_usec); in show_timeofday()
/linux-4.4.14/Documentation/mmc/
Dmmc-dev-attrs.txt19 date Manufacturing Date (from CID Register)
/linux-4.4.14/drivers/gpu/drm/shmobile/
Dshmob_drm_drv.c292 .date = "20120424",
/linux-4.4.14/Documentation/scsi/
Dscsi-parameters.txt7 This document may not be entirely up to date and comprehensive. The command
Dosd.txt184 More up-to-date information can be found on:
Darcmsr_spec.txt100 ** byte 4 : date (1..31)
DLICENSE.qla4xxx107 stating that you changed the files and the date of any change.
DLICENSE.qla2xxx108 stating that you changed the files and the date of any change.
DChangeLog.megaraid_sas274 2. Add the fix for 64bit sense date errors.
DChangeLog.megaraid178 This patch pencils in a date of Feb 06 for this, and performs some
DBusLogic.txt202 the date of this document. It is recommended that anyone purchasing a BusLogic
/linux-4.4.14/sound/soc/intel/baytrail/
Dsst-baytrail-ipc.c134 u8 date[16]; member
760 init.build_info.date, init.build_info.time); in sst_byt_dsp_init()
/linux-4.4.14/drivers/memstick/core/
Dmspro_block.c124 unsigned short date; member
464 (x_spfile->date >> 9) + 1980, in mspro_block_attr_show_specfile()
465 (x_spfile->date >> 5) & 0xf, in mspro_block_attr_show_specfile()
466 x_spfile->date & 0x1f); in mspro_block_attr_show_specfile()
/linux-4.4.14/drivers/gpu/drm/armada/
Darmada_drv.c216 .date = "20120730",
/linux-4.4.14/fs/cifs/
Dnetmisc.c966 u16 date = le16_to_cpu(le_date); in cnvrtDosUnixTm() local
969 SMB_DATE *sd = (SMB_DATE *)&date; in cnvrtDosUnixTm()
971 cifs_dbg(FYI, "date %d time %d\n", date, time); in cnvrtDosUnixTm()
/linux-4.4.14/drivers/isdn/act2000/
Dcapi.h73 __u8 date[20]; /* date fields */ member
/linux-4.4.14/drivers/gpu/drm/i915/
Dintel_csr.c83 uint32_t date; member
Di915_drv.c1727 .date = DRIVER_DATE,
/linux-4.4.14/drivers/fmc/
Dfmc-sdb.c226 __be32_to_cpu(r->synthesis.date), in __fmc_show_sdb_tree()
/linux-4.4.14/sound/soc/intel/atom/
Dsst-mfld-dsp.h237 unsigned char date[16]; /* Firmware build date */ member
/linux-4.4.14/Documentation/fmc/
DFMC-and-SDB.txt18 The most up to date version of code and documentation is always
/linux-4.4.14/block/partitions/
Dacorn.c70 __le32 date; member
/linux-4.4.14/Documentation/i2c/
Dfunctionality14 For the most up-to-date list of functionality constants, please check
/linux-4.4.14/tools/perf/Documentation/
DMakefile251 date >$@
/linux-4.4.14/drivers/gpu/drm/imx/
Dimx-drm-core.c498 .date = "20120507",
/linux-4.4.14/include/uapi/drm/
Ddrm.h135 char __user *date; /**< User-space buffer to hold date */ member
/linux-4.4.14/Documentation/ia64/
Defirtc.txt34 the reference date is different. Year is the using the full 4-digit format.
/linux-4.4.14/drivers/gpu/drm/rockchip/
Drockchip_drm_drv.c301 .date = DRIVER_DATE,
/linux-4.4.14/drivers/gpu/drm/tegra/
Ddrm.c958 .date = DRIVER_DATE,
1003 driver->date, drm->primary->index); in host1x_drm_probe()
/linux-4.4.14/drivers/gpu/drm/nouveau/
Dnouveau_drm.c968 .date = GIT_REVISION,
970 .date = DRIVER_DATE,
/linux-4.4.14/drivers/gpu/drm/gma500/
Dpsb_drv.c521 .date = DRIVER_DATE,
/linux-4.4.14/drivers/staging/rdma/hfi1/
Dfirmware.c99 u32 date; /* BCD yyyymmdd */ member
453 hfi1_cdbg(FIRMWARE, " date 0x%x", css->date); in obtain_one_firmware()
/linux-4.4.14/scripts/package/
Dbuilddeb255 -- $maintainer $(date -R)
/linux-4.4.14/arch/m68k/q40/
DREADME5 some up to date information. Booter and other tools will be also
/linux-4.4.14/drivers/gpu/drm/exynos/
Dexynos_drm_drv.c473 .date = DRIVER_DATE,
/linux-4.4.14/Documentation/video4linux/bttv/
DInsmod-options3 module, among them a complete and up-to-date list of insmod options.
/linux-4.4.14/drivers/net/wireless/realtek/rtl8xxxu/
Drtl8xxxu.h391 u8 date; /* Release time Date field */ member
/linux-4.4.14/drivers/gpu/drm/amd/amdgpu/
Damdgpu_drv.c529 .date = DRIVER_DATE,
/linux-4.4.14/Documentation/filesystems/pohmelfs/
Dnetwork_protocol.txt170 page to be marked as not up-to-date.
/linux-4.4.14/drivers/gpu/drm/atmel-hlcdc/
Datmel_hlcdc_dc.c722 .date = "20141504",
/linux-4.4.14/Documentation/usb/
DCREDITS51 Systems recognized the importance of an up-to-date open
Dusb-serial.txt430 See http://www.uuhaus.de/linux/palmconnect.html for up-to-date
/linux-4.4.14/include/drm/
DdrmP.h638 char *date; member
/linux-4.4.14/drivers/gpu/drm/tilcdc/
Dtilcdc_drv.c581 .date = "20121205",
/linux-4.4.14/fs/jffs2/
DREADME.Locking6 JFFS2. It is not expected to remain perfectly up to date, but ought to
/linux-4.4.14/drivers/net/wireless/
DKconfig213 only wireless RNDIS chip known to date.
/linux-4.4.14/drivers/gpu/drm/omapdrm/
Domap_drv.c863 .date = DRIVER_DATE,
/linux-4.4.14/sound/isa/gus/
Dinterwave.c369 /* 026 */ unsigned char date[10]; member
/linux-4.4.14/Documentation/timers/
Dtimekeeping.txt25 tells you where you are in time. For example issuing the command 'date' on
Dhighres.txt230 in the idle period to make sure that jiffies are up to date and the interrupt
/linux-4.4.14/Documentation/powerpc/
Dqe_firmware.txt181 qe_upload_firmware() for up-to-date implementation information.
/linux-4.4.14/drivers/mmc/core/
Dsd.c659 MMC_DEV_ATTR(date, "%02d/%04d\n", card->cid.month, card->cid.year);
Dmmc.c715 MMC_DEV_ATTR(date, "%02d/%04d\n", card->cid.month, card->cid.year);
/linux-4.4.14/drivers/net/ethernet/neterion/vxge/
Dvxge-config.h217 char date[VXGE_HW_FW_STRLEN]; member
Dvxge-config.c828 snprintf(fw_date->date, VXGE_HW_FW_STRLEN, "%2.2d/%2.2d/%4.4d", in __vxge_hw_vpath_fw_ver_get()
848 snprintf(flash_date->date, VXGE_HW_FW_STRLEN, "%2.2d/%2.2d/%4.4d", in __vxge_hw_vpath_fw_ver_get()
/linux-4.4.14/Documentation/filesystems/caching/
Dobject.txt194 coherency data indicated what's on disk is out of date. In this state,
/linux-4.4.14/Documentation/virtual/kvm/
Dmmu.txt448 out-of-date information, but with an up-to-date generation number.
/linux-4.4.14/Documentation/development-process/
D3.Early-stage131 the place to start. That file tends to not always be up to date, though,
/linux-4.4.14/drivers/gpu/drm/msm/
Dmsm_drv.c1005 .date = "20130625",
/linux-4.4.14/tools/testing/ktest/
Dktest.pl1591 my $date = sprintf "%04d%02d%02d%02d%02d%02d",
1599 my $dir = "$machine-$test_type-$type-$result-$date";
/linux-4.4.14/Documentation/isdn/
DREADME.sc19 remove yourself from this list at a later date, send another message to
/linux-4.4.14/Documentation/device-mapper/
Dcache.txt33 may be out of date or kept in sync with the copy on the cache device
/linux-4.4.14/fs/nfs/
Dsuper.c766 impl_id->date.seconds, impl_id->date.nseconds); in show_implementation_id()
/linux-4.4.14/fs/befs/
DChangeLog225 * Fixed date format in this file. Was I smoking crack?
/linux-4.4.14/fs/isofs/
Dinode.c1370 inode->i_ctime.tv_sec = iso_date(de->date, high_sierra); in isofs_read_inode()
/linux-4.4.14/drivers/gpu/drm/vmwgfx/
Dvmwgfx_drv.c1518 .date = VMWGFX_DRIVER_DATE,
/linux-4.4.14/drivers/tty/
Dcyclades.c110 char date[32]; member
3447 cyc_isfwstr(h->date, sizeof(h->date))) { in __cyz_load_fw()
/linux-4.4.14/arch/x86/math-emu/
DREADME220 These figures are now somewhat out-of-date. The emulator has become
/linux-4.4.14/Documentation/blockdev/
Dparide.txt413 web pages (although they are not always up to date) at
DREADME.DAC96095 PCI RAID Controllers as of the date of this document. It is recommended that
/linux-4.4.14/drivers/scsi/aacraid/
Daacraid.h211 __le32 date; /* member
/linux-4.4.14/drivers/staging/rtl8192u/
Dcopying96 stating that you changed the files and the date of any change.
/linux-4.4.14/Documentation/DocBook/
Dkernel-api.xml.db546 API-dmi-get-date
/linux-4.4.14/tools/usb/usbip/
DCOPYING96 stating that you changed the files and the date of any change.
/linux-4.4.14/arch/arm/tools/
Dmach-types5 # Up to date versions of this file can be obtained from:
/linux-4.4.14/Documentation/cdrom/
Dide-cd48 Documentation/ide/ide.txt for up-to-date information on the ide
/linux-4.4.14/drivers/staging/rtl8192e/
Dlicense99 that you changed the files and the date of any change.
/linux-4.4.14/Documentation/RCU/
DRTFP.txt38 a description of Argus that noted that use of out-of-date values can
347 are necessary if the reported total is to be up to date. They
349 out of date." Relies on semantics -- approximate numerical
/linux-4.4.14/drivers/net/wireless/realtek/rtlwifi/
Dwifi.h233 u8 date; member
/linux-4.4.14/drivers/net/wireless/ipw2x00/
Dipw2200.c10458 char date[32]; in ipw_ethtool_get_drvinfo() local
10466 len = sizeof(date); in ipw_ethtool_get_drvinfo()
10467 ipw_get_ordinal(p, IPW_ORD_STAT_FW_DATE, date, &len); in ipw_ethtool_get_drvinfo()
10470 vers, date); in ipw_ethtool_get_drvinfo()
/linux-4.4.14/drivers/scsi/lpfc/
Dlpfc_hw4.h3912 uint8_t date[12]; member
/linux-4.4.14/Documentation/sysctl/
Dkernel.txt529 date behind it indicates the time the kernel was built.

12