3 instantiations of AsciiState
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\SearchValues\IndexOfAnyAsciiSearcher.cs (3)
23
new
AsciiState
(~Bitmap._lower, Lookup.CreateInverse());
95
state = new
AsciiState
(bitmapSpace, lookupLocal);
168
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)
22
public readonly
AsciiState
CreateInverse() =>
73
internal static unsafe void ComputeAsciiState<T>(ReadOnlySpan<T> values, out
AsciiState
state)
140
public static void ComputeUniqueLowNibbleState<T>(ReadOnlySpan<T> values, out
AsciiState
state)
215
AsciiState
state = default;
242
AsciiState
state = default;
265
public static bool ContainsAny<TNegator, TOptimizations, TUniqueLowNibble>(ref short searchSpace, int searchSpaceLength, ref
AsciiState
state)
275
public static int IndexOfAny<TNegator, TOptimizations, TUniqueLowNibble>(ref short searchSpace, int searchSpaceLength, ref
AsciiState
state)
284
private static TResult IndexOfAnyCore<TResult, TNegator, TOptimizations, TUniqueLowNibble, TResultMapper>(ref short searchSpace, int searchSpaceLength, ref
AsciiState
state)
422
public static int LastIndexOfAny<TNegator, TOptimizations, TUniqueLowNibble>(ref short searchSpace, int searchSpaceLength, ref
AsciiState
state)
553
public static bool ContainsAny<TNegator, TUniqueLowNibble>(ref byte searchSpace, int searchSpaceLength, ref
AsciiState
state)
562
public static int IndexOfAny<TNegator, TUniqueLowNibble>(ref byte searchSpace, int searchSpaceLength, ref
AsciiState
state)
570
private static TResult IndexOfAnyCore<TResult, TNegator, TUniqueLowNibble, TResultMapper>(ref byte searchSpace, int searchSpaceLength, ref
AsciiState
state)
701
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;