7 instantiations of ILEmitTrieJumpTable
Microsoft.AspNetCore.Routing (1)
Microsoft.AspNetCore.Routing.Microbenchmarks (4)
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>());
2 references to ILEmitTrieJumpTable
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>());