Home
last modified time | relevance | path

Searched refs:heap_bytes (Results 1 - 10 of 10) sorted by relevance

/third_party/rust/crates/aho-corasick/src/packed/
H A Dapi.rs572 pub fn heap_bytes(&self) -> usize { in heap_bytes() functions
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() functions
592 SearchKind::Teddy(ref ted) => ted.heap_bytes(), in heap_bytes()
H A Drabinkarp.rs135 pub fn heap_bytes(&self) -> usize { in heap_bytes() functions
H A Dpattern.rs120 pub fn heap_bytes(&self) -> usize { in heap_bytes() functions
/third_party/rust/crates/aho-corasick/src/
H A Dprefilter.rs71 fn heap_bytes(&self) -> usize; in heap_bytes() functions
111 fn heap_bytes(&self) -> usize { in heap_bytes() functions
112 (**self).heap_bytes() in heap_bytes()
378 fn heap_bytes(&self) -> usize { in heap_bytes() functions
379 self.0.heap_bytes() in heap_bytes()
686 fn heap_bytes(&self) -> usize { in heap_bytes() functions
747 fn heap_bytes(&self) -> usize { in heap_bytes() functions
787 fn heap_bytes(&self) -> usize { in heap_bytes() functions
930 fn heap_bytes(&self) -> usize { in heap_bytes() functions
958 fn heap_bytes( functions
987 fn heap_bytes(&self) -> usize { heap_bytes() functions
[all...]
H A Dnfa.rs60 heap_bytes: usize,
107 pub fn heap_bytes(&self) -> usize { in heap_bytes() functions
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() functions
304 self.trans.heap_bytes() in heap_bytes()
385 fn heap_bytes(&self) -> usize { in heap_bytes() functions
619 heap_bytes: 0, in new()
1016 size += size_of::<State<S>>() + state.heap_bytes(); in calculate_size()
1018 self.nfa.heap_bytes in calculate_size()
[all...]
H A Ddfa.rs34 pub fn heap_bytes(&self) -> usize { in heap_bytes() functions
35 self.repr().heap_bytes in heap_bytes()
414 heap_bytes: usize,
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()
H A Dahocorasick.rs43 /// [`AhoCorasick::heap_bytes`](struct.AhoCorasick.html#method.heap_bytes)
998 /// assert_eq!(10_336, ac.heap_bytes());
1004 /// assert_eq!(10_384, ac.heap_bytes());
1010 /// assert_eq!(1_248, ac.heap_bytes());
1012 pub fn heap_bytes(&self) -> usize { in heap_bytes() functions
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/teddy/
H A Dmod.rs58 pub fn heap_bytes(&self) -> usize { in heap_bytes() functions
H A Druntime.rs190 pub fn heap_bytes(&self) -> usize { in heap_bytes() functions
/third_party/rust/crates/aho-corasick/aho-corasick-debug/
H A Dmain.rs28 eprintln!("automaton heap usage: {} bytes", ac.heap_bytes()); in try_main()

Completed in 10 milliseconds