3 instantiations of AsciiState
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\SearchValues\IndexOfAnyAsciiSearcher.cs (3)
24
new
AsciiState
(~Bitmap._lower, Lookup.CreateInverse());
97
state = new
AsciiState
(bitmapSpace, lookupLocal);
170
state = new
AsciiState
(valuesByLowNibble, lookup);
21 references to AsciiState
System.Private.CoreLib (21)
src\libraries\System.Private.CoreLib\src\System\SearchValues\Any2CharPackedIgnoreCaseSearchValues.cs (1)
19
private IndexOfAnyAsciiSearcher.
AsciiState
_state;
src\libraries\System.Private.CoreLib\src\System\SearchValues\AsciiByteSearchValues.cs (1)
17
private IndexOfAnyAsciiSearcher.
AsciiState
_state;
src\libraries\System.Private.CoreLib\src\System\SearchValues\AsciiCharSearchValues.cs (1)
18
private IndexOfAnyAsciiSearcher.
AsciiState
_state;
src\libraries\System.Private.CoreLib\src\System\SearchValues\IndexOfAnyAsciiSearcher.cs (13)
23
public readonly
AsciiState
CreateInverse() =>
75
internal static unsafe void ComputeAsciiState<T>(ReadOnlySpan<T> values, out
AsciiState
state)
142
public static void ComputeUniqueLowNibbleState<T>(ReadOnlySpan<T> values, out
AsciiState
state)
218
AsciiState
state = default;
245
AsciiState
state = default;
268
public static bool ContainsAny<TNegator, TOptimizations, TUniqueLowNibble>(ref short searchSpace, int searchSpaceLength, ref
AsciiState
state)
278
public static int IndexOfAny<TNegator, TOptimizations, TUniqueLowNibble>(ref short searchSpace, int searchSpaceLength, ref
AsciiState
state)
287
private static TResult IndexOfAnyCore<TResult, TNegator, TOptimizations, TUniqueLowNibble, TResultMapper>(ref short searchSpace, int searchSpaceLength, ref
AsciiState
state)
425
public static int LastIndexOfAny<TNegator, TOptimizations, TUniqueLowNibble>(ref short searchSpace, int searchSpaceLength, ref
AsciiState
state)
556
public static bool ContainsAny<TNegator, TUniqueLowNibble>(ref byte searchSpace, int searchSpaceLength, ref
AsciiState
state)
565
public static int IndexOfAny<TNegator, TUniqueLowNibble>(ref byte searchSpace, int searchSpaceLength, ref
AsciiState
state)
573
private static TResult IndexOfAnyCore<TResult, TNegator, TUniqueLowNibble, TResultMapper>(ref byte searchSpace, int searchSpaceLength, ref
AsciiState
state)
704
public static int LastIndexOfAny<TNegator, TUniqueLowNibble>(ref byte searchSpace, int searchSpaceLength, ref
AsciiState
state)
src\libraries\System.Private.CoreLib\src\System\SearchValues\ProbabilisticWithAsciiCharSearchValues.cs (2)
16
private IndexOfAnyAsciiSearcher.
AsciiState
_asciiState;
17
private IndexOfAnyAsciiSearcher.
AsciiState
_inverseAsciiState;
src\libraries\System.Private.CoreLib\src\System\SearchValues\Strings\Helpers\AhoCorasick.cs (2)
21
private readonly IndexOfAnyAsciiSearcher.
AsciiState
_startingAsciiChars;
23
public AhoCorasick(AhoCorasickNode[] nodes, IndexOfAnyAsciiSearcher.
AsciiState
startingAsciiChars)
src\libraries\System.Private.CoreLib\src\System\SearchValues\Strings\Helpers\AhoCorasickBuilder.cs (1)
20
private IndexOfAnyAsciiSearcher.
AsciiState
_startingAsciiChars;