Searched refs:timestamp (Results 1 - 25 of 44) sorted by relevance

12

/u-boot/arch/arm/cpu/arm720t/
H A Dinterrupts.c15 static ulong timestamp; variable
22 timestamp = 0;
/u-boot/boot/
H A Dimage-host.c24 void genimg_print_time(time_t timestamp) argument
26 printf("%s", ctime(&timestamp));
/u-boot/arch/powerpc/lib/
H A Dinterrupts.c70 static volatile ulong timestamp = 0; variable
80 timestamp++;
83 if (CFG_SYS_WATCHDOG_FREQ && (timestamp % (CFG_SYS_WATCHDOG_FREQ)) == 0)
88 status_led_tick(timestamp);
94 return (timestamp - base);
/u-boot/common/
H A Dversion.c7 #include <timestamp.h>
/u-boot/arch/x86/cpu/coreboot/
H A DMakefile23 obj-y += timestamp.o
H A Dtimestamp.c10 #include <asm/arch/timestamp.h>
H A Dcoreboot.c19 #include <asm/arch/timestamp.h>
/u-boot/board/armltd/integrator/
H A Dtimer.c45 static ulong timestamp; /* U-Boot ticks since startup */ variable
81 /* init the timestamp */
86 timestamp = 0L;
100 /* the timestamp is the number of ticks since reset */
117 timestamp = now;
119 return timestamp;
136 tmp = get_timer_masked(); /* get current timestamp */
137 tmo += tmp; /* form target timestamp */
/u-boot/arch/arm/cpu/arm926ejs/mxs/
H A Dtimer.c30 #define timestamp (gd->arch.tbl) macro
106 timestamp += (lastdec - now);
109 timestamp += (TIMER_LOAD_VAL - now) + lastdec;
114 return timestamp;
/u-boot/arch/m68k/lib/
H A Dtime.c21 static volatile ulong timestamp = 0; variable
70 timestamp++;
73 if (CFG_SYS_WATCHDOG_FREQ && (timestamp % (CFG_SYS_WATCHDOG_FREQ)) == 0) {
85 timestamp = 0;
110 return (timestamp - base);
/u-boot/arch/arm/mach-orion5x/
H A Dtimer.c82 #define timestamp gd->arch.tbl macro
91 timestamp += lastdec - now;
94 timestamp += lastdec +
99 return timestamp;
153 /* init the timestamp and lastdec value */
155 timestamp = 0;
/u-boot/lib/efi_loader/
H A Defi_variable.c57 struct efi_time timestamp; local
83 memcpy(&timestamp, &auth->time_stamp, sizeof(timestamp));
84 if (timestamp.pad1 || timestamp.nanosecond || timestamp.timezone ||
85 timestamp.daylight || timestamp.pad2)
93 tm.tm_year = timestamp.year;
94 tm.tm_mon = timestamp
[all...]
/u-boot/drivers/misc/
H A Daltera_sysid.c17 u32 timestamp; /* Timestamp */ member in struct:altera_sysid_regs
67 sysid[1] = readl(&regs->timestamp);
H A Dstatus_led.c85 void status_led_tick(ulong timestamp) argument
/u-boot/test/py/tests/
H A Dtest_trace.py129 for timestamp in vals.values():
131 max_delta = max(max_delta, timestamp - base)
133 base = timestamp
190 timestamp, indent, func, brace = m.groups()
214 timestamp, indent, func, brace = m.groups()
216 start_timestamp = timestamp
218 end_timestamp = timestamp
/u-boot/arch/arm/mach-nexell/
H A Dtimer.c26 static unsigned long timestamp __section(".data");
176 timestamp = (unsigned long)t;
188 timestamp = 0;
200 timestamp += now - lastdec;
209 timestamp += now + TIMER_COUNT - lastdec;
214 debug("now=%lu, last=%lu, timestamp=%lu\n", now, lastdec, timestamp);
215 return (unsigned long)timestamp;
241 tmp = get_timer_masked(); /* get current timestamp */
246 /* reset "advancing" timestamp t
[all...]
/u-boot/drivers/timer/
H A Dmpc83xx_timer.c32 * @timestamp: Counter for the number of timer interrupts that have
38 ulong timestamp; member in struct:mpc83xx_timer_priv
175 priv->timestamp++;
178 if (CFG_SYS_WATCHDOG_FREQ && (priv->timestamp % (CFG_SYS_WATCHDOG_FREQ)) == 0)
183 status_led_tick(priv->timestamp);
/u-boot/cmd/
H A Diotrace.c45 cur_record->timestamp,
50 cur_record->timestamp,
/u-boot/tools/
H A Dproftool.c161 ulong timestamp; member in struct:flame_state::stack_info
940 * The output is arranged in 4KB pages with a base timestamp at the start of
945 * @timestamp: Base timestamp for the page
947 static int start_page(struct twriter *tw, ulong timestamp) argument
962 tw->ptr += tputq(tw->fout, timestamp);
1031 "\tfield: u64 timestamp;\toffset:0;\tsize:8;\tsigned:0;\n"
1337 ulong timestamp; local
1366 /* convert timestamp from us to ns */
1367 timestamp
1654 process_call(struct flame_state *state, bool entry, ulong timestamp, struct func_info *func) argument
1758 ulong timestamp = call->flags & FUNCF_TIMESTAMP_MASK; local
[all...]
/u-boot/include/
H A Dstatus_led.h39 void status_led_tick(unsigned long timestamp);
H A Diotrace.h27 * @timestamp: Timestamp of access
33 u64 timestamp; member in struct:iotrace_record
/u-boot/drivers/usb/isp1760/
H A Disp1760-hcd.h17 unsigned long timestamp; member in struct:isp1760_slotinfo
/u-boot/arch/x86/include/asm/arch-slimbootloader/
H A Dslimbootloader.h94 * This includes timestamp data which has been collected in Slim Bootloader
96 * calculate each timestamp.
100 * @count : the number of collected timestamp data
103 * @timestamp: the array of timestamp data which has 64-bit tsc value
111 u64 timestamp[0]; member in struct:sbl_performance_info
/u-boot/drivers/rtc/
H A Demul_rtc.c13 #include <timestamp.h>
/u-boot/arch/arm/mach-rockchip/
H A Dtpl.c21 #include <timestamp.h>

Completed in 328 milliseconds

12