| /src/external/bsd/libevent/dist/include/event2/ |
| buffer.h | 255 Expands the available space in the evbuffer to at least datlen, so that 256 appending datlen additional bytes will not require any new allocations. 259 @param datlen the new minimum length requirement 263 int evbuffer_expand(struct evbuffer *buf, size_t datlen); 333 @param datlen the number of bytes to be copied from the data buffer 337 int evbuffer_add(struct evbuffer *buf, const void *data, size_t datlen); 348 @param datlen the maximum size of the destination buffer 352 int evbuffer_remove(struct evbuffer *buf, void *data, size_t datlen); 362 @param datlen the maximum size of the destination buffer 366 ev_ssize_t evbuffer_copyout(struct evbuffer *buf, void *data_out, size_t datlen); [all...] |
| util.h | 880 @param datlen the number of bytes to read from datlen 883 void evutil_secure_rng_add_bytes(const char *dat, size_t datlen);
|
| /src/external/bsd/ntp/dist/sntp/libevent/include/event2/ |
| buffer.h | 256 Expands the available space in the evbuffer to at least datlen, so that 257 appending datlen additional bytes will not require any new allocations. 260 @param datlen the new minimum length requirement 264 int evbuffer_expand(struct evbuffer *buf, size_t datlen); 334 @param datlen the number of bytes to be copied from the data buffer 338 int evbuffer_add(struct evbuffer *buf, const void *data, size_t datlen); 349 @param datlen the maximum size of the destination buffer 353 int evbuffer_remove(struct evbuffer *buf, void *data, size_t datlen); 363 @param datlen the maximum size of the destination buffer 367 ev_ssize_t evbuffer_copyout(struct evbuffer *buf, void *data_out, size_t datlen); [all...] |
| util.h | 880 @param datlen the number of bytes to read from datlen 883 void evutil_secure_rng_add_bytes(const char *dat, size_t datlen);
|
| /src/external/bsd/ntp/dist/sntp/libevent/ |
| buffer.c | 152 size_t datlen); 332 evbuffer_chain_insert_new(struct evbuffer *buf, size_t datlen) 335 if ((chain = evbuffer_chain_new(datlen)) == NULL) 1172 evbuffer_remove(struct evbuffer *buf, void *data_out, size_t datlen) 1176 n = evbuffer_copyout_from(buf, NULL, data_out, datlen); 1186 evbuffer_copyout(struct evbuffer *buf, void *data_out, size_t datlen) 1188 return evbuffer_copyout_from(buf, NULL, data_out, datlen); 1193 void *data_out, size_t datlen) 1205 if (datlen > (size_t)(EV_SSIZE_MAX - pos->pos)) { 1211 if (datlen + pos->pos > buf->total_len [all...] |
| arc4random.c | 113 arc4_addrandom(const unsigned char *dat, int datlen) 122 rs.j = (rs.j + si + dat[n % datlen]); 458 arc4random_addrandom(const unsigned char *dat, int datlen) 464 for (j = 0; j < datlen; j += 256) { 469 arc4_addrandom(dat + j, datlen - j);
|
| /src/external/bsd/libevent/dist/ |
| buffer.c | 154 size_t datlen); 334 evbuffer_chain_insert_new(struct evbuffer *buf, size_t datlen) 337 if ((chain = evbuffer_chain_new(datlen)) == NULL) 1179 evbuffer_remove(struct evbuffer *buf, void *data_out, size_t datlen) 1183 n = evbuffer_copyout_from(buf, NULL, data_out, datlen); 1193 evbuffer_copyout(struct evbuffer *buf, void *data_out, size_t datlen) 1195 return evbuffer_copyout_from(buf, NULL, data_out, datlen); 1200 void *data_out, size_t datlen) 1212 if (datlen > (size_t)(EV_SSIZE_MAX - pos->pos)) { 1218 if (datlen + pos->pos > buf->total_len [all...] |
| arc4random.c | 112 arc4_addrandom(const unsigned char *dat, int datlen) 121 rs.j = (rs.j + si + dat[n % datlen]); 457 arc4random_addrandom(const unsigned char *dat, int datlen) 463 for (j = 0; j < datlen; j += 256) { 468 arc4_addrandom(dat + j, datlen - j);
|
| /src/usr.sbin/rbootd/ |
| bpf.c | 285 int datlen, caplen, hdrlen; local 309 datlen = bhp->bh_datalen; 313 if (caplen != datlen) 316 caplen, datlen);
|
| /src/external/bsd/unbound/dist/compat/ |
| arc4random.c | 77 static inline void _rs_rekey(u_char *dat, size_t datlen); 243 _rs_rekey(u_char *dat, size_t datlen) 255 m = arc4_min(datlen, KEYSZ + IVSZ);
|
| /src/external/bsd/libarchive/dist/libarchive/ |
| archive_random.c | 204 arc4_addrandom(uint8_t *dat, int datlen) 213 rs.j = (rs.j + si + dat[n % datlen]);
|
| /src/crypto/external/bsd/openssh/dist/ |
| monitor.c | 726 size_t datlen, siglen; local 738 (r = sshbuf_get_string(m, &p, &datlen)) != 0 || 759 if (datlen != 20 && datlen != 32 && datlen != 48 && datlen != 64) { 765 fatal_f("bad data length: %zu", datlen); 775 if (datlen != sshbuf_len(sigbuf) || 778 datlen, sshbuf_len(sigbuf)); 785 session_id2_len = datlen; [all...] |
| /src/crypto/external/bsd/openssl.old/dist/crypto/evp/ |
| pmeth_lib.c | 464 void EVP_PKEY_CTX_set0_keygen_info(EVP_PKEY_CTX *ctx, int *dat, int datlen) 467 ctx->keygen_info_count = datlen;
|
| /src/crypto/external/apache2/openssl/dist/crypto/evp/ |
| pmeth_lib.c | 1630 void EVP_PKEY_CTX_set0_keygen_info(EVP_PKEY_CTX *ctx, int *dat, int datlen) 1633 ctx->keygen_info_count = datlen;
|
| /src/crypto/external/bsd/openssl/dist/crypto/evp/ |
| pmeth_lib.c | 1707 void EVP_PKEY_CTX_set0_keygen_info(EVP_PKEY_CTX *ctx, int *dat, int datlen) 1710 ctx->keygen_info_count = datlen;
|
| /src/crypto/external/bsd/openssl.old/dist/include/openssl/ |
| evp.h | 1356 void EVP_PKEY_CTX_set0_keygen_info(EVP_PKEY_CTX *ctx, int *dat, int datlen);
|
| /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
| sanitizer_common_interceptors.inc | 9104 INTERCEPTOR(void, arc4random_addrandom, u8 *dat, int datlen) { 9106 COMMON_INTERCEPTOR_ENTER(ctx, arc4random_addrandom, dat, datlen); 9107 if (dat && datlen) 9108 COMMON_INTERCEPTOR_READ_RANGE(ctx, dat, datlen); 9109 REAL(arc4random_addrandom)(dat, datlen);
|
| /src/external/bsd/unbound/dist/services/ |
| authzone.c | 1663 size_t slen = buflen, datlen; local 1667 datlen = nmlen; 1668 w += sldns_wire2str_dname_scan(&dat, &datlen, &s, &slen, NULL, 0, NULL); 1675 datlen = data->rr_len[i]-2; 1677 w += sldns_wire2str_rdata_scan(&dat, &datlen, &s, &slen, tp, NULL, 0, NULL);
|
| /src/crypto/external/bsd/openssl/dist/include/openssl/ |
| evp.h | 1804 void EVP_PKEY_CTX_set0_keygen_info(EVP_PKEY_CTX *ctx, int *dat, int datlen);
|
| /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/ |
| sanitizer_common_interceptors.inc | 9616 INTERCEPTOR(void, arc4random_addrandom, u8 *dat, int datlen) { 9618 COMMON_INTERCEPTOR_ENTER(ctx, arc4random_addrandom, dat, datlen); 9619 if (dat && datlen) 9620 COMMON_INTERCEPTOR_READ_RANGE(ctx, dat, datlen); 9621 REAL(arc4random_addrandom)(dat, datlen);
|
| /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/ |
| sanitizer_common_interceptors.inc | 9617 INTERCEPTOR(void, arc4random_addrandom, u8 *dat, int datlen) { 9619 COMMON_INTERCEPTOR_ENTER(ctx, arc4random_addrandom, dat, datlen); 9620 if (dat && datlen) 9621 COMMON_INTERCEPTOR_READ_RANGE(ctx, dat, datlen); 9622 REAL(arc4random_addrandom)(dat, datlen);
|
| /src/crypto/external/apache2/openssl/dist/include/openssl/ |
| evp.h | 1888 void EVP_PKEY_CTX_set0_keygen_info(EVP_PKEY_CTX *ctx, int *dat, int datlen);
|