Home
last modified time | relevance | path

Searched refs:ilBytes (Results 1 – 4 of 4) sorted by relevance

/dports/lang/mono/mono-5.10.1.57/external/corert/src/Common/src/TypeSystem/IL/
H A DILStackHelper.cs461 private static int ReadInt32(byte[] ilBytes, int offset) in ReadInt32() argument
463 return ilBytes[offset] in ReadInt32()
464 + (ilBytes[offset + 1] << 8) in ReadInt32()
465 + (ilBytes[offset + 2] << 16) in ReadInt32()
466 + (ilBytes[offset + 3] << 24); in ReadInt32()
469 private static int ReadILToken(byte[] ilBytes, int offset) in ReadILToken() argument
471 return ReadInt32(ilBytes, offset); in ReadILToken()
H A DEcmaMethodIL.cs54 byte[] ilBytes = _methodBody.GetILBytes(); in GetILBytes()
55 return (_ilBytes = ilBytes); in GetILBytes()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Reflection.Metadata/tests/Metadata/Ecma335/Encoding/
H A DMethodBodyStreamEncoderTests.cs291 var ilBytes = body.GetILBytes(); in TinyBody()
302 }, ilBytes); in TinyBody()
360 var ilBytes = body.GetILBytes(); in FatBody()
371 }, ilBytes); in FatBody()
/dports/lang/mono/mono-5.10.1.57/external/corert/src/Common/src/TypeSystem/IL/Stubs/
H A DILEmitter.cs479 …public ILStubMethodIL(MethodDesc owningMethod, byte[] ilBytes, LocalVariableDefinition[] locals, O… in ILStubMethodIL() argument
481 _ilBytes = ilBytes; in ILStubMethodIL()
558 …public ILStubMethodILWithNonConformingStack(MethodDesc owningMethod, byte[] ilBytes, LocalVariable… in ILStubMethodILWithNonConformingStack() argument
559 : base(owningMethod, ilBytes, locals, tokens, debugInfo) in ILStubMethodILWithNonConformingStack()