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