Home
last modified time | relevance | path

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

12

/linux-4.1.27/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.c194 u8 date[7]; in rx8025_get_time() local
197 err = rx8025_read_regs(rx8025->client, RX8025_REG_SEC, 7, date); in rx8025_get_time()
203 date[0], date[1], date[2], date[3], date[4], in rx8025_get_time()
204 date[5], date[6]); in rx8025_get_time()
206 dt->tm_sec = bcd2bin(date[RX8025_REG_SEC] & 0x7f); in rx8025_get_time()
207 dt->tm_min = bcd2bin(date[RX8025_REG_MIN] & 0x7f); in rx8025_get_time()
209 dt->tm_hour = bcd2bin(date[RX8025_REG_HOUR] & 0x3f); in rx8025_get_time()
211 dt->tm_hour = bcd2bin(date[RX8025_REG_HOUR] & 0x1f) % 12 in rx8025_get_time()
212 + (date[RX8025_REG_HOUR] & 0x20 ? 12 : 0); in rx8025_get_time()
214 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-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.c117 unsigned int time, date; in at91_rtc_decodetime() local
122 date = at91_rtc_read(calreg); in at91_rtc_decodetime()
124 (date != at91_rtc_read(calreg))); in at91_rtc_decodetime()
135 tm->tm_year = bcd2bin(date & AT91_RTC_CENT) * 100; /* century */ in at91_rtc_decodetime()
136 tm->tm_year += bcd2bin((date & AT91_RTC_YEAR) >> 8); /* year */ in at91_rtc_decodetime()
138 tm->tm_wday = bcd2bin((date & AT91_RTC_DAY) >> 21) - 1; /* day of the week [0-6], Sunday=0 */ in at91_rtc_decodetime()
139 tm->tm_mon = bcd2bin((date & AT91_RTC_MONTH) >> 16) - 1; in at91_rtc_decodetime()
140 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.1.27/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.1.27/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.c1134 __le16 date, time; in fat_alloc_new_dir() local
1149 fat_time_unix2fat(sbi, ts, &time, &date, &time_cs); in fat_alloc_new_dir()
1158 de[0].date = de[1].date = date; in fat_alloc_new_dir()
1163 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.c500 fat_time_fat2unix(sbi, &inode->i_mtime, de->time, de->date, 0); in fat_fill_inode()
781 &raw_entry->date, NULL); in __fat_write_inode()
/linux-4.1.27/arch/x86/kernel/cpu/microcode/
Dintel_early.c397 unsigned int sig, pf, rev, total_size, data_size, date; in show_saved_mc() local
426 date = mc_saved_header->date; in show_saved_mc()
430 date & 0xffff, in show_saved_mc()
431 date >> 24, in show_saved_mc()
432 (date >> 16) & 0xff); in show_saved_mc()
554 print_ucode_info(struct ucode_cpu_info *uci, unsigned int date) in print_ucode_info() argument
561 date & 0xffff, in print_ucode_info()
562 date >> 24, in print_ucode_info()
563 (date >> 16) & 0xff); in print_ucode_info()
604 *current_mc_date_p = mc_intel->hdr.date; in print_ucode()
[all …]
Dintel.c174 mc_intel->hdr.date & 0xffff, in apply_microcode_intel()
175 mc_intel->hdr.date >> 24, in apply_microcode_intel()
176 (mc_intel->hdr.date >> 16) & 0xff); in apply_microcode_intel()
/linux-4.1.27/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.1.27/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.
DDMA-API-HOWTO.txt658 properly in order for the CPU and device to see the most up-to-date and
/linux-4.1.27/include/linux/
Dsdb.h31 uint32_t date; /* 0x28..0x2b */ member
125 uint32_t date; /* 0x2c-0x2f */ member
Dnfs_xdr.h1169 struct nfstime4 date; member
/linux-4.1.27/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.1.27/scripts/
Dbootgraph.pl156 my $date = `date`;
159 print "<text transform=\"translate($xheader,$cyheader)\">Date: $date</text>\n";
Dmkcompile_h41 TIMESTAMP=`date`
Dcheckpatch.pl640 my $date = POSIX::strftime("%Y%m%d%H%M",
642 $last_mod_date = $date if ($last_mod_date < $date);
/linux-4.1.27/tools/testing/selftests/ftrace/
Dftracetest95 LOG_DIR=$TOP_DIR/logs/`date +%Y%m%d-%H%M%S`/
112 date > $LOG_FILE
/linux-4.1.27/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.1.27/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.1.27/
DKbuild41 # We use internal kbuild rules to avoid the "is up to date" message from make
58 # We use internal kbuild rules to avoid the "is up to date" message from make
DMakefile773 KBUILD_CFLAGS += $(call cc-option,-Werror=date-time)
DREADME115 Compiling and running the 4.x kernels requires up-to-date
DCOPYING112 stating that you changed the files and the date of any change.
/linux-4.1.27/drivers/staging/rtl8188eu/include/
Dfw.h46 u8 date; member
/linux-4.1.27/arch/s390/include/uapi/asm/
Dhypfs.h41 char date[8]; /* MM/DD/YY in EBCDIC */ member
/linux-4.1.27/arch/mips/include/asm/
Dm48t37.h26 volatile u8 date; member
/linux-4.1.27/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.1.27/drivers/infiniband/hw/qib/
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()
541 QSFP_LOT_LEN, cd.date); in qib_qsfp_dump()
Dqib_qsfp.h166 u8 date[QSFP_DATE_LEN]; member
/linux-4.1.27/arch/s390/boot/
DMakefile6 tr -c '[0-9A-Za-z]' '_'`__`date | \
/linux-4.1.27/drivers/gpu/drm/tdfx/
Dtdfx_drv.c63 .date = DRIVER_DATE,
/linux-4.1.27/drivers/gpu/drm/
Ddrm_platform.c62 driver->date, dev->primary->index); in drm_get_platform_dev()
Ddrm_ioctl.c479 err = drm_copy_field(version->date, &version->date_len, in drm_version()
480 dev->driver->date); in drm_version()
Ddrm_pci.c303 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.1.27/drivers/gpu/drm/savage/
Dsavage_drv.c66 .date = DRIVER_DATE,
/linux-4.1.27/drivers/gpu/drm/i810/
Di810_drv.c73 .date = DRIVER_DATE,
/linux-4.1.27/arch/mips/lasat/image/
DMakefile22 -D TIMESTAMP=$(shell date +%s)
/linux-4.1.27/drivers/gpu/drm/r128/
Dr128_drv.c78 .date = DRIVER_DATE,
/linux-4.1.27/net/wireless/
Ddb.txt8 # up-to-date on your behalf.
/linux-4.1.27/drivers/gpu/drm/mga/
Dmga_drv.c82 .date = DRIVER_DATE,
/linux-4.1.27/arch/x86/include/asm/
Dmicrocode_intel.h9 unsigned int date; member
/linux-4.1.27/tools/usb/
Dhcd-tests.sh89 echo $(date)
/linux-4.1.27/drivers/net/wireless/rtlwifi/rtl8723com/
Dfw_common.h61 u8 date; member
/linux-4.1.27/drivers/gpu/drm/via/
Dvia_drv.c97 .date = DRIVER_DATE,
/linux-4.1.27/drivers/gpu/drm/sis/
Dsis_drv.c118 .date = DRIVER_DATE,
/linux-4.1.27/drivers/gpu/drm/udl/
Dudl_drv.c61 .date = DRIVER_DATE,
/linux-4.1.27/drivers/staging/gdm72xx/
Dusb_boot.c49 char date[32]; member
63 char date[32]; member
/linux-4.1.27/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.1.27/drivers/gpu/drm/mgag200/
Dmgag200_drv.c98 .date = DRIVER_DATE,
/linux-4.1.27/Documentation/kbuild/
Dkbuild.txt211 Setting this to a date string overrides the timestamp used in the
213 be a string that can be passed to date -d. The default value
214 is the output of the date command at one point during build.
/linux-4.1.27/drivers/net/wireless/rtlwifi/rtl8192de/
Dfw.h122 u8 date; member
/linux-4.1.27/Documentation/sound/oss/
Doss-parameters.txt7 This document may not be entirely up to date and comprehensive. The command
/linux-4.1.27/Documentation/arm/Samsung-S3C24XX/
DEB2410ITX.txt42 information or up-to-date versions of linux-mtd.
/linux-4.1.27/drivers/net/wireless/rtlwifi/rtl8192c/
Dfw_common.h80 u8 date; member
/linux-4.1.27/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.1.27/drivers/ata/
Dahci.c1082 int year, month, date; in ahci_sb600_enable_64bit() local
1093 dmi_get_date(DMI_BIOS_DATE, &year, &month, &date); in ahci_sb600_enable_64bit()
1094 snprintf(buf, sizeof(buf), "%04d%02d%02d", year, month, date); in ahci_sb600_enable_64bit()
1217 int year, month, date; in ahci_broken_suspend() local
1223 dmi_get_date(DMI_BIOS_DATE, &year, &month, &date); in ahci_broken_suspend()
1224 snprintf(buf, sizeof(buf), "%04d%02d%02d", year, month, date); in ahci_broken_suspend()
/linux-4.1.27/drivers/gpu/drm/cirrus/
Dcirrus_drv.c140 .date = DRIVER_DATE,
/linux-4.1.27/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.1.27/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.1.27/drivers/gpu/drm/bochs/
Dbochs_drv.c89 .date = "20130925",
/linux-4.1.27/drivers/net/wireless/rtlwifi/rtl8192ee/
Dfw.h100 u8 date; member
/linux-4.1.27/drivers/gpu/drm/ast/
Dast_drv.c207 .date = DRIVER_DATE,
/linux-4.1.27/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.1.27/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.1.27/include/uapi/linux/wimax/
Di2400m.h140 __le32 date; /* BCD YYYMMDD */ member
/linux-4.1.27/Documentation/video4linux/
DREADME.ir11 from http://bytesex.org/snapshot/input-<date>.tar.gz
Dv4l2-framework.txt571 later date. It differs between i2c drivers and as such can be confusing.
/linux-4.1.27/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.1.27/drivers/gpu/drm/radeon/
Dradeon_drv.c367 .date = DRIVER_DATE,
612 .date = DRIVER_DATE,
/linux-4.1.27/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
Daffs.txt185 this fs. For a most up-to-date list of bugs please consult
Dromfs.txt152 romfs has also a mailing list, and to date, it hasn't received any
Dvfs.txt731 they believe the cache may be out of date with storage) by
762 block is up to date then the read can complete without needing the IO
763 to bring the whole page up to date.
1158 (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.1.27/tools/perf/
Dbuiltin-kvm.c562 char date[64]; in show_timeofday() local
568 strftime(date, sizeof(date), "%H:%M:%S", &ltime); in show_timeofday()
569 pr_info("%s.%06ld", date, tv.tv_usec); in show_timeofday()
/linux-4.1.27/drivers/gpu/drm/qxl/
Dqxl_drv.c266 .date = DRIVER_DATE,
/linux-4.1.27/drivers/staging/slicoss/
Dslichw.h663 u8 date[2]; member
671 u8 date[3]; member
/linux-4.1.27/drivers/gpu/drm/rcar-du/
Drcar_du_drv.c282 .date = "20130110",
/linux-4.1.27/drivers/gpu/drm/sti/
Dsti_drm_drv.c220 .date = DRIVER_DATE,
/linux-4.1.27/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.qlge106 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.qlcnic106 stating that you changed the files and the date of any change.
Dfilter.txt572 eBPF is an ISA, BPF extensions date back to classic BPF's 'overloading'
/linux-4.1.27/Documentation/mmc/
Dmmc-dev-attrs.txt19 date Manufacturing Date (from CID Register)
/linux-4.1.27/drivers/net/wireless/rtlwifi/rtl8188ee/
Dfw.h142 u8 date; member
/linux-4.1.27/drivers/gpu/drm/shmobile/
Dshmob_drm_drv.c292 .date = "20120424",
/linux-4.1.27/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.megaraid178 This patch pencils in a date of Feb 06 for this, and performs some
DChangeLog.megaraid_sas274 2. Add the fix for 64bit sense date errors.
DBusLogic.txt202 the date of this document. It is recommended that anyone purchasing a BusLogic
/linux-4.1.27/drivers/gpu/drm/vgem/
Dvgem_drv.c314 .date = DRIVER_DATE,
/linux-4.1.27/sound/soc/intel/baytrail/
Dsst-baytrail-ipc.c134 u8 date[16]; member
747 init.build_info.date, init.build_info.time); in sst_byt_dsp_init()
/linux-4.1.27/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.1.27/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.1.27/drivers/net/wireless/rtlwifi/rtl8821ae/
Dfw.h148 u8 date; member
/linux-4.1.27/sound/soc/intel/atom/
Dsst-mfld-dsp.h237 unsigned char date[16]; /* Firmware build date */ member
/linux-4.1.27/drivers/isdn/act2000/
Dcapi.h73 __u8 date[20]; /* date fields */ member
/linux-4.1.27/drivers/fmc/
Dfmc-sdb.c226 __be32_to_cpu(r->synthesis.date), in __fmc_show_sdb_tree()
/linux-4.1.27/Documentation/fmc/
DFMC-and-SDB.txt18 The most up to date version of code and documentation is always
/linux-4.1.27/block/partitions/
Dacorn.c70 __le32 date; member
/linux-4.1.27/Documentation/i2c/
Dfunctionality14 For the most up-to-date list of functionality constants, please check
/linux-4.1.27/drivers/gpu/drm/rockchip/
Drockchip_drm_drv.c298 .date = DRIVER_DATE,
/linux-4.1.27/include/uapi/drm/
Ddrm.h135 char __user *date; /**< User-space buffer to hold date */ member
/linux-4.1.27/drivers/gpu/drm/armada/
Darmada_drv.c333 .date = "20120730",
/linux-4.1.27/tools/perf/Documentation/
DMakefile251 date >$@
/linux-4.1.27/Documentation/ia64/
Defirtc.txt34 the reference date is different. Year is the using the full 4-digit format.
/linux-4.1.27/scripts/package/
Dbuilddeb237 -- $maintainer $(date -R)
/linux-4.1.27/drivers/gpu/drm/tegra/
Ddrm.c948 .date = DRIVER_DATE,
993 driver->date, drm->primary->index); in host1x_drm_probe()
/linux-4.1.27/drivers/gpu/drm/nouveau/
Dnouveau_drm.c993 .date = GIT_REVISION,
995 .date = DRIVER_DATE,
/linux-4.1.27/drivers/gpu/drm/exynos/
Dexynos_drm_drv.c318 .date = DRIVER_DATE,
/linux-4.1.27/drivers/gpu/drm/imx/
Dimx-drm-core.c498 .date = "20120507",
/linux-4.1.27/drivers/gpu/drm/gma500/
Dpsb_drv.c521 .date = DRIVER_DATE,
/linux-4.1.27/arch/m68k/q40/
DREADME5 some up to date information. Booter and other tools will be also
/linux-4.1.27/Documentation/vm/
Dpagemap.txt115 3. UPTODATE page has up-to-date data
/linux-4.1.27/drivers/gpu/drm/atmel-hlcdc/
Datmel_hlcdc_dc.c506 .date = "20141504",
/linux-4.1.27/Documentation/video4linux/bttv/
DInsmod-options3 module, among them a complete and up-to-date list of insmod options.
/linux-4.1.27/drivers/gpu/drm/tilcdc/
Dtilcdc_drv.c564 .date = "20121205",
/linux-4.1.27/Documentation/filesystems/pohmelfs/
Dnetwork_protocol.txt170 page to be marked as not up-to-date.
/linux-4.1.27/drivers/gpu/drm/omapdrm/
Domap_drv.c673 .date = DRIVER_DATE,
/linux-4.1.27/include/drm/
DdrmP.h620 char *date; member
/linux-4.1.27/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.1.27/fs/jffs2/
DREADME.Locking6 JFFS2. It is not expected to remain perfectly up to date, but ought to
/linux-4.1.27/drivers/net/wireless/
DKconfig213 only wireless RNDIS chip known to date.
/linux-4.1.27/drivers/staging/i2o/
Di2o_proc.c877 u8 date[8]; in i2o_seq_show_drivers_stored() member
937 seq_printf(seq, "%-9s", chtostr(tmp, dst->date, 8)); in i2o_seq_show_drivers_stored()
/linux-4.1.27/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.1.27/Documentation/powerpc/
Dqe_firmware.txt181 qe_upload_firmware() for up-to-date implementation information.
/linux-4.1.27/sound/isa/gus/
Dinterwave.c369 /* 026 */ unsigned char date[10]; member
/linux-4.1.27/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()
Dvxge-main.c4676 ll_config->device_hw_info.fw_date.date); in vxge_probe()
/linux-4.1.27/Documentation/filesystems/caching/
Dobject.txt194 coherency data indicated what's on disk is out of date. In this state,
/linux-4.1.27/drivers/gpu/drm/msm/
Dmsm_drv.c927 .date = "20130625",
/linux-4.1.27/Documentation/virtual/kvm/
Dmmu.txt442 out-of-date information, but with an up-to-date generation number.
/linux-4.1.27/Documentation/development-process/
D3.Early-stage131 the place to start. That file tends to not always be up to date, though,
/linux-4.1.27/drivers/mmc/core/
Dsd.c694 MMC_DEV_ATTR(date, "%02d/%04d\n", card->cid.month, card->cid.year);
Dmmc.c711 MMC_DEV_ATTR(date, "%02d/%04d\n", card->cid.month, card->cid.year);
/linux-4.1.27/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.1.27/Documentation/device-mapper/
Dcache.txt33 may be out of date or kept in sync with the copy on the cache device
/linux-4.1.27/Documentation/isdn/
DREADME.sc19 remove yourself from this list at a later date, send another message to
/linux-4.1.27/fs/nfs/
Dsuper.c763 impl_id->date.seconds, impl_id->date.nseconds); in show_implementation_id()
Dnfs4xdr.c5558 p = xdr_decode_hyper(p, &res->impl_id->date.seconds); in decode_exchange_id()
5559 res->impl_id->date.nseconds = be32_to_cpup(p); in decode_exchange_id()
Dnfs4proc.c6953 clp->cl_implid->date.seconds, in _nfs4_proc_exchange_id()
6954 clp->cl_implid->date.nseconds); in _nfs4_proc_exchange_id()
/linux-4.1.27/fs/isofs/
Dinode.c1370 inode->i_ctime.tv_sec = iso_date(de->date, high_sierra); in isofs_read_inode()
/linux-4.1.27/drivers/gpu/drm/i915/
Di915_drv.c1608 .date = DRIVER_DATE,
/linux-4.1.27/fs/befs/
DChangeLog225 * Fixed date format in this file. Was I smoking crack?
/linux-4.1.27/drivers/gpu/drm/vmwgfx/
Dvmwgfx_drv.c1427 .date = VMWGFX_DRIVER_DATE,
/linux-4.1.27/drivers/tty/
Dcyclades.c110 char date[32]; member
3460 cyc_isfwstr(h->date, sizeof(h->date))) { in __cyz_load_fw()
/linux-4.1.27/drivers/scsi/aacraid/
Daacraid.h211 __le32 date; /* member
/linux-4.1.27/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.1.27/arch/x86/math-emu/
DREADME220 These figures are now somewhat out-of-date. The emulator has become
/linux-4.1.27/tools/usb/usbip/
DCOPYING96 stating that you changed the files and the date of any change.
/linux-4.1.27/drivers/staging/rtl8192e/
Dlicense99 that you changed the files and the date of any change.
/linux-4.1.27/drivers/staging/rtl8192u/
Dcopying96 stating that you changed the files and the date of any change.
/linux-4.1.27/Documentation/cdrom/
Dide-cd48 Documentation/ide/ide.txt for up-to-date information on the ide
/linux-4.1.27/arch/arm/tools/
Dmach-types5 # Up to date versions of this file can be obtained from:
/linux-4.1.27/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.1.27/Documentation/sysctl/
Dkernel.txt517 date behind it indicates the time the kernel was built.
/linux-4.1.27/drivers/scsi/lpfc/
Dlpfc_hw4.h3682 uint8_t date[12]; member
/linux-4.1.27/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.1.27/net/netfilter/
DKconfig1420 on) or departure time/date (for locally generated packets).

12