Lines Matching refs:vector
107 let vector = u128::from_le_bytes([ in arbitrary_of_type() localVariable
125 DiffValue::V128(vector) in arbitrary_of_type()
130 let vector: Vec<u8> = i16()? in arbitrary_of_type() localVariable
140 DiffValue::V128(u128::from_le_bytes(vector.try_into().unwrap())) in arbitrary_of_type()
145 let vector: Vec<u8> = i32()? in arbitrary_of_type() localVariable
151 DiffValue::V128(u128::from_le_bytes(vector.try_into().unwrap())) in arbitrary_of_type()
156 let vector: Vec<u8> = i64()?.into_iter().chain(i64()?).collect(); in arbitrary_of_type() localVariable
157 DiffValue::V128(u128::from_le_bytes(vector.try_into().unwrap())) in arbitrary_of_type()
166 let vector: Vec<u8> = f32()? in arbitrary_of_type() localVariable
172 DiffValue::V128(u128::from_le_bytes(vector.try_into().unwrap())) in arbitrary_of_type()
181 let vector: Vec<u8> = f64()?.into_iter().chain(f64()?).collect(); in arbitrary_of_type() localVariable
182 DiffValue::V128(u128::from_le_bytes(vector.try_into().unwrap())) in arbitrary_of_type()