Home
last modified time | relevance | path

Searched refs:databytes (Results 1 – 4 of 4) sorted by relevance

/freebsd-14-stable/secure/lib/libcrypt/
HDblowfish.c371 Blowfish_stream2word(const u_int8_t *data, u_int16_t databytes, in Blowfish_stream2word() argument
382 if (j >= databytes) in Blowfish_stream2word()
429 Blowfish_expandstate(blf_ctx *c, const u_int8_t *data, u_int16_t databytes, in Blowfish_expandstate() argument
450 datal ^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
451 datar ^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
460 datal ^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
461 datar ^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
/freebsd-14-stable/crypto/openssh/openbsd-compat/
HDblowfish.c400 Blowfish_stream2word(const u_int8_t *data, u_int16_t databytes, in Blowfish_stream2word() argument
411 if (j >= databytes) in Blowfish_stream2word()
459 Blowfish_expandstate(blf_ctx *c, const u_int8_t *data, u_int16_t databytes, in Blowfish_expandstate() argument
480 datal ^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
481 datar ^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
490 datal ^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
491 datar ^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
/freebsd-14-stable/contrib/ntp/ntpd/
HDntp_request.c222 static int databytes; variable
305 databytes = 0; in prepare_pkt()
330 RESP_HEADER_SIZE + databytes); in more_pkt()
338 databytes = 0; in more_pkt()
343 databytes += itemsize; in more_pkt()
345 if (databytes + itemsize <= RESP_DATA_SIZE) { in more_pkt()
351 return &rpkt.u.data[databytes]; in more_pkt()
387 RESP_HEADER_SIZE+databytes); in flush_pkt()
/freebsd-14-stable/usr.sbin/ctladm/
HDctladm.c1633 int cdbsize = -1, databytes; in cctl_read_write() local
1719 databytes = datalen * blocksize; in cctl_read_write()
1720 dataptr = (uint8_t *)malloc(databytes); in cctl_read_write()
1723 warn("%s: can't allocate %d bytes\n", __func__, databytes); in cctl_read_write()
1742 memset(dataptr, 0, databytes); in cctl_read_write()
1747 bytes_read = read(file_fd, dataptr, databytes); in cctl_read_write()
1753 if (bytes_read != databytes) { in cctl_read_write()
1762 /*data_len*/ databytes, in cctl_read_write()
1783 bytes_written = write(file_fd, dataptr, databytes); in cctl_read_write()