Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/beefytech/Beef
/ ReadInt16
Method
ReadInt16
BeefySysLib/DataStream.cpp:24–31 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
22
}
23
24
int16 DataStream::ReadInt16()
25
{
26
int16 anInt16;
27
Read(&anInt16, sizeof(int16));
28
if (mBigEndian)
29
return FromBigEndian(anInt16);
30
return anInt16;
31
}
32
33
uint16 DataStream::ReadUInt16()
34
{
Callers
4
ReadExtraInfo
Method · 0.80
Init
Method · 0.80
ReadImageData
Method · 0.80
ReadData
Method · 0.80
Calls
2
Read
Function · 0.85
FromBigEndian
Function · 0.85
Tested by
no test coverage detected