Searched refs:nbytes (Results 101 - 125 of 250) sorted by relevance

12345678910

/freebsd-11-stable/sys/crypto/aesni/
H A Daesni_ghash.c273 unsigned char *tag, uint32_t nbytes, uint32_t abytes, int ibytes,
391 for (i=0; i<nbytes/16/8; i++) {
480 for (k=i*8; k<nbytes/16; k++) {
497 if (nbytes%16) {
508 for (j=0; j<nbytes%16; j++)
517 tmp1 = _mm_insert_epi64(tmp1, (uint64_t)nbytes*8, 0);
531 const unsigned char *tag, uint32_t nbytes, uint32_t abytes, int ibytes,
641 for (i = 0; i<nbytes/16/4; i++) {
656 for (i = i*4; i<nbytes/16; i++) {
662 if (nbytes
271 AES_GCM_encrypt(const unsigned char *in, unsigned char *out, const unsigned char *addt, const unsigned char *ivec, unsigned char *tag, uint32_t nbytes, uint32_t abytes, int ibytes, const unsigned char *key, int nr) argument
529 AES_GCM_decrypt(const unsigned char *in, unsigned char *out, const unsigned char *addt, const unsigned char *ivec, const unsigned char *tag, uint32_t nbytes, uint32_t abytes, int ibytes, const unsigned char *key, int nr) argument
[all...]
/freebsd-11-stable/tools/tools/net80211/wesside/dics/
H A Ddics.c71 unsigned short in_cksum (unsigned short *ptr, int nbytes) { argument
77 while (nbytes > 1)
80 nbytes -= 2;
83 if (nbytes == 1)
/freebsd-11-stable/contrib/ntp/ntpd/
H A Drefclock_datum.c146 char nbytes; /* number of bytes received from datum pts */ member in struct:datum_pts_unit
387 datum_pts->nbytes = 0;
530 nb = datum_pts->nbytes;
544 datum_pts->nbytes = nb;
/freebsd-11-stable/usr.bin/hexdump/
H A Ddisplay.c316 peek(u_char *buf, size_t nbytes) argument
321 if (length != -1 && nbytes > (unsigned int)length)
322 nbytes = length;
324 while (nread < nbytes && (c = getchar()) != EOF) {
/freebsd-11-stable/contrib/file/src/
H A Delfclass.h27 if (nbytes <= sizeof(elfhdr))
/freebsd-11-stable/contrib/subversion/subversion/libsvn_fs_x/
H A Drev_file.h192 apr_size_t nbytes);
/freebsd-11-stable/contrib/apr/include/
H A Dapr_strings.h158 * @param nbytes (output) strlen of new string (pass in NULL to omit)
162 apr_size_t nvec, apr_size_t *nbytes);
/freebsd-11-stable/tools/regression/netinet/ipbroadcast/
H A Dipbroadcast.c130 ssize_t nbytes; local
356 nbytes = sendmsg(s, &msg, (dontroute ? MSG_DONTROUTE : 0));
357 if (nbytes == -1) {
/freebsd-11-stable/usr.bin/showmount/
H A Dshowmount.c118 int ch, estat, nbytes; local
221 nbytes = strsnvis(strvised, sizeof(strvised),
223 if (nbytes == -1)
/freebsd-11-stable/usr.sbin/nscd/
H A Dquery.c1109 query_io_buffer_read(struct query_state *qstate, void *buf, size_t nbytes) argument
1122 if (nbytes < remaining)
1123 result = nbytes;
1148 size_t nbytes)
1161 if (nbytes < remaining)
1162 result = nbytes;
1185 query_socket_read(struct query_state *qstate, void *buf, size_t nbytes) argument
1195 result = read(qstate->sockfd, buf, nbytes);
1196 if (result < 0 || (size_t)result < nbytes)
1207 query_socket_write(struct query_state *qstate, const void *buf, size_t nbytes) argument
1147 query_io_buffer_write(struct query_state *qstate, const void *buf, size_t nbytes) argument
[all...]
/freebsd-11-stable/sbin/dhclient/
H A Dpacket.c59 checksum(unsigned char *buf, unsigned nbytes, u_int32_t sum) argument
64 for (i = 0; i < (nbytes & ~1U); i += 2) {
75 if (i < nbytes) {
/freebsd-11-stable/sys/kern/
H A Dkern_sendfile.c518 struct uio *trl_uio, off_t offset, size_t nbytes, off_t *sent, int flags,
563 rem = nbytes ? omin(nbytes, obj_size - offset) : obj_size - offset;
685 rem = nbytes ?
686 omin(nbytes + offset, obj_size) : obj_size;
947 * In FreeBSD < 5.0 the nbytes to send also included
949 * header size from nbytes.
952 if (uap->nbytes > hdr_uio->uio_resid)
953 uap->nbytes -= hdr_uio->uio_resid;
955 uap->nbytes
517 vn_sendfile(struct file *fp, int sockfd, struct uio *hdr_uio, struct uio *trl_uio, off_t offset, size_t nbytes, off_t *sent, int flags, struct thread *td) argument
[all...]
/freebsd-11-stable/crypto/heimdal/lib/krb5/
H A Dsend_to_kdc.c59 int nbytes; local
83 if (rk_SOCK_IOCTL (fd, FIONREAD, &nbytes) < 0) {
87 if(nbytes <= 0)
91 nbytes = min((size_t)nbytes, limit - rep->length);
93 tmp = realloc (rep->data, rep->length + nbytes);
99 ret = recv (fd, (char*)tmp + rep->length, nbytes, 0);
/freebsd-11-stable/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_subr.c890 dt_string2str(char *s, char *str, int nbytes) argument
894 if (nbytes == 0) {
902 if (nbytes <= len) {
903 (void) strncpy(str, s, nbytes - 1);
908 str[nbytes - 1] = '\0';
917 dtrace_addr2str(dtrace_hdl_t *dtp, uint64_t addr, char *str, int nbytes) argument
951 return (dt_string2str(s, str, nbytes));
956 uint64_t addr, char *str, int nbytes)
968 return (dt_string2str(c, str, nbytes));
994 return (dt_string2str(c, str, nbytes));
955 dtrace_uaddr2str(dtrace_hdl_t *dtp, pid_t pid, uint64_t addr, char *str, int nbytes) argument
[all...]
/freebsd-11-stable/lib/libc/db/btree/
H A Dbt_delete.c466 u_int32_t nbytes; local
486 nbytes = NBLEAF(bl);
488 memmove(from + nbytes, from, (char *)to - from);
489 h->upper += nbytes;
495 ip[0] += nbytes;
497 ip[0] = ip[1] < offset ? ip[1] + nbytes : ip[1];
/freebsd-11-stable/contrib/gcclibs/libiberty/
H A Dobstack.c398 register int nbytes = 0;
402 nbytes += lp->limit - (char *) lp;
404 return nbytes;
395 register int nbytes = 0; local
/freebsd-11-stable/contrib/apr/strings/
H A Dapr_strings.c178 apr_size_t nvec, apr_size_t *nbytes)
193 if (nbytes) {
194 *nbytes = len;
177 apr_pstrcatv(apr_pool_t *a, const struct iovec *vec, apr_size_t nvec, apr_size_t *nbytes) argument
/freebsd-11-stable/contrib/binutils/libiberty/
H A Dobstack.c398 register int nbytes = 0;
402 nbytes += lp->limit - (char *) lp;
404 return nbytes;
395 register int nbytes = 0; local
/freebsd-11-stable/lib/libc/net/
H A Dip6opt.c69 inet6_option_space(int nbytes) argument
71 nbytes += 2; /* we need space for nxt-hdr and length fields */
72 return(CMSG_SPACE((nbytes + 7) & ~7));
/freebsd-11-stable/sys/dev/random/
H A Drandomdev.c254 ssize_t nbytes; local
257 nbytes = uio->uio_resid;
266 if (nbytes != uio->uio_resid && (error == ERESTART || error == EINTR))
/freebsd-11-stable/sbin/dump/
H A Ddump.h110 ssize_t cread(int fd, void *buf, size_t nbytes, off_t offset);
/freebsd-11-stable/crypto/openssl/engines/vendor_defns/
H A Dcswift.h153 SW_U32 nbytes; /* number of bytes in the buffer "value" */ member in struct:_SW_LARGENUMBER
/freebsd-11-stable/sys/geom/raid3/
H A Dg_raid3.h185 g_raid3_zone(size_t nbytes) { argument
186 if (nbytes > 65536)
188 else if (nbytes > 16384)
190 else if (nbytes > 4096)
/freebsd-11-stable/lib/libthr/thread/
H A Dthr_syscalls.c411 __thr_read(int fd, void *buf, size_t nbytes) argument
418 ret = __sys_read(fd, buf, nbytes);
609 __thr_write(int fd, const void *buf, size_t nbytes) argument
616 ret = __sys_write(fd, buf, nbytes);
/freebsd-11-stable/contrib/binutils/gas/config/
H A Dtc-cr16.c111 l_cons (int nbytes) argument
127 if (nbytes == 0)
128 nbytes = TC_ADDRESS_BYTES ();
132 md_cons_align (nbytes);
138 unsigned int bits_available = BITS_PER_CHAR * nbytes;
174 (unsigned int)(BITS_PER_CHAR * nbytes))
176 as_warn (_("field width %lu too big to fit in %d bytes: truncated to %d bits"), width, nbytes, (BITS_PER_CHAR * nbytes));
177 width = BITS_PER_CHAR * nbytes;
205 << ((BITS_PER_CHAR * nbytes)
[all...]

Completed in 160 milliseconds

12345678910