12 references to UInt64
ILAssembler (2)
GrammarVisitor.cs (2)
2516
SerializationTypeCode.
UInt64
=> valueBytes.Length >= 8 ? BitConverter.ToUInt64(valueBytes) : 0uL,
4862
CILParser.UINT64 => SerializationTypeCode.
UInt64
,
ILCompiler.MetadataTransform (3)
ILCompiler\Metadata\Transform.CustomAttribute.cs (3)
122
case <= Ecma.SerializationTypeCode.
UInt64
: return module.Context.GetWellKnownType((Cts.WellKnownType)typeCode);
169
Ecma.SerializationTypeCode.
UInt64
=> new ConstantUInt64Value { Value = valueReader.ReadUInt64() },
230
Ecma.SerializationTypeCode.
UInt64
=> new ConstantUInt64Array { Value = GetCustomAttributeConstantArrayElements<ulong>(ref valueReader, count) },
Microsoft.CodeAnalysis (3)
MetadataReader\MetadataDecoder.cs (2)
1390
case SerializationTypeCode.
UInt64
:
1514
case SerializationTypeCode.
UInt64
:
MetadataReader\MetadataTypeCodeExtensions.cs (1)
170
return SerializationTypeCode.
UInt64
;
System.Reflection.Emit (1)
System\Reflection\Emit\CustomAttributeWrapper.cs (1)
169
SerializationTypeCode.
UInt64
=> typeof(ulong),
System.Reflection.Metadata (3)
System\Reflection\Metadata\Ecma335\CustomAttributeDecoder.cs (2)
262
case SerializationTypeCode.
UInt64
:
356
case SerializationTypeCode.
UInt64
:
System\Reflection\Metadata\Ecma335\Encoding\BlobEncoders.cs (1)
842
public void UInt64() => WriteTypeCode(SerializationTypeCode.
UInt64
);