Searched refs:start_ms (Results 1 - 1 of 1) sorted by relevance

/u-boot/cmd/
H A Dsf.c74 * @param start_ms start time of processing in ms
77 static ulong bytes_per_second(unsigned int len, ulong start_ms) argument
81 return len / (max(get_timer(start_ms) / 1024, 1UL));
83 return 1024 * len / max(get_timer(start_ms), 1UL);

Completed in 67 milliseconds