3 writes to _hash
Microsoft.ML.Data (3)
Utils\SequencePool.cs (3)
57
_hash
= new uint[10];
90
_hash
= new uint[Math.Max(_idLim, 10)];
251
Array.Resize(ref
_hash
, size);
7 references to _hash
Microsoft.ML.Data (7)
Utils\SequencePool.cs (7)
99
_hash
[id] = Hashing.HashSequence(sequence, 0, count);
100
int i = GetBucketIndex(
_hash
[id]);
135
Contracts.Assert(Math.Max(10, _idLim) <= Utils.Size(
_hash
));
162
if (
_hash
[idCur] != hash)
244
Contracts.Assert(
_hash
.Length >= _next.Length);
269
_hash
[_idLim] = hash;
291
int i = GetBucketIndex(
_hash
[id]);