Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3974,7 +3974,7 @@ internal static int NonPackedIndexOfAnyInRangeUnsignedNumber<T, TNegator>(ref T
return ComputeFirstIndex(ref searchSpace, ref current, inRangeVector);
}

current = ref Unsafe.Add(ref current, Vector256<T>.Count);
current = ref Unsafe.Add(ref current, Vector512<T>.Count);
}
while (Unsafe.IsAddressLessThan(ref current, ref oneVectorAwayFromEnd));

Expand Down
Loading