Searched refs:heap_bytes (Results 1 – 11 of 11) sorted by relevance
/third_party/rust/crates/aho-corasick/src/ |
D | prefilter.rs | 71 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 …]
|
D | nfa.rs | 60 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()
|
D | dfa.rs | 34 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()
|
D | ahocorasick.rs | 1012 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/ |
D | api.rs | 572 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()
|
D | rabinkarp.rs | 135 pub fn heap_bytes(&self) -> usize { in heap_bytes() method
|
D | pattern.rs | 120 pub fn heap_bytes(&self) -> usize { in heap_bytes() method
|
/third_party/rust/crates/aho-corasick/src/packed/teddy/ |
D | mod.rs | 58 pub fn heap_bytes(&self) -> usize { in heap_bytes() method
|
D | runtime.rs | 190 pub fn heap_bytes(&self) -> usize { in heap_bytes() method
|
/third_party/rust/crates/regex/src/literal/ |
D | imp.rs | 165 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/ |
D | main.rs | 28 eprintln!("automaton heap usage: {} bytes", ac.heap_bytes()); in try_main()
|