Home
last modified time | relevance | path

Searched refs:heap_bytes (Results 1 – 11 of 11) sorted by relevance

/third_party/rust/crates/aho-corasick/src/
Dprefilter.rs71 fn heap_bytes(&self) -> usize; in heap_bytes() method
111 fn heap_bytes(&self) -> usize { in heap_bytes() method
112 (**self).heap_bytes() in heap_bytes()
378 fn heap_bytes(&self) -> usize { in heap_bytes() method
379 self.0.heap_bytes() in heap_bytes()
686 fn heap_bytes(&self) -> usize { in heap_bytes() method
747 fn heap_bytes(&self) -> usize { in heap_bytes() method
787 fn heap_bytes(&self) -> usize { in heap_bytes() method
930 fn heap_bytes(&self) -> usize { in heap_bytes() method
958 fn heap_bytes(&self) -> usize { in heap_bytes() method
[all …]
Dnfa.rs60 heap_bytes: usize, field
107 pub fn heap_bytes(&self) -> usize { in heap_bytes() method
108 self.heap_bytes in heap_bytes()
109 + self.prefilter.as_ref().map_or(0, |p| p.as_ref().heap_bytes()) in heap_bytes()
303 fn heap_bytes(&self) -> usize { in heap_bytes() method
304 self.trans.heap_bytes() in heap_bytes()
385 fn heap_bytes(&self) -> usize { in heap_bytes() method
619 heap_bytes: 0, in new()
1016 size += size_of::<State<S>>() + state.heap_bytes(); in calculate_size()
1018 self.nfa.heap_bytes = size; in calculate_size()
Ddfa.rs34 pub fn heap_bytes(&self) -> usize { in heap_bytes() method
35 self.repr().heap_bytes in heap_bytes()
414 heap_bytes: usize, field
600 size += self.prefilter.as_ref().map_or(0, |p| p.as_ref().heap_bytes()); in calculate_size()
601 self.heap_bytes = size; in calculate_size()
641 heap_bytes: 0, in build()
Dahocorasick.rs1012 pub fn heap_bytes(&self) -> usize { in heap_bytes() method
1014 Imp::NFA(ref nfa) => nfa.heap_bytes(), in heap_bytes()
1015 Imp::DFA(ref dfa) => dfa.heap_bytes(), in heap_bytes()
/third_party/rust/crates/aho-corasick/src/packed/
Dapi.rs572 pub fn heap_bytes(&self) -> usize { in heap_bytes() method
573 self.patterns.heap_bytes() in heap_bytes()
574 + self.rabinkarp.heap_bytes() in heap_bytes()
575 + self.search_kind.heap_bytes() in heap_bytes()
590 fn heap_bytes(&self) -> usize { in heap_bytes() method
592 SearchKind::Teddy(ref ted) => ted.heap_bytes(), in heap_bytes()
Drabinkarp.rs135 pub fn heap_bytes(&self) -> usize { in heap_bytes() method
Dpattern.rs120 pub fn heap_bytes(&self) -> usize { in heap_bytes() method
/third_party/rust/crates/aho-corasick/src/packed/teddy/
Dmod.rs58 pub fn heap_bytes(&self) -> usize { in heap_bytes() method
Druntime.rs190 pub fn heap_bytes(&self) -> usize { in heap_bytes() method
/third_party/rust/crates/regex/src/literal/
Dimp.rs165 AC { ref ac, .. } => ac.heap_bytes(), in approximate_size()
166 Packed { ref s, .. } => s.heap_bytes(), in approximate_size()
/third_party/rust/crates/aho-corasick/aho-corasick-debug/
Dmain.rs28 eprintln!("automaton heap usage: {} bytes", ac.heap_bytes()); in try_main()