include/math.h
228
double round(double);
include/sndio.h
58
unsigned int round; /* optimal bufsz divisor */
include/tgmath.h
156
#define round(x) __tg_simple(x, round)
lib/libm/arch/aarch64/fenv.c
158
fesetround(int round)
lib/libm/arch/aarch64/fenv.c
162
if (round & ~_ROUND_MASK)
lib/libm/arch/aarch64/fenv.c
166
r |= round << _ROUND_SHIFT;
lib/libm/arch/alpha/fenv.c
178
fesetround(int round)
lib/libm/arch/alpha/fenv.c
183
if (round & ~_ROUND_MASK)
lib/libm/arch/alpha/fenv.c
193
fpcr |= (unsigned long)round << _ROUND_SHIFT;
lib/libm/arch/amd64/fenv.c
220
fesetround(int round)
lib/libm/arch/amd64/fenv.c
226
if (round & ~_X87_ROUND_MASK)
lib/libm/arch/amd64/fenv.c
234
control |= round;
lib/libm/arch/amd64/fenv.c
242
mxcsr |= round << _SSE_ROUND_SHIFT;
lib/libm/arch/arm/fenv.c
162
fesetround(int round)
lib/libm/arch/arm/fenv.c
167
if (round & ~_ROUND_MASK)
lib/libm/arch/arm/fenv.c
172
_softfloat_float_rounding_mode |= round;
lib/libm/arch/arm/fenv.c
176
fpscr |= round << 22;
lib/libm/arch/hppa/fenv.c
197
fesetround(int round)
lib/libm/arch/hppa/fenv.c
202
if (round & ~_ROUND_MASK)
lib/libm/arch/hppa/fenv.c
211
u.bits[0] |= round;
lib/libm/arch/i387/fenv.c
256
fesetround(int round)
lib/libm/arch/i387/fenv.c
262
if (round & ~_X87_ROUND_MASK)
lib/libm/arch/i387/fenv.c
270
control |= round;
lib/libm/arch/i387/fenv.c
279
mxcsr |= round << _SSE_ROUND_SHIFT;
lib/libm/arch/m88k/fenv.c
188
fesetround(int round)
lib/libm/arch/m88k/fenv.c
193
if (round & ~_ROUND_MASK)
lib/libm/arch/m88k/fenv.c
201
fpcr |= round;
lib/libm/arch/mips64/fenv.c
166
fesetround(int round)
lib/libm/arch/mips64/fenv.c
171
if (round & ~_ROUND_MASK)
lib/libm/arch/mips64/fenv.c
179
fcsr |= round;
lib/libm/arch/powerpc/fenv.c
170
fesetround(int round)
lib/libm/arch/powerpc/fenv.c
175
if (round & ~_ROUND_MASK)
lib/libm/arch/powerpc/fenv.c
183
u.bits[1] |= round;
lib/libm/arch/powerpc64/fenv.c
170
fesetround(int round)
lib/libm/arch/powerpc64/fenv.c
175
if (round & ~_ROUND_MASK)
lib/libm/arch/powerpc64/fenv.c
183
u.bits[1] |= round;
lib/libm/arch/riscv64/fenv.c
155
fesetround(int round)
lib/libm/arch/riscv64/fenv.c
159
if (round & ~_ROUND_MASK)
lib/libm/arch/riscv64/fenv.c
161
__set_frm(round);
lib/libm/arch/sh/fenv.c
195
fesetround(int round)
lib/libm/arch/sh/fenv.c
200
if (round & ~_ROUND_MASK)
lib/libm/arch/sh/fenv.c
211
fpscr |= round;
lib/libm/arch/sh/fenv.c
212
__fpscr_values[0] |= round;
lib/libm/arch/sh/fenv.c
213
__fpscr_values[1] |= round;
lib/libm/arch/sparc64/fenv.c
195
fesetround(int round)
lib/libm/arch/sparc64/fenv.c
199
if (round & ~_ROUND_MASK)
lib/libm/arch/sparc64/fenv.c
206
r |= round << _ROUND_SHIFT;
lib/libm/hidden/math.h
177
PROTO_NORMAL(round);
lib/libm/src/s_round.c
54
DEF_STD(round);
lib/libm/src/s_round.c
55
LDBL_MAYBE_CLONE(round);
lib/libsndio/amsg.h
95
uint32_t round;
lib/libsndio/sio.c
471
rround = hdl->par.round * rbpf;
lib/libsndio/sio.c
472
wround = hdl->par.round * wbpf;
lib/libsndio/sio.c
479
cdiff = hdl->cpos % hdl->par.round;
lib/libsndio/sio.c
480
cpos = hdl->cpos / hdl->par.round;
lib/libsndio/sio.c
481
if (cdiff > hdl->par.round / 2) {
lib/libsndio/sio.c
483
cdiff = cdiff - hdl->par.round;
lib/libsndio/sio.c
585
cmove = hdl->cpos % hdl->par.round;
lib/libsndio/sio.c
595
cmove += hdl->par.round;
lib/libsndio/sio_aucat.c
168
hdl->round = 0xdeadbeef;
lib/libsndio/sio_aucat.c
192
hdl->round = hdl->sio.par.round;
lib/libsndio/sio_aucat.c
205
hdl->walign = hdl->round * hdl->wbpf;
lib/libsndio/sio_aucat.c
331
par->round = ntohl(hdl->aucat.rmsg.u.par.round);
lib/libsndio/sio_aucat.c
44
size_t round; /* write block size */
lib/libsndio/sio_aucat.c
445
hdl->walign = hdl->round * hdl->wbpf;
lib/libsndio/sio_sun.c
428
if (par->round != ~0U && par->appbufsz != ~0U) {
lib/libsndio/sio_sun.c
429
ap.round = par->round;
lib/libsndio/sio_sun.c
430
ap.nblks = par->appbufsz / par->round;
lib/libsndio/sio_sun.c
431
} else if (par->round != ~0U) {
lib/libsndio/sio_sun.c
432
ap.round = par->round;
lib/libsndio/sio_sun.c
435
ap.round = par->appbufsz / 2;
lib/libsndio/sio_sun.c
465
par->round = ap.round;
lib/libsndio/sio_sun.c
466
par->appbufsz = par->bufsz = ap.nblks * ap.round;
regress/lib/libm/round/round.c
37
assert(round(8.6) == 9.);
regress/lib/libm/round/round.c
55
assert(round(2.5) == 3.);
regress/lib/libm/round/round.c
58
assert(round(-2.5) == -3.);
regress/lib/libsndio/fd/fd.c
293
fprintf(stderr, "using %u%%%u frame buffer\n", par.bufsz, par.round);
regress/lib/libsndio/play/play.c
120
par.round * par.bps * par.pchan);
sys/arch/amd64/amd64/tsc.c
485
u_int round = TSC_TEST_ROUNDS - tsc_test_rounds + 1;
sys/arch/amd64/amd64/tsc.c
497
tsc_ap_name, round, TSC_TEST_ROUNDS);
sys/arch/hppa/spmath/dfadd.c
317
goto round;
sys/arch/hppa/spmath/dfadd.c
431
round:
sys/arch/hppa/spmath/dfsub.c
315
goto round;
sys/arch/hppa/spmath/dfsub.c
429
round:
sys/arch/hppa/spmath/sfadd.c
311
goto round;
sys/arch/hppa/spmath/sfadd.c
425
round:
sys/arch/hppa/spmath/sfsub.c
314
goto round;
sys/arch/hppa/spmath/sfsub.c
428
round:
sys/dev/audio.c
1034
sc->play.blksz = sc->round * sc->pchan * sc->bps;
sys/dev/audio.c
1039
sc->rec.blksz = sc->round * sc->rchan * sc->bps;
sys/dev/audio.c
1047
sc->rate, sc->pchan, sc->rchan, sc->round, sc->play.nblks);
sys/dev/audio.c
1097
p->round = sc->round;
sys/dev/audio.c
1146
if (p->round != ~0)
sys/dev/audio.c
1147
sc->round = p->round;
sys/dev/audio.c
1263
sc->round = 960;
sys/dev/audio.c
132
unsigned int round; /* block size in frames */
sys/dev/audio.c
750
if (sc->round > max)
sys/dev/audio.c
751
sc->round = max;
sys/dev/audio.c
755
if (sc->round > max)
sys/dev/audio.c
756
sc->round = max;
sys/dev/audio.c
759
sc->round = sc->ops->set_blksz(sc->arg, sc->mode,
sys/dev/audio.c
760
p, r, sc->round);
sys/dev/audio.c
762
DPRINTF("%s: block size set to: %u\n", DEVNAME(sc), sc->round);
sys/dev/audio.c
831
sc->round += mult / 2;
sys/dev/audio.c
832
sc->round -= sc->round % mult;
sys/dev/audio.c
833
if (sc->round > max)
sys/dev/audio.c
834
sc->round = max;
sys/dev/audio.c
835
else if (sc->round < min)
sys/dev/audio.c
836
sc->round = min;
sys/dev/audio.c
851
max = sc->play.datalen / (sc->round * sc->pchan * sc->bps);
sys/dev/audio.c
858
p, sc->round, sc->play.nblks);
sys/dev/audio.c
869
max = sc->rec.datalen / (sc->round * sc->rchan * sc->bps);
sys/dev/audio.c
872
r, sc->round, max);
sys/dev/audio.c
889
sc->rate, sc->pchan, sc->rchan, sc->round, sc->play.nblks);
sys/sys/audioio.h
60
unsigned int round; /* common frames per block */
usr.bin/aucat/aucat.c
311
s->round = ((long long)dev_round * s->afile.rate +
usr.bin/aucat/aucat.c
314
bufsz = s->round * (dev_bufsz / dev_round);
usr.bin/aucat/aucat.c
315
bufsz -= bufsz % s->round;
usr.bin/aucat/aucat.c
317
bufsz = s->round;
usr.bin/aucat/aucat.c
332
s->convbuf = allocbuf(s->round, s->afile.nch, sizeof(adata_t));
usr.bin/aucat/aucat.c
351
s->convbuf = allocbuf(s->round, s->afile.nch, sizeof(adata_t));
usr.bin/aucat/aucat.c
365
s->round * s->afile.nch * sizeof(adata_t));
usr.bin/aucat/aucat.c
523
if (icnt > s->round)
usr.bin/aucat/aucat.c
524
icnt = s->round;
usr.bin/aucat/aucat.c
578
if (ocnt > s->round)
usr.bin/aucat/aucat.c
579
ocnt = s->round;
usr.bin/aucat/aucat.c
652
dev_round = par.round;
usr.bin/aucat/aucat.c
85
int round; /* slot-side block size */
usr.bin/aucat/aucat.c
907
slot_list_mix(unsigned int round, unsigned int pchan, adata_t *pbuf)
usr.bin/aucat/aucat.c
912
memset(pbuf, 0, pchan * round * sizeof(adata_t));
usr.bin/aucat/aucat.c
956
(s->buf.used < s->round * s->bpf))
usr.bin/aucat/aucat.c
959
(s->buf.len - s->buf.used < s->round * s->bpf))
usr.bin/audioctl/audioctl.c
54
{"blksz", &rpar.round, &wpar.round, NUM},
usr.bin/sndiod/dev.c
1047
return (d->round * newrate + d->rate / 2) / d->rate;
usr.bin/sndiod/dev.c
1085
if (((long long)o->round * n->rate != (long long)n->round * o->rate) ||
usr.bin/sndiod/dev.c
1260
xmalloc(s->round * s->mix.nch * sizeof(adata_t));
usr.bin/sndiod/dev.c
1263
resamp_init(&s->mix.resamp, s->round, d->round,
usr.bin/sndiod/dev.c
1266
xmalloc(d->round * s->mix.nch * sizeof(adata_t));
usr.bin/sndiod/dev.c
1290
resamp_init(&s->sub.resamp, d->round, s->round,
usr.bin/sndiod/dev.c
1293
xmalloc(d->round * s->sub.nch * sizeof(adata_t));
usr.bin/sndiod/dev.c
1298
xmalloc(s->round * s->sub.nch * sizeof(adata_t));
usr.bin/sndiod/dev.c
1309
d->round * s->sub.nch * sizeof(adata_t));
usr.bin/sndiod/dev.c
1312
s->round * s->sub.nch * sizeof(adata_t));
usr.bin/sndiod/dev.c
1400
s->round = s->opt->dev->round;
usr.bin/sndiod/dev.c
1472
(long long)s->delta * d->round +
usr.bin/sndiod/dev.c
1473
(long long)d->delta * s->round;
usr.bin/sndiod/dev.c
1474
s->delta = pos / (int)d->round;
usr.bin/sndiod/dev.c
1475
s->delta_rem = pos % d->round;
usr.bin/sndiod/dev.c
1477
s->delta_rem += d->round;
usr.bin/sndiod/dev.c
1483
s - slot_array, s->delta, s->delta_rem, s->round);
usr.bin/sndiod/dev.c
1542
s->appbufsz / s->round, s->round);
usr.bin/sndiod/dev.c
1550
s->sub.prime = d->bufsz / d->round;
usr.bin/sndiod/dev.c
1559
s->delta = -(long long)d->bufsz * s->round / d->round;
usr.bin/sndiod/dev.c
1595
(long long)s->delta * d->round -
usr.bin/sndiod/dev.c
1596
(long long)d->delta * s->round;
usr.bin/sndiod/dev.c
1597
s->delta = pos / (int)d->round;
usr.bin/sndiod/dev.c
1598
s->delta_rem = pos % d->round;
usr.bin/sndiod/dev.c
1600
s->delta_rem += d->round;
usr.bin/sndiod/dev.c
1606
s - slot_array, s->delta, s->delta_rem, d->round);
usr.bin/sndiod/dev.c
257
if (mtc->dev->rate % (30 * 4 * mtc->dev->round) == 0) {
usr.bin/sndiod/dev.c
260
} else if (mtc->dev->rate % (25 * 4 * mtc->dev->round) == 0) {
usr.bin/sndiod/dev.c
340
if (count < s->round * s->sub.bpf)
usr.bin/sndiod/dev.c
344
if (s->mix.buf.used < s->round * s->mix.bpf)
usr.bin/sndiod/dev.c
352
enc_sil_do(&s->sub.enc, data, s->round);
usr.bin/sndiod/dev.c
354
memset(data, 0, s->round * s->sub.bpf);
usr.bin/sndiod/dev.c
355
abuf_wcommit(&s->sub.buf, s->round * s->sub.bpf);
usr.bin/sndiod/dev.c
358
abuf_rdiscard(&s->mix.buf, s->round * s->mix.bpf);
usr.bin/sndiod/dev.c
377
if (icount < s->round * s->mix.bpf) {
usr.bin/sndiod/dev.c
387
abuf_rdiscard(&s->mix.buf, s->round * s->mix.bpf);
usr.bin/sndiod/dev.c
403
dec_do(&s->mix.dec, (void *)in, s->mix.decbuf, s->round);
usr.bin/sndiod/dev.c
409
in, s->mix.resampbuf, s->round, d->round);
usr.bin/sndiod/dev.c
415
d->round, 1);
usr.bin/sndiod/dev.c
417
abuf_rdiscard(&s->mix.buf, s->round * s->mix.bpf);
usr.bin/sndiod/dev.c
474
if (ocount < s->round * s->sub.bpf) {
usr.bin/sndiod/dev.c
484
enc_sil_do(&s->sub.enc, odata, s->round);
usr.bin/sndiod/dev.c
486
memset(odata, 0, s->round * s->sub.bpf);
usr.bin/sndiod/dev.c
487
abuf_wcommit(&s->sub.buf, s->round * s->sub.bpf);
usr.bin/sndiod/dev.c
505
moffs = d->poffs + d->round;
usr.bin/sndiod/dev.c
509
ADATA_UNIT, d->round, mix++);
usr.bin/sndiod/dev.c
513
ADATA_UNIT, d->round, mix++);
usr.bin/sndiod/dev.c
517
s->sub.resampbuf, resamp_out, d->round, s->round);
usr.bin/sndiod/dev.c
520
enc_do(&s->sub.enc, s->sub.encbuf, (void *)enc_out, s->round);
usr.bin/sndiod/dev.c
522
abuf_wcommit(&s->sub.buf, s->round * s->sub.bpf);
usr.bin/sndiod/dev.c
555
nsamp = d->round * d->pchan;
usr.bin/sndiod/dev.c
559
d->encbuf, d->round);
usr.bin/sndiod/dev.c
561
d->prime -= d->round;
usr.bin/sndiod/dev.c
565
d->delta -= d->round;
usr.bin/sndiod/dev.c
571
nsamp = d->round * d->pchan;
usr.bin/sndiod/dev.c
575
dec_do(&d->dec, d->decbuf, (unsigned char *)d->rbuf, d->round);
usr.bin/sndiod/dev.c
604
s->mix.buf.used < s->round * s->mix.bpf) {
usr.bin/sndiod/dev.c
625
s->mix.buf.used < s->round * s->mix.bpf) ||
usr.bin/sndiod/dev.c
628
s->round * s->sub.bpf)) {
usr.bin/sndiod/dev.c
638
s->delta -= s->round;
usr.bin/sndiod/dev.c
679
d->encbuf, d->round);
usr.bin/sndiod/dev.c
703
(long long)s->delta * d->round +
usr.bin/sndiod/dev.c
704
(long long)delta * s->round;
usr.bin/sndiod/dev.c
705
s->delta = pos / (int)d->round;
usr.bin/sndiod/dev.c
706
s->delta_rem = pos % d->round;
usr.bin/sndiod/dev.c
708
s->delta_rem += d->round;
usr.bin/sndiod/dev.c
808
d->rbuf = xmalloc(d->round * d->rchan * sizeof(adata_t));
usr.bin/sndiod/dev.c
813
d->decbuf = xmalloc(d->round * d->rchan * d->par.bps);
usr.bin/sndiod/dev.c
823
d->psize = d->bufsz + d->round;
usr.bin/sndiod/dev.c
830
d->encbuf = xmalloc(d->round * d->pchan * d->par.bps);
usr.bin/sndiod/dev.c
839
memset(d->rbuf, 0, d->round * d->rchan * sizeof(adata_t));
usr.bin/sndiod/dev.c
847
d->bufsz / d->round, d->round);
usr.bin/sndiod/dev.c
859
d->round = dev_round;
usr.bin/sndiod/dev.h
272
unsigned int bufsz, round, rate;
usr.bin/sndiod/dev.h
90
((s)->appbufsz + (s)->opt->dev->bufsz / (s)->opt->dev->round * (s)->round)
usr.bin/sndiod/dev.h
92
int round; /* slot-side block size */
usr.bin/sndiod/siofile.c
143
par.round = d->round;
usr.bin/sndiod/siofile.c
168
par.round = d->round * rate / d->rate;
usr.bin/sndiod/siofile.c
205
if (par.round == 0 || par.round > par.bufsz ||
usr.bin/sndiod/siofile.c
206
par.bufsz % par.round != 0) {
usr.bin/sndiod/siofile.c
207
logx(0, "%s: %u: unsupported block size", d->path, par.round);
usr.bin/sndiod/siofile.c
225
d->round = par.round;
usr.bin/sndiod/siofile.c
277
d->sio.todo = d->round * d->rchan * d->par.bps;
usr.bin/sndiod/siofile.c
362
d->rchan * d->round * d->par.bps -
usr.bin/sndiod/siofile.c
368
n, d->sio.todo, d->round * d->rchan * d->par.bps);
usr.bin/sndiod/siofile.c
373
d->sio.rused -= d->round;
usr.bin/sndiod/siofile.c
374
if (d->sio.rused >= d->round) {
usr.bin/sndiod/siofile.c
400
d->sio.todo = d->round * d->pchan * d->par.bps;
usr.bin/sndiod/siofile.c
404
d->sio.todo = d->round * d->rchan * d->par.bps;
usr.bin/sndiod/siofile.c
416
d->pchan * d->round * d->par.bps -
usr.bin/sndiod/siofile.c
422
d->path, n, d->sio.todo, d->round * d->pchan * d->par.bps);
usr.bin/sndiod/siofile.c
427
d->sio.pused += d->round;
usr.bin/sndiod/siofile.c
429
d->sio.pused <= d->bufsz - d->round) {
usr.bin/sndiod/siofile.c
440
d->poffs += d->round;
usr.bin/sndiod/siofile.c
445
d->sio.todo = d->round * d->rchan * d->par.bps;
usr.bin/sndiod/sock.c
1034
m->u.par.round = htonl(s->round);
usr.bin/sndiod/sock.c
1300
f->walign = f->slot->round * f->slot->sub.bpf;
usr.bin/sndiod/sock.c
205
f->fillpending += s->round;
usr.bin/sndiod/sock.c
218
f->wmax += s->round * s->sub.bpf;
usr.bin/sndiod/sock.c
649
s->round = dev_roundof(d, rate);
usr.bin/sndiod/sock.c
652
appbufsz = d->bufsz / d->round * s->round;
usr.bin/sndiod/sock.c
670
max = 1 + rate / d->round;
usr.bin/sndiod/sock.c
671
min *= s->round;
usr.bin/sndiod/sock.c
672
max *= s->round;
usr.bin/sndiod/sock.c
673
appbufsz += s->round / 2;
usr.bin/sndiod/sock.c
674
appbufsz -= appbufsz % s->round;
usr.bin/sndiod/sock.c
904
f->ralign = s->round * s->mix.bpf;
usr.bin/sndiod/sock.c
942
f->ralign = s->round * s->mix.bpf;
usr.bin/sndiod/sock.c
946
f->walign = s->round * s->sub.bpf;
usr.bin/sndiod/sock.c
971
if (f->ralign < s->round * s->mix.bpf) {
usr.bin/sndiod/sock.c
984
f->ralign = s->round * s->mix.bpf;
usr.bin/ssh/libcrux_internal.h
22742
size_t round = i0;
usr.bin/ssh/libcrux_internal.h
22744
size_t offset = round * step * (size_t)2U;
usr.bin/ssh/libcrux_internal.h
22778
size_t round = i;
usr.bin/ssh/libcrux_internal.h
22782
libcrux_ml_kem_vector_portable_ntt_layer_3_step_b8(re->data[round],
usr.bin/ssh/libcrux_internal.h
22784
re->data[round] = uu____0;
usr.bin/ssh/libcrux_internal.h
22803
size_t round = i;
usr.bin/ssh/libcrux_internal.h
22805
re->data[round] =
usr.bin/ssh/libcrux_internal.h
22806
libcrux_ml_kem_vector_portable_ntt_layer_2_step_b8(re->data[round],
usr.bin/ssh/libcrux_internal.h
22828
size_t round = i;
usr.bin/ssh/libcrux_internal.h
22830
re->data[round] =
usr.bin/ssh/libcrux_internal.h
22831
libcrux_ml_kem_vector_portable_ntt_layer_1_step_b8(re->data[round],
usr.bin/ssh/libcrux_internal.h
23175
size_t round = i;
usr.bin/ssh/libcrux_internal.h
23177
re->data[round] =
usr.bin/ssh/libcrux_internal.h
23178
libcrux_ml_kem_vector_portable_inv_ntt_layer_1_step_b8(re->data[round],
usr.bin/ssh/libcrux_internal.h
23198
size_t round = i;
usr.bin/ssh/libcrux_internal.h
23200
re->data[round] =
usr.bin/ssh/libcrux_internal.h
23201
libcrux_ml_kem_vector_portable_inv_ntt_layer_2_step_b8(re->data[round],
usr.bin/ssh/libcrux_internal.h
23219
size_t round = i;
usr.bin/ssh/libcrux_internal.h
23223
libcrux_ml_kem_vector_portable_inv_ntt_layer_3_step_b8(re->data[round],
usr.bin/ssh/libcrux_internal.h
23225
re->data[round] = uu____0;
usr.bin/ssh/libcrux_internal.h
23271
size_t round = i0;
usr.bin/ssh/libcrux_internal.h
23273
size_t offset = round * step * (size_t)2U;
usr.bin/tmux/colour.c
1162
c = round(2.55 * c);
usr.sbin/eigrpd/logmsg.c
38
static int round = 0;
usr.sbin/eigrpd/logmsg.c
41
round = (round + 1) % NUM_LOGS;
usr.sbin/eigrpd/logmsg.c
43
if (getnameinfo(sa, sa->sa_len, buf[round], NI_MAXHOST, NULL, 0,
usr.sbin/eigrpd/logmsg.c
47
return (buf[round]);
usr.sbin/eigrpd/logmsg.c
84
static int round = 0;
usr.sbin/eigrpd/logmsg.c
88
round = (round + 1) % NUM_LOGS;
usr.sbin/eigrpd/logmsg.c
89
if (inet_ntop(AF_INET, &addr->v4, buf[round],
usr.sbin/eigrpd/logmsg.c
90
sizeof(buf[round])) == NULL)
usr.sbin/eigrpd/logmsg.c
92
return (buf[round]);
usr.sbin/ldpd/logmsg.c
38
static int round = 0;
usr.sbin/ldpd/logmsg.c
41
round = (round + 1) % NUM_LOGS;
usr.sbin/ldpd/logmsg.c
43
if (getnameinfo(sa, sa->sa_len, buf[round], NI_MAXHOST, NULL, 0,
usr.sbin/ldpd/logmsg.c
47
return (buf[round]);
usr.sbin/ldpd/logmsg.c
84
static int round = 0;
usr.sbin/ldpd/logmsg.c
88
round = (round + 1) % NUM_LOGS;
usr.sbin/ldpd/logmsg.c
89
if (inet_ntop(AF_INET, &addr->v4, buf[round],
usr.sbin/ldpd/logmsg.c
90
sizeof(buf[round])) == NULL)
usr.sbin/ldpd/logmsg.c
92
return (buf[round]);
usr.sbin/nsd/simdzone/src/generic/ip4.h
16
uint32_t round = 0;
usr.sbin/nsd/simdzone/src/generic/ip4.h
35
wire[round++] = (uint8_t)octet;
usr.sbin/nsd/simdzone/src/generic/ip4.h
36
if (text[0] != '.' || round == 4)
usr.sbin/nsd/simdzone/src/generic/ip4.h
41
if (round != 4)
usr.sbin/ospf6d/interface.c
455
int round = 0;
usr.sbin/ospf6d/interface.c
506
if (round == 0 &&
usr.sbin/ospf6d/interface.c
519
round = 1;
usr.sbin/ospf6d/logmsg.c
101
return (buf[round]);
usr.sbin/ospf6d/logmsg.c
76
static int round = 0;
usr.sbin/ospf6d/logmsg.c
79
round = (round + 1) % NUM_LOGS;
usr.sbin/ospf6d/logmsg.c
82
if (inet_ntop(AF_INET, &addr, buf[round], 16) == NULL)
usr.sbin/ospf6d/logmsg.c
85
return buf[round];
usr.sbin/ospf6d/logmsg.c
92
static int round = 0;
usr.sbin/ospf6d/logmsg.c
95
round = (round + 1) % NUM_LOGS;
usr.sbin/ospf6d/logmsg.c
97
if (getnameinfo(sa, sa->sa_len, buf[round], NI_MAXHOST, NULL, 0,
usr.sbin/ospfd/interface.c
405
int round = 0;
usr.sbin/ospfd/interface.c
456
if (round == 0 &&
usr.sbin/ospfd/interface.c
469
round = 1;