Home
last modified time | relevance | path

Searched refs:nrepeats (Results 1 – 9 of 9) sorted by relevance

/freebsd/lib/libc/stdio/
H A Dxprintf_float.c163 int nrepeats; /* number of repeats of the last group */ in __printf_render_float() local
308 nseps = nrepeats = 0; in __printf_render_float()
318 nrepeats++; in __printf_render_float()
320 size += nseps + nrepeats; in __printf_render_float()
382 while (nseps>0 || nrepeats>0) { in __printf_render_float()
383 if (nrepeats > 0) in __printf_render_float()
384 nrepeats--; in __printf_render_float()
H A Dvfprintf.c85 int nrepeats; /* number of repeats of the last group */ member
103 gs->nseps = gs->nrepeats = 0; in grouping_init()
113 gs->nrepeats++; in grouping_init()
115 return ((gs->nseps + gs->nrepeats) * gs->thousep_len); in grouping_init()
130 while (gs->nseps > 0 || gs->nrepeats > 0) { in grouping_print()
131 if (gs->nrepeats > 0) in grouping_print()
132 gs->nrepeats--; in grouping_print()
H A Dvfwprintf.c83 int nrepeats; /* number of repeats of the last group */ member
129 gs->nseps = gs->nrepeats = 0; in grouping_init()
139 gs->nrepeats++; in grouping_init()
141 return (gs->nseps + gs->nrepeats); in grouping_init()
156 while (gs->nseps > 0 || gs->nrepeats > 0) { in grouping_print()
157 if (gs->nrepeats > 0) in grouping_print()
158 gs->nrepeats--; in grouping_print()
/freebsd/sbin/ping/
H A Dmain.c71 long nrepeats; /* number of duplicates */ variable
221 if (nrepeats) in pr_summary()
222 fprintf(stream, "+%ld duplicates, ", nrepeats); in pr_summary()
236 double num = nreceived + nrepeats; in pr_summary()
H A Dmain.h60 extern long nrepeats; /* number of duplicates */
H A Dping6.c1599 ++nrepeats; in pr_pack()
1654 ++nrepeats; in pr_pack()
H A Dping.c1187 ++nrepeats; in pr_pack()
/freebsd/sys/dev/hid/
H A Dhcons.c236 int nrepeats; in hcons_rel_volume_cb() local
249 for (nrepeats = abs(ctx.data); nrepeats > 0; nrepeats--) { in hcons_rel_volume_cb()
/freebsd/usr.sbin/kbdcontrol/
H A Dkbdcontrol.c101 static const int nrepeats = nitems(kbrates); variable
1094 for (n = 0; n < nrepeats - 1; n++) in set_keyrates()