_Issue automatically imported from old repo: https://github.com/EmbarkStudios/rust-gpu/issues/1093_ _Originally creatd by atynagano on 2023-09-21T11:51:47Z_ --- https://github.com/EmbarkStudios/rust-gpu/blob/e87c324bfda6bea144fe2635586281c4ef144f0d/crates/spirv-std/src/byte_addressable_buffer.rs#L73-L78 ```rust if byte_index + mem::size_of::<T>() as u32 > (mem::size_of::<u32> * self.data.len()) as u32 ``` Isn't the right-hand side multiplied by 4 because `data` is `&[u32]`?