196 lines
9.2 KiB
Plaintext
196 lines
9.2 KiB
Plaintext
error: found a count of bytes instead of a count of elements of `T`
|
|
--> $DIR/size_of_in_element_count.rs:18:68
|
|
|
|
|
LL | unsafe { copy_nonoverlapping::<u8>(x.as_ptr(), y.as_mut_ptr(), size_of::<u8>()) };
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
= note: `-D clippy::size-of-in-element-count` implied by `-D warnings`
|
|
= help: use a count of elements instead of a count of bytes, it already gets multiplied by the size of the type
|
|
|
|
error: found a count of bytes instead of a count of elements of `T`
|
|
--> $DIR/size_of_in_element_count.rs:19:62
|
|
|
|
|
LL | unsafe { copy_nonoverlapping(x.as_ptr(), y.as_mut_ptr(), size_of_val(&x[0])) };
|
|
| ^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= help: use a count of elements instead of a count of bytes, it already gets multiplied by the size of the type
|
|
|
|
error: found a count of bytes instead of a count of elements of `T`
|
|
--> $DIR/size_of_in_element_count.rs:21:49
|
|
|
|
|
LL | unsafe { x.as_ptr().copy_to(y.as_mut_ptr(), size_of::<u8>()) };
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
= help: use a count of elements instead of a count of bytes, it already gets multiplied by the size of the type
|
|
|
|
error: found a count of bytes instead of a count of elements of `T`
|
|
--> $DIR/size_of_in_element_count.rs:22:64
|
|
|
|
|
LL | unsafe { x.as_ptr().copy_to_nonoverlapping(y.as_mut_ptr(), size_of::<u8>()) };
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
= help: use a count of elements instead of a count of bytes, it already gets multiplied by the size of the type
|
|
|
|
error: found a count of bytes instead of a count of elements of `T`
|
|
--> $DIR/size_of_in_element_count.rs:23:51
|
|
|
|
|
LL | unsafe { y.as_mut_ptr().copy_from(x.as_ptr(), size_of::<u8>()) };
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
= help: use a count of elements instead of a count of bytes, it already gets multiplied by the size of the type
|
|
|
|
error: found a count of bytes instead of a count of elements of `T`
|
|
--> $DIR/size_of_in_element_count.rs:24:66
|
|
|
|
|
LL | unsafe { y.as_mut_ptr().copy_from_nonoverlapping(x.as_ptr(), size_of::<u8>()) };
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
= help: use a count of elements instead of a count of bytes, it already gets multiplied by the size of the type
|
|
|
|
error: found a count of bytes instead of a count of elements of `T`
|
|
--> $DIR/size_of_in_element_count.rs:26:47
|
|
|
|
|
LL | unsafe { copy(x.as_ptr(), y.as_mut_ptr(), size_of::<u8>()) };
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
= help: use a count of elements instead of a count of bytes, it already gets multiplied by the size of the type
|
|
|
|
error: found a count of bytes instead of a count of elements of `T`
|
|
--> $DIR/size_of_in_element_count.rs:27:47
|
|
|
|
|
LL | unsafe { copy(x.as_ptr(), y.as_mut_ptr(), size_of_val(&x[0])) };
|
|
| ^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= help: use a count of elements instead of a count of bytes, it already gets multiplied by the size of the type
|
|
|
|
error: found a count of bytes instead of a count of elements of `T`
|
|
--> $DIR/size_of_in_element_count.rs:29:46
|
|
|
|
|
LL | unsafe { y.as_mut_ptr().write_bytes(0u8, size_of::<u8>() * SIZE) };
|
|
| ^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= help: use a count of elements instead of a count of bytes, it already gets multiplied by the size of the type
|
|
|
|
error: found a count of bytes instead of a count of elements of `T`
|
|
--> $DIR/size_of_in_element_count.rs:30:47
|
|
|
|
|
LL | unsafe { write_bytes(y.as_mut_ptr(), 0u8, size_of::<u8>() * SIZE) };
|
|
| ^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= help: use a count of elements instead of a count of bytes, it already gets multiplied by the size of the type
|
|
|
|
error: found a count of bytes instead of a count of elements of `T`
|
|
--> $DIR/size_of_in_element_count.rs:32:66
|
|
|
|
|
LL | unsafe { swap_nonoverlapping(y.as_mut_ptr(), x.as_mut_ptr(), size_of::<u8>() * SIZE) };
|
|
| ^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= help: use a count of elements instead of a count of bytes, it already gets multiplied by the size of the type
|
|
|
|
error: found a count of bytes instead of a count of elements of `T`
|
|
--> $DIR/size_of_in_element_count.rs:34:46
|
|
|
|
|
LL | slice_from_raw_parts_mut(y.as_mut_ptr(), size_of::<u8>() * SIZE);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= help: use a count of elements instead of a count of bytes, it already gets multiplied by the size of the type
|
|
|
|
error: found a count of bytes instead of a count of elements of `T`
|
|
--> $DIR/size_of_in_element_count.rs:35:38
|
|
|
|
|
LL | slice_from_raw_parts(y.as_ptr(), size_of::<u8>() * SIZE);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= help: use a count of elements instead of a count of bytes, it already gets multiplied by the size of the type
|
|
|
|
error: found a count of bytes instead of a count of elements of `T`
|
|
--> $DIR/size_of_in_element_count.rs:37:49
|
|
|
|
|
LL | unsafe { from_raw_parts_mut(y.as_mut_ptr(), size_of::<u8>() * SIZE) };
|
|
| ^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= help: use a count of elements instead of a count of bytes, it already gets multiplied by the size of the type
|
|
|
|
error: found a count of bytes instead of a count of elements of `T`
|
|
--> $DIR/size_of_in_element_count.rs:38:41
|
|
|
|
|
LL | unsafe { from_raw_parts(y.as_ptr(), size_of::<u8>() * SIZE) };
|
|
| ^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= help: use a count of elements instead of a count of bytes, it already gets multiplied by the size of the type
|
|
|
|
error: found a count of bytes instead of a count of elements of `T`
|
|
--> $DIR/size_of_in_element_count.rs:40:33
|
|
|
|
|
LL | unsafe { y.as_mut_ptr().sub(size_of::<u8>()) };
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
= help: use a count of elements instead of a count of bytes, it already gets multiplied by the size of the type
|
|
|
|
error: found a count of bytes instead of a count of elements of `T`
|
|
--> $DIR/size_of_in_element_count.rs:41:29
|
|
|
|
|
LL | y.as_ptr().wrapping_sub(size_of::<u8>());
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
= help: use a count of elements instead of a count of bytes, it already gets multiplied by the size of the type
|
|
|
|
error: found a count of bytes instead of a count of elements of `T`
|
|
--> $DIR/size_of_in_element_count.rs:42:29
|
|
|
|
|
LL | unsafe { y.as_ptr().add(size_of::<u8>()) };
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
= help: use a count of elements instead of a count of bytes, it already gets multiplied by the size of the type
|
|
|
|
error: found a count of bytes instead of a count of elements of `T`
|
|
--> $DIR/size_of_in_element_count.rs:43:33
|
|
|
|
|
LL | y.as_mut_ptr().wrapping_add(size_of::<u8>());
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
= help: use a count of elements instead of a count of bytes, it already gets multiplied by the size of the type
|
|
|
|
error: found a count of bytes instead of a count of elements of `T`
|
|
--> $DIR/size_of_in_element_count.rs:44:32
|
|
|
|
|
LL | unsafe { y.as_ptr().offset(size_of::<u8>() as isize) };
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= help: use a count of elements instead of a count of bytes, it already gets multiplied by the size of the type
|
|
|
|
error: found a count of bytes instead of a count of elements of `T`
|
|
--> $DIR/size_of_in_element_count.rs:45:36
|
|
|
|
|
LL | y.as_mut_ptr().wrapping_offset(size_of::<u8>() as isize);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= help: use a count of elements instead of a count of bytes, it already gets multiplied by the size of the type
|
|
|
|
error: found a count of bytes instead of a count of elements of `T`
|
|
--> $DIR/size_of_in_element_count.rs:48:62
|
|
|
|
|
LL | unsafe { copy_nonoverlapping(x.as_ptr(), y.as_mut_ptr(), size_of::<u8>() * SIZE) };
|
|
| ^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= help: use a count of elements instead of a count of bytes, it already gets multiplied by the size of the type
|
|
|
|
error: found a count of bytes instead of a count of elements of `T`
|
|
--> $DIR/size_of_in_element_count.rs:51:62
|
|
|
|
|
LL | unsafe { copy_nonoverlapping(x.as_ptr(), y.as_mut_ptr(), HALF_SIZE * size_of_val(&x[0]) * 2) };
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= help: use a count of elements instead of a count of bytes, it already gets multiplied by the size of the type
|
|
|
|
error: found a count of bytes instead of a count of elements of `T`
|
|
--> $DIR/size_of_in_element_count.rs:54:47
|
|
|
|
|
LL | unsafe { copy(x.as_ptr(), y.as_mut_ptr(), DOUBLE_SIZE * size_of::<u8>() / 2) };
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= help: use a count of elements instead of a count of bytes, it already gets multiplied by the size of the type
|
|
|
|
error: aborting due to 24 previous errors
|
|
|