Home
last modified time | relevance | path

Searched refs:read_ahead (Results 1 – 22 of 22) sorted by relevance

/freebsd/contrib/xz/src/liblzma/lzma/
H A Dlzma2_encoder.c179 limit = mf->read_pos - mf->read_ahead in lzma2_encode()
185 const uint32_t read_start = mf->read_pos - mf->read_ahead; in lzma2_encode()
193 coder->uncompressed_size += mf->read_pos - mf->read_ahead in lzma2_encode()
206 coder->uncompressed_size += mf->read_ahead; in lzma2_encode()
209 mf->read_ahead = 0; in lzma2_encode()
/freebsd/crypto/openssl/ssl/record/
H A Drecord.h96 int read_ahead; member
134 #define RECORD_LAYER_set_read_ahead(rl, ra) ((rl)->read_ahead = (ra))
135 #define RECORD_LAYER_get_read_ahead(rl) ((rl)->read_ahead)
H A Drec_layer_s3.c1297 &s->rlayer.read_ahead); in ssl_set_new_record_layer()
/freebsd/crypto/openssl/doc/man3/
H A DSSL_CTX_set_split_send_fragment.pod58 automatically turn on "read_ahead" (see L<SSL_CTX_set_read_ahead(3)>). This is
92 above when setting B<max_pipelines> to a value greater than one, B<read_ahead>
93 is automatically set. The B<read_ahead> parameter causes OpenSSL to attempt to
98 connection. Setting B<read_ahead> can impact the behaviour of the SSL_pending()
H A DSSL_CTX_set_read_ahead.pod44 B<read_ahead> can impact the behaviour of the SSL_pending() function
H A DSSL_pending.pod24 If the B<SSL> object's I<read_ahead> flag is set (see
H A DSSL_new.pod80 =item the read_ahead value set via L<SSL_set_read_ahead(3)>
/freebsd/contrib/libarchive/libarchive/
H A Darchive_read_support_format_rar5.c901 static int read_ahead(struct archive_read* a, size_t how_many, in read_ahead() function
954 if(!read_ahead(a, 8, &p)) in read_var()
1109 if(!read_ahead(a, 4, &p)) in read_u32()
1118 if(!read_ahead(a, 8, &p)) in read_u64()
1131 if(!read_ahead(a, sizeof(rar5_signature_xor), &p)) in bid_standard()
1287 if(!read_ahead(a, hash_size, &p)) in parse_file_extra_hash()
1502 if(!read_ahead(a, target_size, &p)) in parse_file_extra_redir()
1559 if(!read_ahead(a, name_size, &p)) in parse_file_extra_owner()
1580 if(!read_ahead(a, name_size, &p)) in parse_file_extra_owner()
1998 if(!read_ahead(a, name_size, &p)) in process_head_file()
[all …]
/freebsd/sys/cam/ata/
H A Data_da.c266 int read_ahead; member
913 #define ADA_RA (softc->read_ahead >= 0 ? \
914 softc->read_ahead : ada_read_ahead)
940 SYSCTL_INT(_kern_cam_ada, OID_AUTO, read_ahead, CTLFLAG_RWTUN,
1525 &softc->read_ahead, 0, "Enable disk read ahead."); in adasysctlinit()
1864 softc->read_ahead = -1; in adaregister()
1867 TUNABLE_INT_FETCH(announce_buf, &softc->read_ahead); in adaregister()
/freebsd/sys/vm/
H A Dvm_map.h113 uint8_t read_ahead; /* pages in the read-ahead window */
411 * account for the map entry's "read_ahead" field being defined as an uint8_t.
114 uint8_t read_ahead; /* pages in the read-ahead window */ global() member
H A Dvm_fault.c880 era = fs->entry->read_ahead; in vm_fault_readahead()
915 fs->entry->read_ahead = nera; in vm_fault_readahead()
H A Dvm_map.c1819 new_entry->read_ahead = VM_FAULT_READ_AHEAD_INIT; in vm_map_insert1()
/freebsd/crypto/openssl/ssl/record/methods/
H A Drecmethod_local.h280 int read_ahead; member
H A Dktls_meth.c437 (*retrl)->read_ahead = 1; in ktls_new_record_layer()
H A Dtls_common.c383 if (!rl->read_ahead && !rl->isdtls) { in tls_default_read_n()
1244 if (p != NULL && !OSSL_PARAM_get_int(p, &rl->read_ahead)) { in tls_set_options()
2033 rl->read_ahead = 1; in tls_set_max_pipelines()
/freebsd/contrib/xz/src/liblzma/lz/
H A Dlz_encoder.c397 mf->read_ahead = 0; in lz_encoder_init()
/freebsd/crypto/openssl/ssl/
H A Dssl_lib.c787 RECORD_LAYER_set_read_ahead(&s->rlayer, ctx->read_ahead); in ossl_ssl_connection_new_int()
1902 &sc->rlayer.read_ahead); in SSL_set_read_ahead()
3109 return ctx->read_ahead; in SSL_CTX_ctrl()
3111 l = ctx->read_ahead; in SSL_CTX_ctrl()
3112 ctx->read_ahead = larg; in SSL_CTX_ctrl()
H A Dssl_local.h930 int read_ahead; member
/freebsd/sys/dev/mfi/
H A Dmfireg.h771 uint8_t read_ahead; member
/freebsd/contrib/libarchive/
H A DNEWS333 Oct 19, 2008: Internal read_ahead change: short reads are now an error
/freebsd/crypto/openssl/test/
H A Dsslapitest.c970 int read_ahead) in execute_test_large_message() argument
994 if (read_ahead) { in execute_test_large_message()
/freebsd/crypto/openssl/
H A DCHANGES.md17483 Copy SSL_CTX's read_ahead flag to SSL object directly in SSL_new