14 references to _table
Microsoft.ML.Tokenizers (14)
Utils\DoubleArrayTrie.cs (14)
431
_table
.Resize(InitialTableSize, 0);
444
int tableSize =
_table
.Size << 1;
445
_table
.Clear();
446
_table
.Resize(tableSize, 0);
454
_table
[(int)hashId] = id;
502
hashId = (uint)(HashNode(nodeId) %
_table
.Size);
503
for (; ; hashId = (uint)((hashId + 1) %
_table
.Size))
505
uint unitId =
_table
[(int)hashId];
538
hashId = (uint)(HashUnit(id) %
_table
.Size);
539
for (; ; hashId = (uint)((hashId + 1) %
_table
.Size))
541
uint unitId =
_table
[(int)hashId];
558
if (_numStates >=
_table
.Size - (
_table
.Size >> 2))
590
_table
[(int)hashId] = matchId;