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

/freebsd-10.1-release/crypto/openssh/openbsd-compat/
H A Dblowfish.c403 Blowfish_stream2word(const u_int8_t *data, u_int16_t databytes, argument
414 if (j >= databytes)
462 Blowfish_expandstate(blf_ctx *c, const u_int8_t *data, u_int16_t databytes, argument
483 datal ^= Blowfish_stream2word(data, databytes, &j);
484 datar ^= Blowfish_stream2word(data, databytes, &j);
493 datal ^= Blowfish_stream2word(data, databytes, &j);
494 datar ^= Blowfish_stream2word(data, databytes, &j);
/freebsd-10.1-release/secure/lib/libcrypt/
H A Dblowfish.c373 Blowfish_stream2word(const u_int8_t *data, u_int16_t databytes, argument
384 if (j >= databytes)
431 Blowfish_expandstate(blf_ctx *c, const u_int8_t *data, u_int16_t databytes, argument
452 datal ^= Blowfish_stream2word(data, databytes, &j);
453 datar ^= Blowfish_stream2word(data, databytes, &j);
462 datal ^= Blowfish_stream2word(data, databytes, &j);
463 datar ^= Blowfish_stream2word(data, databytes, &j);
/freebsd-10.1-release/contrib/ntp/ntpd/
H A Dntp_request.c222 static int databytes; variable
305 databytes = 0;
330 RESP_HEADER_SIZE + databytes);
338 databytes = 0;
343 databytes += itemsize;
345 if (databytes + itemsize <= RESP_DATA_SIZE) {
351 return &rpkt.u.data[databytes];
387 RESP_HEADER_SIZE+databytes);
/freebsd-10.1-release/usr.sbin/ctladm/
H A Dctladm.c2184 int cdbsize = -1, databytes; local
2271 databytes = datalen * blocksize;
2272 dataptr = (uint8_t *)malloc(databytes);
2275 warn("%s: can't allocate %d bytes\n", __func__, databytes);
2294 memset(dataptr, 0, databytes);
2299 bytes_read = read(file_fd, dataptr, databytes);
2305 if (bytes_read != databytes) {
2314 /*data_len*/ databytes,
2336 bytes_written = write(file_fd, dataptr, databytes);

Completed in 103 milliseconds