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

/freebsd-10.0-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.0-release/contrib/ntp/ntpd/
H A Dntp_request.c216 static int databytes; variable
302 databytes = 0;
330 RESP_HEADER_SIZE+databytes);
338 databytes = 0;
343 databytes += itemsize;
345 if (databytes + itemsize <= RESP_DATA_SIZE) {
354 return &rpkt.data[databytes];
396 RESP_HEADER_SIZE+databytes);
/freebsd-10.0-release/usr.sbin/ctladm/
H A Dctladm.c2178 int cdbsize = -1, databytes; local
2265 databytes = datalen * blocksize;
2266 dataptr = (uint8_t *)malloc(databytes);
2269 warn("%s: can't allocate %d bytes\n", __func__, databytes);
2288 memset(dataptr, 0, databytes);
2293 bytes_read = read(file_fd, dataptr, databytes);
2299 if (bytes_read != databytes) {
2308 /*data_len*/ databytes,
2330 bytes_written = write(file_fd, dataptr, databytes);

Completed in 218 milliseconds