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
88
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
1065
return (d->round * newrate + d->rate / 2) / d->rate;
usr.bin/sndiod/dev.c
1103
if (((long long)o->round * n->rate != (long long)n->round * o->rate) ||
usr.bin/sndiod/dev.c
1278
xmalloc(s->round * s->mix.nch * sizeof(adata_t));
usr.bin/sndiod/dev.c
1281
resamp_init(&s->mix.resamp, s->round, d->round,
usr.bin/sndiod/dev.c
1284
xmalloc(d->round * s->mix.nch * sizeof(adata_t));
usr.bin/sndiod/dev.c
1308
resamp_init(&s->sub.resamp, d->round, s->round,
usr.bin/sndiod/dev.c
1311
xmalloc(d->round * s->sub.nch * sizeof(adata_t));
usr.bin/sndiod/dev.c
1316
xmalloc(s->round * s->sub.nch * sizeof(adata_t));
usr.bin/sndiod/dev.c
1327
d->round * s->sub.nch * sizeof(adata_t));
usr.bin/sndiod/dev.c
1330
s->round * s->sub.nch * sizeof(adata_t));
usr.bin/sndiod/dev.c
1418
s->round = s->opt->dev->round;
usr.bin/sndiod/dev.c
1496
(long long)s->delta * d->round +
usr.bin/sndiod/dev.c
1497
(long long)d->delta * s->round;
usr.bin/sndiod/dev.c
1498
s->delta = pos / (int)d->round;
usr.bin/sndiod/dev.c
1499
s->delta_rem = pos % d->round;
usr.bin/sndiod/dev.c
1501
s->delta_rem += d->round;
usr.bin/sndiod/dev.c
1507
s - slot_array, s->delta, s->delta_rem, s->round);
usr.bin/sndiod/dev.c
1566
s->appbufsz / s->round, s->round);
usr.bin/sndiod/dev.c
1574
s->sub.prime = d->bufsz / d->round;
usr.bin/sndiod/dev.c
1583
s->delta = -(long long)d->bufsz * s->round / d->round;
usr.bin/sndiod/dev.c
1619
(long long)s->delta * d->round -
usr.bin/sndiod/dev.c
1620
(long long)d->delta * s->round;
usr.bin/sndiod/dev.c
1621
s->delta = pos / (int)d->round;
usr.bin/sndiod/dev.c
1622
s->delta_rem = pos % d->round;
usr.bin/sndiod/dev.c
1624
s->delta_rem += d->round;
usr.bin/sndiod/dev.c
1630
s - slot_array, s->delta, s->delta_rem, d->round);
usr.bin/sndiod/dev.c
253
if (mtc->dev->rate % (30 * 4 * mtc->dev->round) == 0) {
usr.bin/sndiod/dev.c
256
} else if (mtc->dev->rate % (25 * 4 * mtc->dev->round) == 0) {
usr.bin/sndiod/dev.c
336
if (count < s->round * s->sub.bpf)
usr.bin/sndiod/dev.c
340
if (s->mix.buf.used < s->round * s->mix.bpf)
usr.bin/sndiod/dev.c
348
enc_sil_do(&s->sub.enc, data, s->round);
usr.bin/sndiod/dev.c
350
memset(data, 0, s->round * s->sub.bpf);
usr.bin/sndiod/dev.c
351
abuf_wcommit(&s->sub.buf, s->round * s->sub.bpf);
usr.bin/sndiod/dev.c
354
abuf_rdiscard(&s->mix.buf, s->round * s->mix.bpf);
usr.bin/sndiod/dev.c
373
if (icount < s->round * s->mix.bpf) {
usr.bin/sndiod/dev.c
383
abuf_rdiscard(&s->mix.buf, s->round * s->mix.bpf);
usr.bin/sndiod/dev.c
399
dec_do(&s->mix.dec, (void *)in, s->mix.decbuf, s->round);
usr.bin/sndiod/dev.c
405
in, s->mix.resampbuf, s->round, d->round);
usr.bin/sndiod/dev.c
411
d->round, 1);
usr.bin/sndiod/dev.c
413
abuf_rdiscard(&s->mix.buf, s->round * s->mix.bpf);
usr.bin/sndiod/dev.c
470
if (ocount < s->round * s->sub.bpf) {
usr.bin/sndiod/dev.c
480
enc_sil_do(&s->sub.enc, odata, s->round);
usr.bin/sndiod/dev.c
482
memset(odata, 0, s->round * s->sub.bpf);
usr.bin/sndiod/dev.c
483
abuf_wcommit(&s->sub.buf, s->round * s->sub.bpf);
usr.bin/sndiod/dev.c
501
moffs = d->poffs + d->round;
usr.bin/sndiod/dev.c
505
ADATA_UNIT, d->round, mix++);
usr.bin/sndiod/dev.c
509
ADATA_UNIT, d->round, mix++);
usr.bin/sndiod/dev.c
513
s->sub.resampbuf, resamp_out, d->round, s->round);
usr.bin/sndiod/dev.c
516
enc_do(&s->sub.enc, s->sub.encbuf, (void *)enc_out, s->round);
usr.bin/sndiod/dev.c
518
abuf_wcommit(&s->sub.buf, s->round * s->sub.bpf);
usr.bin/sndiod/dev.c
551
nsamp = d->round * d->pchan;
usr.bin/sndiod/dev.c
555
d->encbuf, d->round);
usr.bin/sndiod/dev.c
557
d->prime -= d->round;
usr.bin/sndiod/dev.c
561
d->delta -= d->round;
usr.bin/sndiod/dev.c
567
nsamp = d->round * d->pchan;
usr.bin/sndiod/dev.c
571
dec_do(&d->dec, d->decbuf, (unsigned char *)d->rbuf, d->round);
usr.bin/sndiod/dev.c
600
s->mix.buf.used < s->round * s->mix.bpf) {
usr.bin/sndiod/dev.c
621
s->mix.buf.used < s->round * s->mix.bpf) ||
usr.bin/sndiod/dev.c
624
s->round * s->sub.bpf)) {
usr.bin/sndiod/dev.c
634
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
751
unsigned int mode, unsigned int bufsz, unsigned int round,
usr.bin/sndiod/dev.c
768
d->reqround = round;
usr.bin/sndiod/dev.c
820
d->rbuf = xmalloc(d->round * d->rchan * sizeof(adata_t));
usr.bin/sndiod/dev.c
825
d->decbuf = xmalloc(d->round * d->rchan * d->par.bps);
usr.bin/sndiod/dev.c
835
d->psize = d->bufsz + d->round;
usr.bin/sndiod/dev.c
842
d->encbuf = xmalloc(d->round * d->pchan * d->par.bps);
usr.bin/sndiod/dev.c
851
memset(d->rbuf, 0, d->round * d->rchan * sizeof(adata_t));
usr.bin/sndiod/dev.c
859
d->bufsz / d->round, d->round);
usr.bin/sndiod/dev.c
871
d->round = d->reqround;
usr.bin/sndiod/dev.h
264
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/sndiod.c
369
int mode, int bufsz, int round, int rate, int hold, int autovol)
usr.bin/sndiod/sndiod.c
377
if (!bufsz && !round) {
usr.bin/sndiod/sndiod.c
378
round = DEFAULT_ROUND;
usr.bin/sndiod/sndiod.c
381
bufsz = round * 2;
usr.bin/sndiod/sndiod.c
382
} else if (!round)
usr.bin/sndiod/sndiod.c
383
round = bufsz / 2;
usr.bin/sndiod/sndiod.c
384
d = dev_new(path, par, mode, bufsz, round, rate, hold, autovol);
usr.bin/sndiod/sndiod.c
511
unsigned int hold, autovol, bufsz, round, rate;
usr.bin/sndiod/sndiod.c
536
round = 0;
usr.bin/sndiod/sndiod.c
606
bufsz, round, rate, 0, autovol);
usr.bin/sndiod/sndiod.c
640
round = strtonum(optarg, 1, SHRT_MAX, &str);
usr.bin/sndiod/sndiod.c
645
d = mkdev(optarg, &par, 0, bufsz, round,
usr.bin/sndiod/sndiod.c
656
a->dev = mkdev(optarg, &par, 0, bufsz, round,
usr.bin/sndiod/sndiod.c
681
bufsz, round, rate, 0, autovol);
usr.bin/sndiod/sock.c
1003
m->u.par.round = htonl(s->round);
usr.bin/sndiod/sock.c
1269
f->walign = f->slot->round * f->slot->sub.bpf;
usr.bin/sndiod/sock.c
203
f->fillpending += s->round;
usr.bin/sndiod/sock.c
216
f->wmax += s->round * s->sub.bpf;
usr.bin/sndiod/sock.c
645
s->round = dev_roundof(d, rate);
usr.bin/sndiod/sock.c
648
appbufsz = d->bufsz / d->round * s->round;
usr.bin/sndiod/sock.c
666
max = 1 + rate / d->round;
usr.bin/sndiod/sock.c
667
min *= s->round;
usr.bin/sndiod/sock.c
668
max *= s->round;
usr.bin/sndiod/sock.c
669
appbufsz += s->round / 2;
usr.bin/sndiod/sock.c
670
appbufsz -= appbufsz % s->round;
usr.bin/sndiod/sock.c
873
f->ralign = s->round * s->mix.bpf;
usr.bin/sndiod/sock.c
911
f->ralign = s->round * s->mix.bpf;
usr.bin/sndiod/sock.c
915
f->walign = s->round * s->sub.bpf;
usr.bin/sndiod/sock.c
940
if (f->ralign < s->round * s->mix.bpf) {
usr.bin/sndiod/sock.c
953
f->ralign = s->round * s->mix.bpf;
usr.bin/ssh/libcrux_mlkem768_sha3.h
7294
size_t round = i0;
usr.bin/ssh/libcrux_mlkem768_sha3.h
7296
size_t offset = round * step * (size_t)2U;
usr.bin/ssh/libcrux_mlkem768_sha3.h
7323
size_t round = i;
usr.bin/ssh/libcrux_mlkem768_sha3.h
7327
re->coefficients[round],
usr.bin/ssh/libcrux_mlkem768_sha3.h
7329
re->coefficients[round] = uu____0;
usr.bin/ssh/libcrux_mlkem768_sha3.h
7343
size_t round = i;
usr.bin/ssh/libcrux_mlkem768_sha3.h
7345
re->coefficients[round] =
usr.bin/ssh/libcrux_mlkem768_sha3.h
7347
re->coefficients[round], libcrux_ml_kem_polynomial_zeta(zeta_i[0U]),
usr.bin/ssh/libcrux_mlkem768_sha3.h
7363
size_t round = i;
usr.bin/ssh/libcrux_mlkem768_sha3.h
7365
re->coefficients[round] =
usr.bin/ssh/libcrux_mlkem768_sha3.h
7367
re->coefficients[round], libcrux_ml_kem_polynomial_zeta(zeta_i[0U]),
usr.bin/ssh/libcrux_mlkem768_sha3.h
7712
size_t round = i;
usr.bin/ssh/libcrux_mlkem768_sha3.h
7714
re->coefficients[round] =
usr.bin/ssh/libcrux_mlkem768_sha3.h
7716
re->coefficients[round], libcrux_ml_kem_polynomial_zeta(zeta_i[0U]),
usr.bin/ssh/libcrux_mlkem768_sha3.h
7733
size_t round = i;
usr.bin/ssh/libcrux_mlkem768_sha3.h
7735
re->coefficients[round] =
usr.bin/ssh/libcrux_mlkem768_sha3.h
7737
re->coefficients[round], libcrux_ml_kem_polynomial_zeta(zeta_i[0U]),
usr.bin/ssh/libcrux_mlkem768_sha3.h
7752
size_t round = i;
usr.bin/ssh/libcrux_mlkem768_sha3.h
7756
re->coefficients[round],
usr.bin/ssh/libcrux_mlkem768_sha3.h
7758
re->coefficients[round] = uu____0;
usr.bin/ssh/libcrux_mlkem768_sha3.h
7797
size_t round = i0;
usr.bin/ssh/libcrux_mlkem768_sha3.h
7799
size_t offset = round * step * (size_t)2U;
usr.bin/tmux/colour.c
996
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
453
int round = 0;
usr.sbin/ospf6d/interface.c
504
if (round == 0 &&
usr.sbin/ospf6d/interface.c
517
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;