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

/freebsd-10-stable/sys/ddb/
H A Ddb_output.c96 register int last_print, next_tab; local
98 last_print = db_last_non_space;
99 while (last_print < db_output_position) {
100 next_tab = NEXT_TAB(last_print);
102 while (last_print < next_tab) { /* DON'T send a tab!!! */
105 last_print++;
111 last_print++;
/freebsd-10-stable/tools/tools/netmap/
H A Dpkt-gen.c803 struct timespec ts, now, last_print; local
815 clock_gettime(CLOCK_REALTIME_PRECISE, &last_print);
816 now = last_print;
879 ts.tv_sec = now.tv_sec - last_print.tv_sec;
880 ts.tv_nsec = now.tv_nsec - last_print.tv_nsec;
891 last_print = now;

Completed in 52 milliseconds