Home
last modified time | relevance | path

Searched defs:DecodeEstimate (Results 1 – 4 of 4) sorted by relevance

/aosp_15_r20/external/rust/android-crates-io/crates/base64/src/engine/
Dmod.rs43 type DecodeEstimate: DecodeEstimate; typedef
66 fn internal_decoded_len_estimate(&self, input_len: usize) -> Self::DecodeEstimate; in internal_decoded_len_estimate()
91 decode_estimate: Self::DecodeEstimate, in internal_decode()
439 pub trait DecodeEstimate { interface
Dnaive.rs43 type DecodeEstimate = NaiveEstimate; typedef
105 fn internal_decoded_len_estimate(&self, input_len: usize) -> Self::DecodeEstimate { in internal_decoded_len_estimate()
113 estimate: Self::DecodeEstimate, in internal_decode()
Dtests.rs1463 type DecodeEstimate = E::DecodeEstimate; typedef
1469 fn internal_decoded_len_estimate(&self, input_len: usize) -> Self::DecodeEstimate { in internal_decoded_len_estimate()
1477 decode_estimate: Self::DecodeEstimate, in internal_decode()
/aosp_15_r20/external/rust/android-crates-io/crates/base64/src/engine/general_purpose/
Dmod.rs46 type DecodeEstimate = GeneralPurposeEstimate; typedef
167 fn internal_decoded_len_estimate(&self, input_len: usize) -> Self::DecodeEstimate { in internal_decoded_len_estimate()
175 estimate: Self::DecodeEstimate, in internal_decode()