7 references to ILEmitTrieJumpTable
Microsoft.AspNetCore.Routing (1)
Matching\JumpTableBuilder.cs (1)
96? new ILEmitTrieJumpTable(defaultDestination, exitDestination, pathEntries, vectorize: null, fallback)
Microsoft.AspNetCore.Routing.Microbenchmarks (4)
Matching\JumpTableMultipleEntryBenchmark.cs (2)
49_trie = new ILEmitTrieJumpTable(0, -1, entries.ToArray(), vectorize: false, _dictionary); 50_vectorTrie = new ILEmitTrieJumpTable(0, -1, entries.ToArray(), vectorize: true, _dictionary);
Matching\JumpTableSingleEntryBenchmark.cs (2)
22_trie = new ILEmitTrieJumpTable(0, -1, new[] { ("hello-world", 1), }, vectorize: false, _default); 23_vectorTrie = new ILEmitTrieJumpTable(0, -1, new[] { ("hello-world", 1), }, vectorize: true, _default);
Microsoft.AspNetCore.Routing.Tests (2)
Matching\ILEmitTrieJumpTableTest.cs (2)
21var table = new ILEmitTrieJumpTable(defaultDestination, exitDestination, entries, Vectorize, fallback); 30var table = new ILEmitTrieJumpTable(0, -1, new[] { ("hi", 1), }, Vectorize, Mock.Of<JumpTable>());