5 references to ShiftRightLogical
System.Private.CoreLib (5)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Buffers\Text\Base64Helper\Base64DecoderHelper.cs (1)
1304Vector128<ushort> odds = Vector128.ShiftRightLogical(u, 8);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Buffers\Text\Base64Helper\Base64EncoderHelper.cs (4)
505Vector128<ushort> odd = Vector128.ShiftRightLogical(AdvSimd.Arm64.UnzipOdd(t0.AsUInt16(), t0.AsUInt16()), 6); 506Vector128<ushort> even = Vector128.ShiftRightLogical(AdvSimd.Arm64.UnzipEven(t0.AsUInt16(), t0.AsUInt16()), 10); 512Vector128<ushort> shr6 = Vector128.ShiftRightLogical(t0.AsUInt16(), 6); 513Vector128<ushort> shr10 = Vector128.ShiftRightLogical(t0.AsUInt16(), 10);