Home
last modified time | relevance | path

Searched refs:date (Results 51 – 75 of 1053) sorted by relevance

12345678910>>...43

/openbmc/linux/arch/x86/kernel/cpu/microcode/
H A Dintel.c428 date & 0xffff, in print_ucode_info()
429 date >> 24, in print_ucode_info()
430 (date >> 16) & 0xff); in print_ucode_info()
457 static void print_ucode(int old_rev, int new_rev, int date) in print_ucode() argument
468 *current_mc_date_p = date; in print_ucode()
475 print_ucode_info(old_rev, new_rev, date); in print_ucode()
517 print_ucode(old_rev, uci->cpu_sig.rev, mc->hdr.date); in apply_microcode_early()
519 print_ucode_info(old_rev, uci->cpu_sig.rev, mc->hdr.date); in apply_microcode_early()
726 mc->hdr.date & 0xffff, in apply_microcode_intel()
727 mc->hdr.date >> 24, in apply_microcode_intel()
[all …]
/openbmc/linux/tools/testing/selftests/rtc/
H A Dsetdate.c25 const char *rtc, *date; in main() local
33 date = argv[2]; in main()
47 sscanf(date, "%d-%d-%d", &new.tm_mday, &new.tm_mon, &new.tm_year); in main()
/openbmc/linux/tools/testing/selftests/rcutorture/bin/
H A Dtorture.sh281 echo " --- $curflavor:" Start `date` | tee -a $T/log
344 echo " --- allmodconfig:" Start `date` | tee -a $T/log
381 echo " --- rcutasksflavors:" Start `date` | tee -a $T/log
446 echo " --- do-srcu-lockdep:" Start `date` | tee -a $T/log
582 echo " --- " Done `date` | tee -a $T/log
609 echo Started at $startdate, ended at `date`, duration `get_starttime_duration $starttime`. | tee -a…
631 echo Looking for K[AC]SAN files to compress: `date` > "$tdir/log-xz" 2>&1
648 echo Compressing vmlinux files in ${i}: `date` >> "$tdir/log-xz" 2>&1
655 …echo Waiting for batch $batchno of $ncompresses compressions `date` | tee -a "$tdir/log-xz" | tee …
671 echo Linking vmlinux.xz files to re-use scenarios `date` | tee -a "$tdir/log-xz" | tee -a $T/log
[all …]
/openbmc/u-boot/drivers/rtc/
H A Dm48t35ax.c26 uchar sec, min, hour, cent_day, date, month, year; in rtc_get() local
38 date = rtc_read (0x5); in rtc_get()
49 year, month, date, cent_day, in rtc_get()
55 tmp->tm_mday = bcd2bin (date & 0x3F); in rtc_get()
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-kernel/oprofile/oprofile/
H A D0003-Define-the-C-preprocessor-variable-to-improve-reprod.patch7 as source for reproducible build date in case when
23 DATE="`date $dateopt '+%a %d %B %Y'`"
24 +AC_DEFINE_UNQUOTED([BUILD_DATE], ["$DATE"], [Use reproducible build date])
/openbmc/linux/drivers/rtc/
H A Drtc-vt8500.c104 u32 date, time; in vt8500_rtc_read_time() local
106 date = readl(vt8500_rtc->regbase + VT8500_RTC_DR); in vt8500_rtc_read_time()
112 tm->tm_mday = bcd2bin(date & DATE_DAY_MASK); in vt8500_rtc_read_time()
113 tm->tm_mon = bcd2bin((date & DATE_MONTH_MASK) >> DATE_MONTH_S) - 1; in vt8500_rtc_read_time()
114 tm->tm_year = bcd2bin((date & DATE_YEAR_MASK) >> DATE_YEAR_S) in vt8500_rtc_read_time()
115 + ((date >> DATE_CENTURY_S) & 1 ? 200 : 100); in vt8500_rtc_read_time()
H A Drtc-sun6i.c462 u32 date, time; in sun6i_rtc_gettime() local
468 date = readl(chip->base + SUN6I_RTC_YMD); in sun6i_rtc_gettime()
470 } while ((date != readl(chip->base + SUN6I_RTC_YMD)) || in sun6i_rtc_gettime()
482 rtc_tm->tm_mday = SUN6I_DATE_GET_DAY_VALUE(date); in sun6i_rtc_gettime()
483 rtc_tm->tm_mon = SUN6I_DATE_GET_MON_VALUE(date) - 1; in sun6i_rtc_gettime()
484 rtc_tm->tm_year = SUN6I_DATE_GET_YEAR_VALUE(date); in sun6i_rtc_gettime()
600 u32 date = 0; in sun6i_rtc_settime() local
609 date = div_u64(rtc_tm_to_time64(rtc_tm), SECS_PER_DAY); in sun6i_rtc_settime()
614 date = SUN6I_DATE_SET_DAY_VALUE(rtc_tm->tm_mday) | in sun6i_rtc_settime()
619 date |= SUN6I_LEAP_SET_VALUE(1); in sun6i_rtc_settime()
[all …]
H A Drtc-at91rm9200.c163 unsigned int time, date; in at91_rtc_decodetime() local
168 date = at91_rtc_read(calreg); in at91_rtc_decodetime()
170 (date != at91_rtc_read(calreg))); in at91_rtc_decodetime()
180 tm->tm_year = bcd2bin(date & AT91_RTC_CENT) * 100; /* century */ in at91_rtc_decodetime()
181 tm->tm_year += bcd2bin(FIELD_GET(AT91_RTC_YEAR, date)); /* year */ in at91_rtc_decodetime()
183 tm->tm_wday = bcd2bin(FIELD_GET(AT91_RTC_DAY, date)) - 1; /* day of the week [0-6], Sunday=0 */ in at91_rtc_decodetime()
184 tm->tm_mon = bcd2bin(FIELD_GET(AT91_RTC_MONTH, date)) - 1; in at91_rtc_decodetime()
185 tm->tm_mday = bcd2bin(FIELD_GET(AT91_RTC_DATE, date)); in at91_rtc_decodetime()
H A Drtc-m48t35.c30 u8 date; member
38 u8 date; member
72 tm->tm_mday = readb(&priv->reg->date); in m48t35_read_time()
136 writeb(day, &priv->reg->date); in m48t35_set_time()
/openbmc/openbmc-test-automation/redfish/managers/
H A Dtest_managers_bmc_time.robot34 [Documentation] Verify that date/time obtained via redfish matches
35 ... date/time obtained via BMC command line.
55 # Add 3 days to current date.
93 [Documentation] Verify date persists after BMC reboot.
96 # Synchronize BMC date/time to local system date/time.
169 [Documentation] Verify immediate change in BMC date time.
218 # date time of the local system.
221 # this is when testing a bad date-time, the
225 # Assign default value of UTC current date time if date_time is empty.
235 [Documentation] Set date time to manual mode via Redfish.
[all …]
/openbmc/openbmc-test-automation/ffdc/plugins/
H A Ddate_time_utils.py24 for date in date_str:
26 datetime.strptime(date, date_format).strftime(desired_format)
/openbmc/linux/tools/testing/selftests/powerpc/mm/
H A Dstress_code_patching.sh29 START_TIME=`date +%s`
31 while [ `date +%s` -lt $END_TIME ]
/openbmc/openbmc-tools/tof-voters/libvoters/
H A Dtime.py11 def timestamp(date: str, time: TimeOfDay) -> int:
12 [year, month, day] = [int(x) for x in date.split("-")]
/openbmc/webui-vue/src/views/Logs/PostCodeLogs/
H A DPostCodeLogs.vue19 <table-date-filter @change="onChangeDateTimeFilter" />
99 <template #cell(date)="{ value }">
228 key: 'date',
355 // Create export file name based on date and action
357 let date = new Date();
358 date =
359 date.toISOString().slice(0, 10) +
361 date.toString().split(':').join('-').split(' ')[4];
370 return fileName + date;
/openbmc/openbmc/poky/meta/recipes-extended/zip/zip-3.0/
H A D10-remove-build-date.patch2 Subject: Remove (optional) build date to make the build reproducible
14 /* Define the compile date string */
/openbmc/linux/fs/exfat/
H A Dmisc.c69 u8 tz, __le16 time, __le16 date, u8 time_cs) in exfat_get_entry_time() argument
72 u16 d = le16_to_cpu(date); in exfat_get_entry_time()
94 u8 *tz, __le16 *time, __le16 *date, u8 *time_cs) in exfat_set_entry_time() argument
104 *date = cpu_to_le16(d); in exfat_set_entry_time()
/openbmc/linux/tools/testing/selftests/powerpc/security/
H A Dmitigation-patching.sh16 start=$(date +%s)
24 now=$(date +%s)
/openbmc/openpower-hw-diags/util/
H A Dffdc.cpp97 std::string date; in sdjGetMessages() local
101 date = dateBuffer; in sdjGetMessages()
104 value = date + " " + syslog + "[" + pid + "]: " + message; in sdjGetMessages()
/openbmc/webui-vue/src/views/HardwareStatus/Sensors/
H A DSensors.vue250 // Create export file name based on date
251 let date = new Date();
252 date =
253 date.toISOString().slice(0, 10) +
255 date.toString().split(':').join('-').split(' ')[4];
256 return this.$t('pageSensors.exportFilePrefix') + date;
/openbmc/linux/tools/testing/selftests/pstore/
H A Dcommon_tests60 LOG_DIR=$TOP_DIR/logs/`date +%Y%m%d-%H%M%S`_${UUID}/
66 date > $LOG_FILE
/openbmc/openbmc/meta-openembedded/meta-python/recipes-devtools/python/python3-click-spinner/
H A D0001-Update-Versioneer-to-0.22.patch209 + date = keywords.get("date")
213 + date = date.splitlines()[-1]
259 + "date": date}
404 + date = date.splitlines()[-1]
1412 + date = keywords.get("date")
1416 + date = date.splitlines()[-1]
1467 + "date": date}
1591 + date = date.splitlines()[-1]
1814 + date = keywords.get("date")
1869 + "date": date}
[all …]
/openbmc/linux/tools/testing/selftests/cgroup/
H A Dwith_stress.sh87 start=$(date +%s)
93 time=$(($(date +%s) - $start))
/openbmc/linux/tools/perf/util/
H A Ddebug.c58 char date[64]; in fprintf_time() local
69 strftime(date, sizeof(date), "%F %H:%M:%S", &ltime); in fprintf_time()
70 return fprintf(file, "[%s.%06lu] ", date, (long)tod.tv_usec); in fprintf_time()
/openbmc/openbmc/poky/meta/recipes-extended/lsb/lsb-release/
H A Dhelp2man-reproducibility.patch16 -my $date = strftime "%B %Y", localtime;
24 +my $date = strftime "%B %Y", localtime $epoch_secs;
/openbmc/webui-vue/src/views/Logs/EventLogs/
H A DEventLogs.vue20 <table-date-filter @change="onChangeDateTimeFilter" />
144 <!-- Modified date -->
172 <template #cell(date)="{ value }">
345 key: 'date',
346 label: this.$t('pageEventLogs.table.date'),
596 // Create export file name based on date
598 let date = new Date();
599 date =
600 date.toISOString().slice(0, 10) +
602 date.toString().split(':').join('-').split(' ')[4];
[all …]

12345678910>>...43