Home
last modified time | relevance | path

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

/external/rust/crates/base64/src/engine/
Dmod.rs43 type DecodeEstimate: DecodeEstimate; typedef
70 fn internal_decoded_len_estimate(&self, input_len: usize) -> Self::DecodeEstimate; in internal_decoded_len_estimate()
101 decode_estimate: Self::DecodeEstimate, in internal_decode()
384 pub trait DecodeEstimate { trait
Dnaive.rs44 type DecodeEstimate = NaiveEstimate; typedef
106 fn internal_decoded_len_estimate(&self, input_len: usize) -> Self::DecodeEstimate { in internal_decoded_len_estimate()
114 estimate: Self::DecodeEstimate, in internal_decode()
/external/rust/crates/base64/src/engine/general_purpose/
Dmod.rs43 type DecodeEstimate = GeneralPurposeEstimate; typedef
164 fn internal_decoded_len_estimate(&self, input_len: usize) -> Self::DecodeEstimate { in internal_decoded_len_estimate()
172 estimate: Self::DecodeEstimate, in internal_decode()