7 references to Leb128IntLength
Microsoft.ML.Data (7)
DataLoadSave\Binary\BinarySaver.cs (5)
315expectedPosition += Utils.Leb128IntLength((ulong)metadataInfos.Count); 327expectedPosition += Utils.Leb128IntLength((ulong)stringLen) + stringLen; 341expectedPosition += Utils.Leb128IntLength((ulong)blockSize); 518expectedPosition += Utils.Leb128IntLength((uint)nameLen) + nameLen; 528expectedPosition += Utils.Leb128IntLength((uint)rowsPerBlock);
DataLoadSave\Binary\CodecFactory.cs (2)
128bytes = checked(bytes + Utils.Leb128IntLength((uint)bytes)); 134bytes = checked(bytes + Utils.Leb128IntLength((uint)mem.Length) + output);