Searched refs:databytes (Results 1 – 4 of 4) sorted by relevance
/freebsd/secure/lib/libcrypt/ |
H A D | blowfish.c | 371 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/crypto/openssh/openbsd-compat/ |
H A D | blowfish.c | 400 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/contrib/ntp/ntpd/ |
H A D | ntp_request.c | 222 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/usr.sbin/ctladm/ |
H A D | ctladm.c | 1638 int cdbsize = -1, databytes; in cctl_read_write() local 1724 databytes = datalen * blocksize; in cctl_read_write() 1725 dataptr = (uint8_t *)malloc(databytes); in cctl_read_write() 1728 warn("%s: can't allocate %d bytes\n", __func__, databytes); in cctl_read_write() 1747 memset(dataptr, 0, databytes); in cctl_read_write() 1752 bytes_read = read(file_fd, dataptr, databytes); in cctl_read_write() 1758 if (bytes_read != databytes) { in cctl_read_write() 1767 /*data_len*/ databytes, in cctl_read_write() 1788 bytes_written = write(file_fd, dataptr, databytes); in cctl_read_write()
|