14 references to Length
ILCompiler.ReadyToRun (14)
src\runtime\src\coreclr\tools\Common\Compiler\NativeAotNameMangler.cs (4)
107if (mangledName.Length > 30) 147int neededLength = origName.Length + 1 + CountDigits(iter); 153buffer[origName.Length] = (byte)'_'; 157bool b = iter.TryFormat(new Span<byte>(buffer).Slice(origName.Length + 1), out _);
src\runtime\src\coreclr\tools\Common\Compiler\ObjectWriter\CoffObjectWriter.cs (4)
769if (Name.Length <= NameSize) 772if (Name.Length < NameSize) 774buffer.Slice(Name.Length, 8 - Name.Length).Clear();
src\runtime\src\coreclr\tools\Common\Compiler\ObjectWriter\SectionWriter.cs (1)
124int size = value.Length + 1;
src\runtime\src\coreclr\tools\Common\Compiler\ObjectWriter\StringTableBuilder.cs (3)
60index = (uint)(_stream.Length - text.Length - 1); 74int index = str.Length - pos - 1; 75if ((uint)index < str.Length)
src\runtime\src\coreclr\tools\Common\Internal\Text\Utf8String.cs (2)
95length += s.Length; 103resultSpan = resultSpan.Slice(s.Length);