3 instantiations of BlockLookup
Microsoft.ML.Data (3)
DataLoadSave\Binary\BinaryLoader.cs (1)
262
lookup[b] = new
BlockLookup
(offset, compLen, decompLen);
DataLoadSave\Binary\BinarySaver.cs (2)
422
BlockLookup deadLookup = new
BlockLookup
();
431
BlockLookup currLookup = new
BlockLookup
(expectedPosition, (int)compressed.Length, block.UncompressedLength);
12 references to BlockLookup
Microsoft.ML.Data (12)
DataLoadSave\Binary\BinaryLoader.cs (7)
114
private volatile
BlockLookup
[] _lookup;
228
public
BlockLookup
[] GetLookup()
240
return _lookup = new
BlockLookup
[0];
245
var lookup = new
BlockLookup
[numBlocks];
1679
private readonly
BlockLookup
[] _lookup;
1806
BlockLookup
lookup = _lookup[(int)blockIndex];
2190
foreach (
var
lookup in blockLookups)
DataLoadSave\Binary\BinarySaver.cs (5)
411
var blockLookups = new List<
BlockLookup
>[activeColumns.Length];
413
blockLookups[c] = new List<
BlockLookup
>();
422
BlockLookup
deadLookup = new BlockLookup();
431
BlockLookup
currLookup = new BlockLookup(expectedPosition, (int)compressed.Length, block.UncompressedLength);
480
foreach (
BlockLookup
lookup in blockLookups[c])