Searched refs:rawSample (Results 1 – 1 of 1) sorted by relevance
59 …var rawSample = stream.ReadBytes(valueSize.Value * valueDimensions.Value, throwIfEndOfStream: true… in ParseFile()60 … var sampleValues = ParseSampleValues(rawSample, valueSize.Value, sensitivity.Value); in ParseFile()80 …private static List<decimal> ParseSampleValues(byte[] rawSample, int valueSize, decimal sensitivit… in ParseSampleValues() argument83 for(int i = 0; i < rawSample.Length; i += valueSize) in ParseSampleValues()89 rawValue = BitConverter.ToInt16(rawSample, i); in ParseSampleValues()92 rawValue = BitConverter.ToInt32(rawSample, i); in ParseSampleValues()95 rawValue = BitConverter.ToInt64(rawSample, i); in ParseSampleValues()