Searched refs:heap_bytes (Results 1 - 10 of 10) sorted by relevance
/third_party/rust/crates/aho-corasick/src/packed/ |
H A D | api.rs | 572 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 D | rabinkarp.rs | 135 pub fn heap_bytes(&self) -> usize { in heap_bytes() functions
|
H A D | pattern.rs | 120 pub fn heap_bytes(&self) -> usize { in heap_bytes() functions
|
/third_party/rust/crates/aho-corasick/src/ |
H A D | prefilter.rs | 71 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 D | nfa.rs | 60 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 D | dfa.rs | 34 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 D | ahocorasick.rs | 43 /// [`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 D | mod.rs | 58 pub fn heap_bytes(&self) -> usize { in heap_bytes() functions
|
H A D | runtime.rs | 190 pub fn heap_bytes(&self) -> usize { in heap_bytes() functions
|
/third_party/rust/crates/aho-corasick/aho-corasick-debug/ |
H A D | main.rs | 28 eprintln!("automaton heap usage: {} bytes", ac.heap_bytes()); in try_main()
|
Completed in 10 milliseconds