Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/gdb/gdb/
H A Docd.c585 int numbytes; in ocd_write_bytes() local
596 buf[7] = numbytes; in ocd_write_bytes()
617 len -= numbytes; in ocd_write_bytes()
626 len -= numbytes; in ocd_write_bytes()
627 memaddr += numbytes; in ocd_write_bytes()
628 myaddr += numbytes; in ocd_write_bytes()
656 int numbytes; in ocd_read_bytes() local
667 buf[6] = numbytes; in ocd_read_bytes()
687 len -= numbytes; in ocd_read_bytes()
698 len -= numbytes; in ocd_read_bytes()
[all …]
H A Ddsrec.c94 int numbytes; in load_srec() local
110 for (i = 0; i < size; i += numbytes) in load_srec()
113 numbytes = make_srec (srec, (CORE_ADDR) (addr + i), abfd, s, in load_srec()
H A Dremote-mips.c2648 unsigned int numbytes; in mips_load_srec() local
2656 for (i = 0; i < s->_raw_size; i += numbytes) in mips_load_srec()
2658 numbytes = min (srec_frame, s->_raw_size - i); in mips_load_srec()
2660 bfd_get_section_contents (abfd, s, buffer, i, numbytes); in mips_load_srec()
2662 reclen = mips_make_srec (srec, '3', s->vma + i, buffer, numbytes); in mips_load_srec()
/freebsd-12.1/contrib/ipfilter/
H A Darc4random.c216 int left, numbytes; in ipf_rand_push() local
218 numbytes = pot + sizeof(pot) - pottail; in ipf_rand_push()
219 bcopy(md5ctx.buf, pottail, numbytes); in ipf_rand_push()
220 left = sizeof(md5ctx.buf) - numbytes; in ipf_rand_push()
246 int left, numbytes; in ipf_read_random() local
249 numbytes = pot + sizeof(pot) - pothead; in ipf_read_random()
250 bcopy(pothead, dest, numbytes); in ipf_read_random()
251 left -= numbytes; in ipf_read_random()
/freebsd-12.1/libexec/bootpd/
H A Ddovend.c333 int length, numbytes; local
352 numbytes = srcptr[1] + 2;
353 if (*bytesleft < numbytes)
354 skipped += numbytes;
356 bcopy(srcptr, *buff, numbytes);
357 (*buff) += numbytes;
358 (*bytesleft) -= numbytes;
360 srcptr += numbytes;
361 length -= numbytes;
/freebsd-12.1/crypto/openssl/crypto/rand/
H A Drand_egd.c64 int mybuffer, ret = -1, i, numbytes, fd;
118 numbytes = tempbuf[0];
126 i = fread(buf, sizeof(char), numbytes, fp);
127 if (i < numbytes)
129 ret = numbytes;
/freebsd-12.1/sys/libkern/
H A Darc4random.c58 int numbytes; member
111 chacha20->numbytes = 0; in chacha20_randomstir()
130 chacha20->numbytes = 0; in chacha20_init()
169 if ((chacha20->numbytes > CHACHA20_RESEED_BYTES) || (tv.tv_sec > chacha20->t_reseed)) in arc4rand()
179 chacha20->numbytes += length; in arc4rand()
180 if (chacha20->numbytes > CHACHA20_RESEED_BYTES) { in arc4rand()
/freebsd-12.1/sys/cam/ctl/
H A Dctl_tpc.c884 if (numbytes == 0) in tpc_process_b2b()
887 if (numbytes % srcblock != 0 || numbytes % dstblock != 0) { in tpc_process_b2b()
896 list->segbytes = numbytes; in tpc_process_b2b()
901 while (donebytes < numbytes) { in tpc_process_b2b()
1235 numbytes = srcblock * in tpc_process_wut()
1237 numbytes = omin(numbytes, dstblock * in tpc_process_wut()
1241 numbytes -= numbytes % dstblock; in tpc_process_wut()
1244 if (numbytes > adj) in tpc_process_wut()
1245 numbytes -= adj; in tpc_process_wut()
1249 if (numbytes % srcblock != 0 || numbytes % dstblock != 0) { in tpc_process_wut()
[all …]
/freebsd-12.1/contrib/libarchive/libarchive/test/
H A Dtest_fuzz.c157 int j, numbytes, trycnt; in test_fuzz() local
164 numbytes = (int)(rand() % q); in test_fuzz()
165 for (j = 0; j < numbytes; ++j) in test_fuzz()
/freebsd-12.1/sys/netpfil/ipfw/
H A Dip_dn_glue.c143 u_long numbytes; member
182 int numbytes; member
208 uint64_t numbytes ; /* credit for transmission (dynamic queues) */ member
249 int64_t numbytes; /* bits I can transmit (more or less). */ member
/freebsd-12.1/contrib/binutils/binutils/
H A Ddlltool.c1983 int numbytes; in gen_exp_file() local
1992 numbytes = ftell (base_file); in gen_exp_file()
1994 copy = xmalloc (numbytes); in gen_exp_file()
1995 fread (copy, 1, numbytes, base_file); in gen_exp_file()
1996 num_entries = numbytes / sizeof (long); in gen_exp_file()
/freebsd-12.1/contrib/subversion/subversion/libsvn_subr/
H A Dstream.c340 apr_size_t numbytes; in stream_readline_bytewise() local
354 numbytes = 1; in stream_readline_bytewise()
355 SVN_ERR(svn_stream_read_full(stream, &c, &numbytes)); in stream_readline_bytewise()
356 if (numbytes != 1) in stream_readline_bytewise()
H A Dio.c5373 apr_size_t numbytes; in svn_io_file_readline() local
5383 numbytes = 1; in svn_io_file_readline()
5389 SVN_ERR(svn_io_file_read_full2(file, &c, sizeof(c), &numbytes, in svn_io_file_readline()
5392 if (numbytes != 1 || len > max_len) in svn_io_file_readline()
5412 SVN_ERR(svn_io_file_read_full2(file, &c, sizeof(c), &numbytes, in svn_io_file_readline()
5414 if (numbytes == 1 && c == '\n') in svn_io_file_readline()
5424 numbytes = 1; in svn_io_file_readline()
/freebsd-12.1/stand/libsa/
H A Dpkgfs.c97 char numbytes[12]; member
/freebsd-12.1/contrib/libarchive/libarchive/
H A Darchive_read_support_format_tar.c78 char numbytes[12]; member
2347 tar_atol(sparse->numbytes, sizeof(sparse->numbytes))) in gnu_sparse_old_parse()