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

/freebsd-11.0-release/sys/ddb/
H A Ddb_output.c95 register int last_print, next_tab; local
97 last_print = db_last_non_space;
98 while (last_print < db_output_position) {
99 next_tab = NEXT_TAB(last_print);
101 while (last_print < next_tab) { /* DON'T send a tab!!! */
104 last_print++;
110 last_print++;
/freebsd-11.0-release/tools/tools/netmap/
H A Dpkt-gen.c817 struct timespec ts, now, last_print; local
829 clock_gettime(CLOCK_REALTIME_PRECISE, &last_print);
830 now = last_print;
893 ts.tv_sec = now.tv_sec - last_print.tv_sec;
894 ts.tv_nsec = now.tv_nsec - last_print.tv_nsec;
905 last_print = now;

Completed in 56 milliseconds