1 write to _count
Microsoft.ML.StandardTrainers (1)
Standard\SdcaBinary.cs (1)
1294
if (++
_count
>= _rgit.Length)
14 references to _count
Microsoft.ML.StandardTrainers (14)
Standard\SdcaBinary.cs (14)
1210
public long Count =>
_count
;
1264
Contracts.Assert(it <
_count
);
1284
if (
_count
>= _entries.Length)
1286
Contracts.Assert(
_count
== _entries.Length);
1287
_entries.Resize(
_count
+ 1);
1290
Contracts.Assert(
_count
< _entries.Length);
1291
_entries.ApplyAt(
_count
, (long index, ref Entry entry) => { entry = new Entry(_rgit[iit], val); });
1292
_rgit[iit] =
_count
;
1300
return
_count
- 1;
1307
long size = HashHelpers.ExpandPrime(
_count
);
1324
_entries.ApplyRange(0,
_count
,
1339
Contracts.Assert(0 <=
_count
&&
_count
<= _entries.Length);
1343
Contracts.Assert(_rgit.Length >=
_count
|| _rgit.Length == HashHelpers.MaxPrime);