Home
last modified time | relevance | path

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

/freebsd-13.1/secure/lib/libcrypt/
H A Dblowfish.c373 Blowfish_stream2word(const u_int8_t *data, u_int16_t databytes, in Blowfish_stream2word() argument
384 if (j >= databytes) in Blowfish_stream2word()
431 Blowfish_expandstate(blf_ctx *c, const u_int8_t *data, u_int16_t databytes, in Blowfish_expandstate() argument
452 datal ^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
453 datar ^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
462 datal ^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
463 datar ^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
/freebsd-13.1/crypto/openssh/openbsd-compat/
H A Dblowfish.c403 Blowfish_stream2word(const u_int8_t *data, u_int16_t databytes, in Blowfish_stream2word() argument
414 if (j >= databytes) in Blowfish_stream2word()
462 Blowfish_expandstate(blf_ctx *c, const u_int8_t *data, u_int16_t databytes, in Blowfish_expandstate() argument
483 datal ^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
484 datar ^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
493 datal ^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
494 datar ^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
/freebsd-13.1/contrib/ntp/ntpd/
H A Dntp_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-13.1/usr.sbin/ctladm/
H A Dctladm.c1608 int cdbsize = -1, databytes; in cctl_read_write() local
1694 databytes = datalen * blocksize; in cctl_read_write()
1695 dataptr = (uint8_t *)malloc(databytes); in cctl_read_write()
1698 warn("%s: can't allocate %d bytes\n", __func__, databytes); in cctl_read_write()
1717 memset(dataptr, 0, databytes); in cctl_read_write()
1722 bytes_read = read(file_fd, dataptr, databytes); in cctl_read_write()
1728 if (bytes_read != databytes) { in cctl_read_write()
1737 /*data_len*/ databytes, in cctl_read_write()
1758 bytes_written = write(file_fd, dataptr, databytes); in cctl_read_write()