8 instantiations of BitHelper
Text.Analyzers (8)
src\Dependencies\Collections\Segmented\SegmentedHashSet`1.cs (8)
1181
? new
BitHelper
(span.Slice(0, intArrayLength), clear: true)
1182
: new
BitHelper
(new int[intArrayLength], clear: false);
1249
? new
BitHelper
(itemsToRemoveSpan.Slice(0, intArrayLength), clear: true)
1250
: new
BitHelper
(new int[intArrayLength], clear: false);
1254
? new
BitHelper
(itemsAddedFromOtherSpan.Slice(0, intArrayLength), clear: true)
1255
: new
BitHelper
(new int[intArrayLength], clear: false);
1336
? new
BitHelper
(span.Slice(0, intArrayLength), clear: true)
1337
: new
BitHelper
(new int[intArrayLength], clear: false);
7 references to BitHelper
Text.Analyzers (7)
src\Dependencies\Collections\Segmented\SegmentedHashSet`1.cs (7)
1177
int intArrayLength =
BitHelper
.ToIntArrayLength(originalCount);
1180
var
bitHelper = intArrayLength <= StackAllocThreshold
1245
int intArrayLength =
BitHelper
.ToIntArrayLength(originalCount);
1248
var
itemsToRemove = intArrayLength <= StackAllocThreshold / 2
1253
var
itemsAddedFromOther = intArrayLength <= StackAllocThreshold / 2
1332
int intArrayLength =
BitHelper
.ToIntArrayLength(originalCount);
1335
var
bitHelper = intArrayLength <= StackAllocThreshold