4 references to ReadInt16LittleEndian
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\EventPipePayloadDecoder.cs (1)
68decodedFields[i] = BinaryPrimitives.ReadInt16LittleEndian(payload);
src\libraries\System.Private.CoreLib\src\System\IO\BinaryReader.cs (1)
214public virtual short ReadInt16() => BinaryPrimitives.ReadInt16LittleEndian(InternalRead(stackalloc byte[sizeof(short)]));
System.Private.Xml (1)
System\Xml\BinaryXml\XmlBinaryReader.cs (1)
4375private short GetInt16(int pos) => BinaryPrimitives.ReadInt16LittleEndian(_data.AsSpan(pos));
System.Reflection.Emit (1)
System\Reflection\Emit\CustomAttributeWrapper.cs (1)
139return BinaryPrimitives.ReadInt16LittleEndian(data.Slice(pos));