Lines Matching refs:arbitrary
15 use arbitrary::{Arbitrary, Result, Unstructured};
291 fn arbitrary(u: &mut arbitrary::Unstructured<'a>) -> arbitrary::Result<Self> { in arbitrary() method
306 fn arbitrary(u: &mut Unstructured<'_>) -> Result<Self> { in arbitrary() method
312 let base = if u.arbitrary()? { in arbitrary()
313 i32::from(u.arbitrary::<i8>()?) in arbitrary()
315 u.arbitrary::<i32>()? in arbitrary()
325 fn arbitrary(u: &mut Unstructured<'_>) -> Result<Self> { in arbitrary() method
328 simm32: AmodeOffset::arbitrary(u)?, in arbitrary()
335 fn arbitrary(_: &mut Unstructured<'_>) -> Result<Self> { in arbitrary() method
341 fn arbitrary(u: &mut Unstructured<'_>) -> Result<Self> { in arbitrary() method
350 fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self> { in arbitrary() method
355 fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self> { in arbitrary() method
396 let inst: Inst<FuzzRegs> = u.arbitrary()?; in smoke()