Home
last modified time | relevance | path

Searched refs:numbytes (Results 1 – 8 of 8) sorted by relevance

/freebsd-14.2/libexec/bootpd/
H A Ddovend.c312 int length, numbytes; in insert_generic() local
331 numbytes = srcptr[1] + 2; in insert_generic()
332 if (*bytesleft < numbytes) in insert_generic()
333 skipped += numbytes; in insert_generic()
335 bcopy(srcptr, *buff, numbytes); in insert_generic()
336 (*buff) += numbytes; in insert_generic()
337 (*bytesleft) -= numbytes; in insert_generic()
339 srcptr += numbytes; in insert_generic()
340 length -= numbytes; in insert_generic()
/freebsd-14.2/sys/libkern/
H A Darc4random.c65 int numbytes; member
149 chacha20->numbytes = 0; in chacha20_randomstir()
171 chacha20->numbytes = 0;
215 if ((chacha20->numbytes > CHACHA20_RESEED_BYTES) || (tv.tv_sec > chacha20->t_reseed))
235 chacha20->numbytes += length;
236 if (chacha20->numbytes > CHACHA20_RESEED_BYTES) {
/freebsd-14.2/crypto/openssl/crypto/rand/
H A Drand_egd.c113 int mybuffer, ret = -1, i, numbytes, fd; in RAND_query_egd_bytes() local
183 numbytes = tempbuf[0]; in RAND_query_egd_bytes()
191 i = fread(buf, sizeof(char), numbytes, fp); in RAND_query_egd_bytes()
192 if (i < numbytes) in RAND_query_egd_bytes()
194 ret = numbytes; in RAND_query_egd_bytes()
/freebsd-14.2/sys/cam/ctl/
H A Dctl_tpc.c883 if (numbytes == 0) in tpc_process_b2b()
886 if (numbytes % srcblock != 0 || numbytes % dstblock != 0) { in tpc_process_b2b()
895 list->segbytes = numbytes; in tpc_process_b2b()
900 while (donebytes < numbytes) { in tpc_process_b2b()
1234 numbytes = srcblock * in tpc_process_wut()
1236 numbytes = omin(numbytes, dstblock * in tpc_process_wut()
1240 numbytes -= numbytes % dstblock; in tpc_process_wut()
1243 if (numbytes > adj) in tpc_process_wut()
1244 numbytes -= adj; in tpc_process_wut()
1248 if (numbytes % srcblock != 0 || numbytes % dstblock != 0) { in tpc_process_wut()
[all …]
/freebsd-14.2/contrib/libarchive/libarchive/test/
H A Dtest_fuzz.c156 int j, numbytes, trycnt; in test_fuzz() local
163 numbytes = (int)(rand() % q); in test_fuzz()
164 for (j = 0; j < numbytes; ++j) in test_fuzz()
/freebsd-14.2/sys/netpfil/ipfw/
H A Dip_dn_glue.c142 u_long numbytes; member
181 int numbytes; member
206 uint64_t numbytes ; /* credit for transmission (dynamic queues) */ member
247 int64_t numbytes; /* bits I can transmit (more or less). */ member
/freebsd-14.2/stand/libsa/
H A Dpkgfs.c95 char numbytes[12]; member
/freebsd-14.2/contrib/libarchive/libarchive/
H A Darchive_read_support_format_tar.c77 char numbytes[12]; member
3025 tar_atol(sparse->numbytes, sizeof(sparse->numbytes))) in gnu_sparse_old_parse()