@@ -2426,7 +2426,7 @@ pub fn i8x16_popcnt(v: v128) -> v128 {
2426
2426
#[ stable( feature = "wasm_simd" , since = "1.54.0" ) ]
2427
2427
pub use i8x16_popcnt as u8x16_popcnt;
2428
2428
2429
- /// Returns true if all lanes are nonzero or false if any lane is nonzero .
2429
+ /// Returns true if all lanes are non-zero, false otherwise .
2430
2430
#[ inline]
2431
2431
#[ cfg_attr( test, assert_instr( i8x16. all_true) ) ]
2432
2432
#[ target_feature( enable = "simd128" ) ]
@@ -2720,7 +2720,7 @@ pub fn i16x8_q15mulr_sat(a: v128, b: v128) -> v128 {
2720
2720
unsafe { llvm_q15mulr ( a. as_i16x8 ( ) , b. as_i16x8 ( ) ) . v128 ( ) }
2721
2721
}
2722
2722
2723
- /// Returns 1 if all lanes are nonzero or 0 if any lane is nonzero .
2723
+ /// Returns true if all lanes are non-zero, false otherwise .
2724
2724
#[ inline]
2725
2725
#[ cfg_attr( test, assert_instr( i16x8. all_true) ) ]
2726
2726
#[ target_feature( enable = "simd128" ) ]
@@ -3150,7 +3150,7 @@ pub fn i32x4_neg(a: v128) -> v128 {
3150
3150
unsafe { simd_mul ( a. as_i32x4 ( ) , simd:: i32x4:: splat ( -1 ) ) . v128 ( ) }
3151
3151
}
3152
3152
3153
- /// Returns 1 if all lanes are nonzero or 0 if any lane is nonzero .
3153
+ /// Returns true if all lanes are non-zero, false otherwise .
3154
3154
#[ inline]
3155
3155
#[ cfg_attr( test, assert_instr( i32x4. all_true) ) ]
3156
3156
#[ target_feature( enable = "simd128" ) ]
@@ -3484,7 +3484,7 @@ pub fn i64x2_neg(a: v128) -> v128 {
3484
3484
unsafe { simd_mul ( a. as_i64x2 ( ) , simd:: i64x2:: splat ( -1 ) ) . v128 ( ) }
3485
3485
}
3486
3486
3487
- /// Returns 1 if all lanes are nonzero or 0 if any lane is nonzero .
3487
+ /// Returns true if all lanes are non-zero, false otherwise .
3488
3488
#[ inline]
3489
3489
#[ cfg_attr( test, assert_instr( i64x2. all_true) ) ]
3490
3490
#[ target_feature( enable = "simd128" ) ]
0 commit comments