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

/freebsd-current/sys/ddb/
H A Ddb_output.c95 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-current/usr.bin/seq/
H A Dseq.c88 char pad, *fmt, *cur_print, *last_print, *prev_print; local
200 asprintf(&last_print, fmt, last) < 0 ||
204 if (strcmp(cur_print, last_print) == 0 &&
207 fputs(last_print, stdout);
210 free(last_print);
/freebsd-current/tools/tools/netmap/
H A Dpkt-gen.c1391 struct timespec ts, now, last_print; local
1413 clock_gettime(CLOCK_REALTIME_PRECISE, &last_print);
1414 now = last_print;
1525 ts.tv_sec = now.tv_sec - last_print.tv_sec;
1526 ts.tv_nsec = now.tv_nsec - last_print.tv_nsec;
1556 last_print = now;

Completed in 130 milliseconds