| /f-stack/freebsd/crypto/armv8/ |
| H A D | armv8_crypto_wrap.c | 250 size_t trailer; in armv8_aes_encrypt_gcm() local 292 to += (len - trailer); in armv8_aes_encrypt_gcm() 293 from += (len - trailer); in armv8_aes_encrypt_gcm() 295 if (trailer) { in armv8_aes_encrypt_gcm() 336 size_t trailer; in armv8_aes_decrypt_gcm() local 363 if (len - trailer > 0) in armv8_aes_decrypt_gcm() 365 if (trailer > 0) { in armv8_aes_decrypt_gcm() 367 memcpy(block, from + len - trailer, trailer); in armv8_aes_decrypt_gcm() 399 to += (len - trailer); in armv8_aes_decrypt_gcm() 400 from += (len - trailer); in armv8_aes_decrypt_gcm() [all …]
|
| /f-stack/app/nginx-1.16.1/src/os/unix/ |
| H A D | ngx_darwin_sendfile_chain.c | 42 ngx_iovec_t header, trailer; in ngx_darwin_sendfile_chain() local 75 trailer.iovs = trailers; in ngx_darwin_sendfile_chain() 76 trailer.nalloc = NGX_IOVS_PREALLOCATE; in ngx_darwin_sendfile_chain() 107 cl = ngx_output_chain_to_iovec(&trailer, cl, limit - send, in ngx_darwin_sendfile_chain() 113 send += trailer.size; in ngx_darwin_sendfile_chain() 116 trailer.count = 0; in ngx_darwin_sendfile_chain() 126 hdtr.trailers = trailer.count ? trailer.iovs : NULL; in ngx_darwin_sendfile_chain() 127 hdtr.trl_cnt = trailer.count; in ngx_darwin_sendfile_chain()
|
| H A D | ngx_freebsd_sendfile_chain.c | 44 ngx_iovec_t header, trailer; in ngx_freebsd_sendfile_chain() local 88 trailer.iovs = trailers; in ngx_freebsd_sendfile_chain() 89 trailer.nalloc = NGX_IOVS_PREALLOCATE; in ngx_freebsd_sendfile_chain() 123 cl = ngx_output_chain_to_iovec(&trailer, cl, limit - send, in ngx_freebsd_sendfile_chain() 129 send += trailer.size; in ngx_freebsd_sendfile_chain() 132 trailer.count = 0; in ngx_freebsd_sendfile_chain() 168 hdtr.trailers = trailer.count ? trailer.iovs : NULL; in ngx_freebsd_sendfile_chain() 169 hdtr.trl_cnt = trailer.count; in ngx_freebsd_sendfile_chain()
|
| /f-stack/freebsd/kern/ |
| H A D | subr_compressor.c | 172 uint8_t trailer[8]; in gz_write() local 204 ((uint32_t *)trailer)[0] = s->gz_crc; in gz_write() 205 ((uint32_t *)trailer)[1] = in gz_write() 207 room = MIN(sizeof(trailer), in gz_write() 209 memcpy(s->gz_buffer + len, trailer, room); in gz_write() 225 if (zerror == Z_STREAM_END && room < sizeof(trailer)) in gz_write() 226 error = cb(trailer + room, in gz_write() 227 sizeof(trailer) - room, s->gz_off, arg); in gz_write()
|
| /f-stack/dpdk/drivers/common/sfc_efx/base/ |
| H A D | ef10_nvram.c | 593 struct tlv_partition_trailer *trailer; in tlv_update_partition_len_and_cks() local 622 trailer->checksum = __CPU_TO_LE_32( in tlv_update_partition_len_and_cks() 623 __LE_TO_CPU_32(trailer->checksum) - in tlv_update_partition_len_and_cks() 645 struct tlv_partition_trailer *trailer; in ef10_nvram_buffer_validate() local 765 struct tlv_partition_trailer trailer; in ef10_nvram_buffer_create() local 796 trailer.length = __CPU_TO_LE_32(sizeof (trailer) - 8); in ef10_nvram_buffer_create() 797 trailer.generation = header.generation; in ef10_nvram_buffer_create() 800 (uint8_t *)&trailer.generation, sizeof (trailer) - 8)) != 0) in ef10_nvram_buffer_create() 1228 struct tlv_partition_trailer *trailer; in ef10_nvram_read_tlv_segment() local 1693 trailer->checksum = 0; in ef10_nvram_buf_write_tlv() [all …]
|
| /f-stack/app/nginx-1.16.1/src/http/modules/ |
| H A D | ngx_http_gzip_filter_module.c | 938 struct gztrailer *trailer; in ngx_http_gzip_filter_deflate_end() local 964 trailer = (struct gztrailer *) ctx->out_buf->last; in ngx_http_gzip_filter_deflate_end() 985 trailer = (struct gztrailer *) b->pos; in ngx_http_gzip_filter_deflate_end() 991 trailer->crc32 = ctx->crc32; in ngx_http_gzip_filter_deflate_end() 992 trailer->zlen = ctx->zin; in ngx_http_gzip_filter_deflate_end() 996 trailer->crc32[0] = (u_char) (ctx->crc32 & 0xff); in ngx_http_gzip_filter_deflate_end() 997 trailer->crc32[1] = (u_char) ((ctx->crc32 >> 8) & 0xff); in ngx_http_gzip_filter_deflate_end() 1001 trailer->zlen[0] = (u_char) (ctx->zin & 0xff); in ngx_http_gzip_filter_deflate_end() 1002 trailer->zlen[1] = (u_char) ((ctx->zin >> 8) & 0xff); in ngx_http_gzip_filter_deflate_end() 1003 trailer->zlen[2] = (u_char) ((ctx->zin >> 16) & 0xff); in ngx_http_gzip_filter_deflate_end() [all …]
|
| /f-stack/freebsd/opencrypto/ |
| H A D | ktls_ocf.c | 159 const struct tls_record_layer *hdr, uint8_t *trailer, struct iovec *iniov, in ktls_ocf_tls_cbc_encrypt() argument 219 iov[iovcnt + 1].iov_base = trailer; in ktls_ocf_tls_cbc_encrypt() 253 trailer[os->mac_len + i] = pad; in ktls_ocf_tls_cbc_encrypt() 305 memcpy(os->iv, trailer + os->mac_len + pad + 1 - AES_BLOCK_LEN, in ktls_ocf_tls_cbc_encrypt() 319 const struct tls_record_layer *hdr, uint8_t *trailer, struct iovec *iniov, in ktls_ocf_tls12_gcm_encrypt() argument 381 iov[iovcnt].iov_base = trailer; in ktls_ocf_tls12_gcm_encrypt() 457 const struct tls_record_layer *hdr, uint8_t *trailer, struct iovec *iniov, in ktls_ocf_tls13_gcm_encrypt() argument 495 trailer[0] = record_type; in ktls_ocf_tls13_gcm_encrypt() 505 iov[iovcnt].iov_base = trailer; in ktls_ocf_tls13_gcm_encrypt()
|
| /f-stack/dpdk/doc/guides/prog_guide/ |
| H A D | ipsec_lib.rst | 72 - remove ESP header and trailer, padding, IV and ICV data 79 - add ESP header and trailer, padding and IV data 104 - remove ESP header and trailer, padding, IV and ICV data 111 - add ESP header and trailer, padding and IV data
|
| H A D | rte_security.rst | 89 | | ESP | | <------ Add ESP header without trailer to packet 90 | | | | <------ Mark packet to be offloaded, add trailer
|
| /f-stack/freebsd/sys/ |
| H A D | ktls.h | 187 const struct tls_record_layer *hdr, uint8_t *trailer,
|
| /f-stack/freebsd/netinet/ |
| H A D | sctp_auth.h | 186 struct mbuf *m, uint32_t m_offset, uint8_t *digest, uint32_t trailer);
|
| H A D | sctp_auth.c | 976 struct mbuf *m, uint32_t m_offset, uint8_t *digest, uint32_t trailer) in sctp_hmac_m() argument 1029 if ((SCTP_BUF_NEXT(m_tmp) == NULL) && trailer) { in sctp_hmac_m() 1031 SCTP_BUF_LEN(m_tmp) - (trailer + m_offset)); in sctp_hmac_m()
|
| /f-stack/freebsd/contrib/zlib/doc/ |
| H A D | rfc1952.txt | 76 2.3.1. Member header and trailer ........................... 6 287 2.3.1. Member header and trailer 475 trailer; in particular, a decompressor may ignore FTEXT and OS
|
| /f-stack/freebsd/contrib/xz-embedded/linux/Documentation/ |
| H A D | xz.txt | 49 dictionary. It will also append a four-byte trailer containing the
|
| /f-stack/freebsd/contrib/zlib/ |
| H A D | FAQ | 143 applications, and has a much more compact header and trailer and uses a
|
| /f-stack/app/nginx-1.16.1/ |
| H A D | CHANGES.ru | 3607 "memcached sent invalid trailer".
|
| H A D | CHANGES | 3541 "memcached sent invalid trailer".
|