Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.
/ corefx Public archive

Commit

Permalink
Fixing the names/parameter types for several Bmi1 HWIntrinsic methods
Browse files Browse the repository at this point in the history
  • Loading branch information
tannergooding committed Jun 30, 2018
1 parent 2f41411 commit 95b2163
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -793,14 +793,14 @@ public static class Bmi1
public static bool IsSupported { get { throw null; } }
public static uint AndNot(uint left, uint right) { throw null; }
public static ulong AndNot(ulong left, ulong right) { throw null; }
public static uint BitFieldExtract(uint value, uint start, uint length) { throw null; }
public static ulong BitFieldExtract(ulong value, ulong start, ulong length) { throw null; }
public static uint BitFieldExtract(uint value, uint control) { throw null; }
public static ulong BitFieldExtract(ulong value, ulong control) { throw null; }
public static uint BitFieldExtract(uint value, byte start, byte length) { throw null; }
public static ulong BitFieldExtract(ulong value, byte start, byte length) { throw null; }
public static uint BitFieldExtract(uint value, ushort control) { throw null; }
public static ulong BitFieldExtract(ulong value, ushort control) { throw null; }
public static uint ExtractLowestSetBit(uint value) { throw null; }
public static ulong ExtractLowestSetBit(ulong value) { throw null; }
public static uint GetMaskUptoLowestSetBit(uint value) { throw null; }
public static ulong GetMaskUptoLowestSetBit(ulong value) { throw null; }
public static uint GetMaskUpToLowestSetBit(uint value) { throw null; }
public static ulong GetMaskUpToLowestSetBit(ulong value) { throw null; }
public static uint ResetLowestSetBit(uint value) { throw null; }
public static ulong ResetLowestSetBit(ulong value) { throw null; }
public static uint TrailingZeroCount(uint value) { throw null; }
Expand Down

0 comments on commit 95b2163

Please sign in to comment.