MCPcopy Create free account
hub / github.com/beefytech/Beef / ReadInt32

Method ReadInt32

BeefySysLib/DataStream.cpp:38–45  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

36}
37
38int32 DataStream::ReadInt32()
39{
40 int32 anInt32;
41 Read(&anInt32, sizeof(int32));
42 if (mBigEndian)
43 return FromBigEndian(anInt32);
44 return anInt32;
45}
46
47int64 Beefy::DataStream::ReadInt64()
48{

Callers 10

ReadIdStringMethod · 0.80
ReadPSDValueMethod · 0.80
ReadPSDDescriptorMethod · 0.80
ReadExtraInfoMethod · 0.80
InitMethod · 0.80
ReadFileMethod · 0.80
ReadBFFileMethod · 0.80
LoadTextureMethod · 0.80
TryLoadPDBMethod · 0.80
ReadMethod · 0.80

Calls 2

ReadFunction · 0.85
FromBigEndianFunction · 0.85

Tested by

no test coverage detected