57 references to WriteUInt64LittleEndian
ILCompiler.Compiler (25)
Compiler\ObjectWriter\CodeView\CodeViewSymbolsBuilder.cs (1)
405BinaryPrimitives.WriteUInt64LittleEndian(_bufferWriter.GetSpan(sizeof(ulong)), value);
Compiler\ObjectWriter\CodeView\CodeViewTypesBuilder.cs (1)
444BinaryPrimitives.WriteUInt64LittleEndian(_bufferWriter.GetSpan(sizeof(ulong)), value);
Compiler\ObjectWriter\MachObjectWriter.Aot.cs (1)
101BinaryPrimitives.WriteUInt64LittleEndian(tempBuffer, section.VirtualAddress + (ulong)symbol.Value);
src\runtime\src\coreclr\tools\Common\Compiler\ObjectWriter\ElfObjectWriter.cs (14)
447BinaryPrimitives.WriteUInt64LittleEndian(relocationEntry, (ulong)symbolicRelocation.Offset); 448BinaryPrimitives.WriteUInt64LittleEndian(relocationEntry.Slice(8), ((ulong)symbolIndex << 32) | type); 521BinaryPrimitives.WriteUInt64LittleEndian(relocationEntry, (ulong)symbolicRelocation.Offset); 522BinaryPrimitives.WriteUInt64LittleEndian(relocationEntry.Slice(8), ((ulong)symbolIndex << 32) | type); 549BinaryPrimitives.WriteUInt64LittleEndian(relocationEntry, (ulong)symbolicRelocation.Offset); 550BinaryPrimitives.WriteUInt64LittleEndian(relocationEntry.Slice(8), ((ulong)symbolIndex << 32) | type); 556BinaryPrimitives.WriteUInt64LittleEndian(relocationEntry, (ulong)symbolicRelocation.Offset + 4); 557BinaryPrimitives.WriteUInt64LittleEndian(relocationEntry.Slice(8), ((ulong)symbolIndex << 32) | type + 1); 587BinaryPrimitives.WriteUInt64LittleEndian(relocationEntry, (ulong)symbolicRelocation.Offset); 588BinaryPrimitives.WriteUInt64LittleEndian(relocationEntry.Slice(8), ((ulong)symbolIndex << 32) | type); 601BinaryPrimitives.WriteUInt64LittleEndian(relocationEntry, (ulong)symbolicRelocation.Offset + 4); 602BinaryPrimitives.WriteUInt64LittleEndian(relocationEntry.Slice(8), ((ulong)symbolIndex << 32) | type); 1085BinaryPrimitives.WriteUInt64LittleEndian(buffer.Slice(8), Value); 1086BinaryPrimitives.WriteUInt64LittleEndian(buffer.Slice(16), Size);
src\runtime\src\coreclr\tools\Common\Compiler\ObjectWriter\MachObjectWriter.cs (8)
459BinaryPrimitives.WriteUInt64LittleEndian(data, _sections[targetSectionIndex].VirtualAddress + (ulong)addend); 1059BinaryPrimitives.WriteUInt64LittleEndian(buffer.Slice(24, 8), Address); 1060BinaryPrimitives.WriteUInt64LittleEndian(buffer.Slice(32, 8), Size); 1061BinaryPrimitives.WriteUInt64LittleEndian(buffer.Slice(40, 8), FileOffset); 1062BinaryPrimitives.WriteUInt64LittleEndian(buffer.Slice(48, 8), FileSize); 1145BinaryPrimitives.WriteUInt64LittleEndian(buffer.Slice(32, 8), VirtualAddress); 1146BinaryPrimitives.WriteUInt64LittleEndian(buffer.Slice(40, 8), Size); 1197BinaryPrimitives.WriteUInt64LittleEndian(buffer.Slice(8), Value);
ILCompiler.ReadyToRun (22)
src\runtime\src\coreclr\tools\Common\Compiler\ObjectWriter\ElfObjectWriter.cs (14)
447BinaryPrimitives.WriteUInt64LittleEndian(relocationEntry, (ulong)symbolicRelocation.Offset); 448BinaryPrimitives.WriteUInt64LittleEndian(relocationEntry.Slice(8), ((ulong)symbolIndex << 32) | type); 521BinaryPrimitives.WriteUInt64LittleEndian(relocationEntry, (ulong)symbolicRelocation.Offset); 522BinaryPrimitives.WriteUInt64LittleEndian(relocationEntry.Slice(8), ((ulong)symbolIndex << 32) | type); 549BinaryPrimitives.WriteUInt64LittleEndian(relocationEntry, (ulong)symbolicRelocation.Offset); 550BinaryPrimitives.WriteUInt64LittleEndian(relocationEntry.Slice(8), ((ulong)symbolIndex << 32) | type); 556BinaryPrimitives.WriteUInt64LittleEndian(relocationEntry, (ulong)symbolicRelocation.Offset + 4); 557BinaryPrimitives.WriteUInt64LittleEndian(relocationEntry.Slice(8), ((ulong)symbolIndex << 32) | type + 1); 587BinaryPrimitives.WriteUInt64LittleEndian(relocationEntry, (ulong)symbolicRelocation.Offset); 588BinaryPrimitives.WriteUInt64LittleEndian(relocationEntry.Slice(8), ((ulong)symbolIndex << 32) | type); 601BinaryPrimitives.WriteUInt64LittleEndian(relocationEntry, (ulong)symbolicRelocation.Offset + 4); 602BinaryPrimitives.WriteUInt64LittleEndian(relocationEntry.Slice(8), ((ulong)symbolIndex << 32) | type); 1085BinaryPrimitives.WriteUInt64LittleEndian(buffer.Slice(8), Value); 1086BinaryPrimitives.WriteUInt64LittleEndian(buffer.Slice(16), Size);
src\runtime\src\coreclr\tools\Common\Compiler\ObjectWriter\MachObjectWriter.cs (8)
459BinaryPrimitives.WriteUInt64LittleEndian(data, _sections[targetSectionIndex].VirtualAddress + (ulong)addend); 1059BinaryPrimitives.WriteUInt64LittleEndian(buffer.Slice(24, 8), Address); 1060BinaryPrimitives.WriteUInt64LittleEndian(buffer.Slice(32, 8), Size); 1061BinaryPrimitives.WriteUInt64LittleEndian(buffer.Slice(40, 8), FileOffset); 1062BinaryPrimitives.WriteUInt64LittleEndian(buffer.Slice(48, 8), FileSize); 1145BinaryPrimitives.WriteUInt64LittleEndian(buffer.Slice(32, 8), VirtualAddress); 1146BinaryPrimitives.WriteUInt64LittleEndian(buffer.Slice(40, 8), Size); 1197BinaryPrimitives.WriteUInt64LittleEndian(buffer.Slice(8), Value);
System.IO.Compression (1)
System\IO\Compression\ZipBlocks.cs (1)
576BinaryPrimitives.WriteUInt64LittleEndian(blockContents[FieldLocations.SizeOfThisRecord..], NormalSize);
System.IO.Hashing (1)
System\IO\Hashing\Crc64ParameterSet.cs (1)
78BinaryPrimitives.WriteUInt64LittleEndian(destination, crc);
System.Private.CoreLib (6)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1189BinaryPrimitives.WriteUInt64LittleEndian(destination, _lo64);
src\runtime\src\libraries\System.Private.CoreLib\src\System\IO\BinaryWriter.cs (1)
317BinaryPrimitives.WriteUInt64LittleEndian(buffer, value);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\CompilerServices\AsyncProfiler.cs (4)
512BinaryPrimitives.WriteUInt64LittleEndian(headerSpan.Slice(headerSpanIndex), context.OsThreadId); 520BinaryPrimitives.WriteUInt64LittleEndian(headerSpan.Slice(headerSpanIndex), (ulong)currentTimestamp); 524BinaryPrimitives.WriteUInt64LittleEndian(headerSpan.Slice(headerSpanIndex), 0); 841BinaryPrimitives.WriteUInt64LittleEndian(headerSpan.Slice(spanIndex), (ulong)LastEventTimestamp);
System.Reflection.Metadata (2)
System\Reflection\Internal\Utilities\BlobUtilities.cs (1)
38BinaryPrimitives.WriteUInt64LittleEndian(buffer.AsSpan(start), value);
System\Reflection\Metadata\BlobWriterImpl.cs (1)
243BinaryPrimitives.WriteUInt64LittleEndian(bytes, (ulong)value);