Lines Matching full:bytes
4 /// The bytes to search.
6 /// Distinct bytes that never occur in the input.
8 /// Distinct bytes that occur very rarely (<0.1%).
10 /// Distinct bytes that are uncommon (~1%).
12 /// Distinct bytes that are common (~5%).
14 /// Distinct bytes that are very common (~10%).
16 /// Distinct bytes that are super common (>90%).
109 /// Return all of this input's "never" bytes only if there are at least
120 self.never(1).and_then(|bytes| Search1::new(self.corpus, bytes)) in never1()
124 self.never(2).and_then(|bytes| Search2::new(self.corpus, bytes)) in never2()
128 self.never(3).and_then(|bytes| Search3::new(self.corpus, bytes)) in never3()
131 /// Return all of this input's "rare" bytes only if there are at least
142 self.rare(1).and_then(|bytes| Search1::new(self.corpus, bytes)) in rare1()
146 self.rare(2).and_then(|bytes| Search2::new(self.corpus, bytes)) in rare2()
150 self.rare(3).and_then(|bytes| Search3::new(self.corpus, bytes)) in rare3()
153 /// Return all of this input's "uncommon" bytes only if there are at least
164 self.uncommon(1).and_then(|bytes| Search1::new(self.corpus, bytes)) in uncommon1()
168 self.uncommon(2).and_then(|bytes| Search2::new(self.corpus, bytes)) in uncommon2()
172 self.uncommon(3).and_then(|bytes| Search3::new(self.corpus, bytes)) in uncommon3()
175 /// Return all of this input's "common" bytes only if there are at least
186 self.common(1).and_then(|bytes| Search1::new(self.corpus, bytes)) in common1()
190 self.common(2).and_then(|bytes| Search2::new(self.corpus, bytes)) in common2()
194 self.common(3).and_then(|bytes| Search3::new(self.corpus, bytes)) in common3()
197 /// Return all of this input's "verycommon" bytes only if there are at
208 self.verycommon(1).and_then(|bytes| Search1::new(self.corpus, bytes)) in verycommon1()
212 self.verycommon(2).and_then(|bytes| Search2::new(self.corpus, bytes)) in verycommon2()
216 self.verycommon(3).and_then(|bytes| Search3::new(self.corpus, bytes)) in verycommon3()
219 /// Return all of this input's "supercommon" bytes only if there are at
230 self.supercommon(1).and_then(|bytes| Search1::new(self.corpus, bytes)) in supercommon1()
234 self.supercommon(2).and_then(|bytes| Search2::new(self.corpus, bytes)) in supercommon2()
238 self.supercommon(3).and_then(|bytes| Search3::new(self.corpus, bytes)) in supercommon3()
264 bytes: &[SearchByte], in new()
266 if bytes.len() < 1 { in new()
269 Some(Search1 { corpus, byte1: bytes[0] }) in new()
274 /// A description of a search for one of two particular bytes.
288 bytes: &[SearchByte], in new()
290 if bytes.len() < 2 { in new()
293 Some(Search2 { corpus, byte1: bytes[0], byte2: bytes[1] }) in new()
298 /// A description of a search for one of three particular bytes.
314 bytes: &[SearchByte], in new()
316 if bytes.len() < 3 { in new()
321 byte1: bytes[0], in new()
322 byte2: bytes[1], in new()
323 byte3: bytes[2], in new()