MCPcopy Create free account
hub / github.com/chronoxor/FastBinaryEncoding / ReadInt32

Method ReadInt32

projects/CSharp/Proto/com.chronoxor.fbe.cs:274–280  ·  view source on GitHub ↗
(byte[] buffer, long offset)

Source from the content-addressed store, hash-verified

272 }
273
274 public static int ReadInt32(byte[] buffer, long offset)
275 {
276 return (buffer[offset + 0] << 0)|
277 (buffer[offset + 1] << 8)|
278 (buffer[offset + 2] << 16)|
279 (buffer[offset + 3] << 24);
280 }
281
282 public static uint ReadUInt32(byte[] buffer, long offset)
283 {

Callers 15

DeserializeMethod · 0.45
DeserializeMethod · 0.45
DeserializeMethod · 0.45
DeserializeMethod · 0.45
DeserializeMethod · 0.45
ReadInt32Method · 0.45
GetValueDefaultMethod · 0.45
GetValueDefaultMethod · 0.45
GetValueDefaultMethod · 0.45
GetValueDefaultMethod · 0.45
GetValueDefaultMethod · 0.45
GetValueDefaultMethod · 0.45

Calls

no outgoing calls

Tested by 4

DeserializeMethod · 0.36
DeserializeMethod · 0.36
DeserializeMethod · 0.36
DeserializeMethod · 0.36