1 instantiation of UInt64
PresentationFramework (1)
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
10754
bamlType.DefaultConstructor = delegate() { return new System.
UInt64
(); };
633 references to UInt64
mscorlib (235)
microsoft\win32\oavariantlib.cs (1)
49
typeof(
UInt64
),
system\convert.cs (4)
128
(RuntimeType)typeof(
UInt64
),
1407
public static ulong ToUInt64(
UInt64
value) {
1430
return
UInt64
.Parse(value, CultureInfo.CurrentCulture);
1437
return
UInt64
.Parse(value, NumberStyles.Integer, provider);
system\datetime.cs (36)
119
private const
UInt64
TicksMask = 0x3FFFFFFFFFFFFFFF;
120
private const
UInt64
FlagsMask = 0xC000000000000000;
121
private const
UInt64
LocalMask = 0x8000000000000000;
123
private const
UInt64
KindUnspecified = 0x0000000000000000;
124
private const
UInt64
KindUtc = 0x4000000000000000;
125
private const
UInt64
KindLocal = 0x8000000000000000;
126
private const
UInt64
KindLocalAmbiguousDst = 0xC000000000000000;
140
private
UInt64
dateData;
150
dateData = (
UInt64
)ticks;
153
private DateTime(
UInt64
dateData) {
165
this.dateData = ((
UInt64
)ticks | ((
UInt64
)kind << KindShift));
174
dateData = ((
UInt64
)ticks | (isAmbiguousDst ? KindLocalAmbiguousDst : KindLocal));
181
this.dateData = (
UInt64
) DateToTicks(year, month, day);
204
this.dateData = (
UInt64
)(DateToTicks(year, month, day) + TimeToTicks(hour, minute, second));
223
this.dateData = ((
UInt64
)ticks | ((
UInt64
)kind << KindShift));
241
this.dateData = (
UInt64
)calendar.ToDateTime(year, month, day, hour, minute, second, 0).Ticks;
275
this.dateData = (
UInt64
)ticks;
300
this.dateData = ((
UInt64
)ticks | ((
UInt64
)kind << KindShift));
325
this.dateData = (
UInt64
)ticks;
360
this.dateData = ((
UInt64
)ticks | ((
UInt64
)kind << KindShift));
380
UInt64
serializedDateData = 0;
404
this.dateData = (
UInt64
)serializedTicks;
423
private
UInt64
InternalKind {
523
return new DateTime((
UInt64
)(DateToTicks(y, m, d) + InternalTicks % TicksPerDay) | InternalKind);
545
return new DateTime((
UInt64
)(ticks + value) | InternalKind);
750
return new DateTime((
UInt64
)dateData);
846
return new DateTime((
UInt64
)(ticks - ticks % TicksPerDay) | InternalKind);
1093
return new DateTime( ((
UInt64
)(ticks + FileTimeOffset)) | KindUtc);
1210
return new DateTime( ((
UInt64
)(ticks)) | KindUtc);
1342
return new DateTime((
UInt64
)(ticks - valueTicks) | InternalKind);
1491
return new DateTime((
UInt64
)(ticks + valueTicks) | d.InternalKind);
1500
return new DateTime((
UInt64
)(ticks - valueTicks) | d.InternalKind);
system\decimal.cs (3)
629
UInt64
n;
636
n = ((
UInt64
)remainder << 32) | (UInt32) value.mid;
641
n = ((
UInt64
)remainder << 32) | (UInt32) value.lo;
system\deployment\isolationinterop.cs (15)
1029
UInt64
HashReference(
1034
UInt64
HashDefinition(
1138
UInt64
HashReference(
1143
UInt64
HashDefinition(
1671
[MarshalAs(UnmanagedType.U8)] public
UInt64
SizeReclaimationLimit;
1672
[MarshalAs(UnmanagedType.U8)] public
UInt64
RuntimeLimit;
1813
UInt64
ulonglongQuota,
1815
ref
UInt64
SizeSharedWithExternalDeployment,
1816
ref
UInt64
SizeConsumedByInputDeploymentArray
2068
public
UInt64
QueryChangeID(IDefinitionIdentity asm)
2070
UInt64
ChangeId;
2253
[In]
UInt64
ulonglongQuota,
2255
[Out, In] ref
UInt64
SizeSharedWithExternalDeployment,
2256
[Out, In] ref
UInt64
SizeConsumedByInputDeploymentArray
2314
UInt64
QueryChangeID(
system\diagnostics\eventing\eventprovider.cs (2)
739
else if (data is
UInt64
)
742
UInt64
* ulongptr = (ulong*)dataBuffer;
system\diagnostics\eventing\eventsource.cs (1)
6233
if (type.IsEnum() && Enum.GetUnderlyingType(type) != typeof(
UInt64
) && Enum.GetUnderlyingType(type) != typeof(Int64))
System\Diagnostics\Eventing\TraceLogging\SimpleTypeInfos.cs (5)
206
: TraceLoggingTypeInfo<
UInt64
>
216
public override void WriteData(TraceLoggingDataCollector collector, ref
UInt64
value)
518
: TraceLoggingTypeInfo<
UInt64
[]>
528
public override void WriteData(TraceLoggingDataCollector collector, ref
UInt64
[] value)
805
collector.AddScalar(EnumHelper<
UInt64
>.Cast(value));
System\Diagnostics\Eventing\TraceLogging\Statics.cs (3)
633
else if (elementType == typeof(
UInt64
))
699
else if (underlyingType == typeof(
UInt64
))
745
else if (dataType == typeof(
UInt64
))
system\double.cs (2)
94
return (*(
UInt64
*)(&d) & 0x8000000000000000) == 0x8000000000000000;
103
return (*(
UInt64
*)(&d) & 0x7FFFFFFFFFFFFFFFL) > 0x7FF0000000000000L;
system\enum.cs (6)
115
UInt64
result = (
UInt64
)value;
122
UInt64
result = (
UInt64
)(Int64)value;
222
result = (
UInt64
)Convert.ToInt64(value, CultureInfo.InvariantCulture);
932
if (underlyingType == typeof(
UInt64
))
system\gc.cs (2)
136
private static extern void _AddMemoryPressure(
UInt64
bytesAllocated);
141
private static extern void _RemoveMemoryPressure(
UInt64
bytesAllocated);
system\internal.cs (2)
125
new List<
UInt64
>();
149
SZArrayHelper<
UInt64
>(null);
system\io\unmanagedmemoryaccessor.cs (12)
75
if (buffer.ByteLength < (
UInt64
)(offset + capacity)) {
494
public
UInt64
ReadUInt64(Int64 position) {
495
int sizeOfType = sizeof(
UInt64
);
498
UInt64
result;
510
result = *((
UInt64
*)(pointer));
569
structure = _buffer.Read<T>((
UInt64
)(_offset + position));
624
_buffer.ReadArray<T>((
UInt64
)(_offset + position), array, offset, n);
986
public void Write(Int64 position,
UInt64
value) {
987
int sizeOfType = sizeof(
UInt64
);
1000
*((
UInt64
*)pointer) = value;
1053
_buffer.Write<T>((
UInt64
)(_offset + position), structure);
1088
_buffer.WriteArray<T>((
UInt64
)(_offset + position), array, offset, count);
system\number.cs (15)
399
UInt64
passedValue = 0;
451
private unsafe static Boolean HexNumberToUInt64(ref NumberBuffer number, ref
UInt64
value) {
460
UInt64
n = 0;
467
UInt64
newN = n;
470
newN += (
UInt64
)(*p - '0');
474
newN += (
UInt64
)((*p - 'A') + 10);
478
newN += (
UInt64
)((*p - 'a') + 10);
544
if ((
UInt64
)n > (0x7FFFFFFFFFFFFFFF / 10)) {
596
private unsafe static Boolean NumberToUInt64(ref NumberBuffer number, ref
UInt64
value) {
604
UInt64
n = 0;
611
UInt64
newN = n + (
UInt64
)(*p++ - '0');
1001
internal unsafe static
UInt64
ParseUInt64(String value, NumberStyles options, NumberFormatInfo numfmt) {
1004
UInt64
i = 0;
1175
internal unsafe static Boolean TryParseUInt64(String s, NumberStyles style, NumberFormatInfo info, out
UInt64
result) {
system\resources\resourcereader.cs (1)
631
else if (type == typeof(
UInt64
))
system\resources\resourcewriter.cs (2)
551
else if (type == typeof(
UInt64
))
647
writer.Write((
UInt64
) value);
system\runtime\compilerservices\AsyncMethodBuilder.cs (3)
780
(typeof(TResult) == typeof(
UInt64
) && default(
UInt64
) == (
UInt64
)(object)result) ||
system\runtime\interopservices\safebuffer.cs (1)
87
((UIntPtr) UInt32.MaxValue) : ((UIntPtr)
UInt64
.MaxValue);
system\Runtime\InteropServices\Variant.cs (4)
82
[FieldOffset(0)] internal
UInt64
_ui8;
204
*(
UInt64
*)this._typeUnion._unionTypes._byref = (
UInt64
)value;
472
public
UInt64
AsUi8 {
system\runtime\interopservices\windowsruntime\clripropertyvalueimpl.cs (6)
42
new Tuple<Type, PropertyType>(typeof(
UInt64
), PropertyType.UInt64),
114
public
UInt64
GetUInt64()
116
return CoerceScalarValue<
UInt64
>(PropertyType.UInt64);
260
public
UInt64
[] GetUInt64Array()
262
return CoerceArrayValue<
UInt64
>(PropertyType.UInt64Array);
468
else if (typeof(T) == typeof(
UInt64
)) {
system\runtime\interopservices\windowsruntime\ipropertyvalue.cs (2)
52
UInt64
GetUInt64();
106
UInt64
[] GetUInt64Array();
system\runtime\serialization\formatter.cs (1)
167
} else if (varType==typeof(
UInt64
)) {
system\runtime\serialization\formatters\binary\binaryconverter.cs (3)
325
array = new
UInt64
[length];
506
internal static Type typeofUInt64 = typeof(
UInt64
);
531
internal static Type typeofUInt64Array = typeof(
UInt64
[]);
system\runtime\serialization\formatters\binary\binaryformatterwriter.cs (1)
158
internal void WriteUInt64(
UInt64
value)
system\runtime\serialization\formatters\binary\binaryparser.cs (1)
375
internal
UInt64
ReadUInt64()
system\runtime\serialization\formatters\binary\binaryutilclasses.cs (3)
847
UInt64
[] uint64A = null;
891
uint64A = (
UInt64
[])array;
934
uint64A[index] =
UInt64
.Parse(value, CultureInfo.InvariantCulture);
system\security\cryptography\des.cs (12)
87
UInt64
key = QuadWordFromBigEndian(rgbOddParityKey);
102
UInt64
key = QuadWordFromBigEndian(rgbOddParityKey);
129
private static
UInt64
QuadWordFromBigEndian(byte[] block)
131
UInt64
x;
133
(((
UInt64
)block[0]) << 56) | (((
UInt64
)block[1]) << 48) |
134
(((
UInt64
)block[2]) << 40) | (((
UInt64
)block[3]) << 32) |
135
(((
UInt64
)block[4]) << 24) | (((
UInt64
)block[5]) << 16) |
136
(((
UInt64
)block[6]) << 8) | ((
UInt64
)block[7])
system\security\cryptography\sha384managed.cs (31)
25
private
UInt64
[] _stateSHA384;
26
private
UInt64
[] _W;
49
_stateSHA384 = new
UInt64
[8];
51
_W = new
UInt64
[80];
138
fixed (
UInt64
* stateSHA384 = _stateSHA384) {
140
fixed (
UInt64
* expandedBuffer = _W) {
220
private readonly static
UInt64
[] _K = {
244
private static unsafe void SHATransform (
UInt64
* expandedBuffer,
UInt64
* state, byte* block)
246
UInt64
a, b, c, d, e, f, g, h;
247
UInt64
aa, bb, cc, dd, ee, ff, hh, gg;
248
UInt64
T1;
319
private static
UInt64
RotateRight(
UInt64
x, int n) {
323
private static
UInt64
Ch(
UInt64
x,
UInt64
y,
UInt64
z) {
327
private static
UInt64
Maj(
UInt64
x,
UInt64
y,
UInt64
z) {
331
private static
UInt64
Sigma_0(
UInt64
x) {
335
private static
UInt64
Sigma_1(
UInt64
x) {
339
private static
UInt64
sigma_0(
UInt64
x) {
343
private static
UInt64
sigma_1(
UInt64
x) {
352
private static unsafe void SHA384Expand (
UInt64
* x)
system\security\cryptography\sha512managed.cs (31)
25
private
UInt64
[] _stateSHA512;
26
private
UInt64
[] _W;
41
_stateSHA512 = new
UInt64
[8];
43
_W = new
UInt64
[80];
130
fixed (
UInt64
* stateSHA512 = _stateSHA512) {
132
fixed (
UInt64
* expandedBuffer = _W) {
213
private readonly static
UInt64
[] _K = {
237
private static unsafe void SHATransform (
UInt64
* expandedBuffer,
UInt64
* state, byte* block)
239
UInt64
a, b, c, d, e, f, g, h;
240
UInt64
aa, bb, cc, dd, ee, ff, hh, gg;
241
UInt64
T1;
312
private static
UInt64
RotateRight(
UInt64
x, int n) {
316
private static
UInt64
Ch(
UInt64
x,
UInt64
y,
UInt64
z) {
320
private static
UInt64
Maj(
UInt64
x,
UInt64
y,
UInt64
z) {
324
private static
UInt64
Sigma_0(
UInt64
x) {
328
private static
UInt64
Sigma_1(
UInt64
x) {
332
private static
UInt64
sigma_0(
UInt64
x) {
336
private static
UInt64
sigma_1(
UInt64
x) {
345
private static unsafe void SHA512Expand (
UInt64
* x)
system\security\cryptography\utils.cs (10)
766
internal unsafe static void QuadWordFromBigEndian (
UInt64
* x, int digits, byte* block) {
772
(((
UInt64
)block[j]) << 56) | (((
UInt64
)block[j+1]) << 48) |
773
(((
UInt64
)block[j+2]) << 40) | (((
UInt64
)block[j+3]) << 32) |
774
(((
UInt64
)block[j+4]) << 24) | (((
UInt64
)block[j+5]) << 16) |
775
(((
UInt64
)block[j+6]) << 8) | ((
UInt64
)block[j+7])
781
internal static void QuadWordToBigEndian (byte[] block,
UInt64
[] x, int digits) {
system\security\principal\windowsidentity.cs (2)
1521
instanceClaims.Add( new Claim(windowsClaim.Name, Convert.ToString((
UInt64
)uintValues[item], CultureInfo.InvariantCulture), ClaimValueTypes.UInteger64, m_issuerName, m_issuerName, this, propertyValue, string.Empty));
1532
((
UInt64
)boolValues[item] == 0 ? Convert.ToString(false, CultureInfo.InvariantCulture) : Convert.ToString(true, CultureInfo.InvariantCulture)),
system\threading\Tasks\Task.cs (2)
7015
private
UInt64
m_lastKnownWatermark;
7080
UInt64
current64 = currentAddr.ToUInt64();
system\uint64.cs (9)
30
, IComparable<
UInt64
>, IEquatable<
UInt64
>
51
if (value is
UInt64
) {
62
public int CompareTo(
UInt64
value) {
71
if (!(obj is
UInt64
)) {
74
return m_value == ((
UInt64
)obj).m_value;
78
public bool Equals(
UInt64
obj)
135
public static Boolean TryParse(String s, out
UInt64
result) {
140
public static Boolean TryParse(String s, NumberStyles style, IFormatProvider provider, out
UInt64
result) {
system\variant.cs (1)
102
typeof(
UInt64
),
PresentationBuildTasks (2)
Base\System\Windows\Markup\TypeConverterHelper.cs (1)
197
else if (typeof(
UInt64
).IsAssignableFrom(type))
Framework\System\Windows\Markup\KnownTypes.cs (1)
5494
case KnownElements.UInt64: t = typeof(
UInt64
); break;
PresentationCore (40)
Core\CSharp\MS\Internal\Ink\InkSerializedFormat\SerializationHelper.cs (2)
269
else if (typeof(
UInt64
) == type)
273
else if (typeof(
UInt64
[]) == type)
Core\CSharp\System\Windows\Media\ColorTransform.cs (12)
232
colorValue = (long)(((
UInt64
)channel[3] << 48) + ((
UInt64
)channel[2] << 32) + ((
UInt64
)channel[1] << 16) + (
UInt64
)channel[0]);
256
colorValue = (long)(((
UInt64
)channel[7] << 56) + ((
UInt64
)channel[6] << 48) +
257
((
UInt64
)channel[5] << 40) + ((
UInt64
)channel[4] << 32) +
258
((
UInt64
)channel[3] << 24) + ((
UInt64
)channel[2] << 16) +
259
((
UInt64
)channel[1] << 8) + ((
UInt64
)channel[0] << 0));
Core\CSharp\System\Windows\Media\GlyphRun.cs (1)
1923
command.pIDWriteFont = (
UInt64
)_glyphTypeface.GetDWriteFontAddRef;
Core\CSharp\System\Windows\Media\Imaging\PropVariant.cs (9)
100
[FieldOffset(8)] internal
UInt64
ulVal;
329
else if (type == typeof(
UInt64
[]))
331
InitVector(value as Array, typeof(
UInt64
), VarEnum.VT_UI8);
420
else if (type == typeof(
UInt64
))
423
ulVal = (
UInt64
)value;
612
UInt64
[] array = new
UInt64
[ca.cElems];
614
array[i] = (
UInt64
) Marshal.ReadInt64(ca.pElems, i*sizeof(
UInt64
));
Core\CSharp\System\Windows\Media\Imaging\WriteableBitmap.cs (2)
1442
command.SwDoubleBufferedBitmap = (
UInt64
) _pDoubleBufferedBitmap.DangerousGetHandle().ToPointer();
1542
command.CopyCompletedEvent = (
UInt64
) hDuplicate.ToInt64();
Graphics\include\exports.cs (2)
2485
command.hwnd = (
UInt64
)hWndUIntPtr;
2591
command.pRenderTarget = (
UInt64
)pRenderTarget;
Graphics\include\Generated\wgx_commands.cs (12)
49
[FieldOffset(4)] internal
UInt64
FrameTime;
56
[FieldOffset(8)] internal
UInt64
pInteropDeviceBitmap;
57
[FieldOffset(16)] internal
UInt64
pSoftwareBitmap;
64
[FieldOffset(8)] internal
UInt64
hEvent;
314
[FieldOffset(8)] internal
UInt64
hwnd;
315
[FieldOffset(16)] internal
UInt64
hSection;
316
[FieldOffset(24)] internal
UInt64
masterDevice;
356
[FieldOffset(8)] internal
UInt64
hwnd;
357
[FieldOffset(16)] internal
UInt64
pRenderTarget;
404
[FieldOffset(8)] internal
UInt64
pIDWriteFont;
419
[FieldOffset(8)] internal
UInt64
SwDoubleBufferedBitmap;
427
[FieldOffset(8)] internal
UInt64
CopyCompletedEvent;
PresentationFramework (6)
src\Framework\MS\Internal\Data\DefaultValueConverter.cs (2)
539
typeof(UInt32), typeof(
UInt64
), typeof(UInt16), typeof(SByte), // non-CLS compliant types
546
typeof(UInt32), typeof(
UInt64
), typeof(UInt16), typeof(SByte), // non-CLS compliant types
src\Framework\System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
791
case 699: t = () => typeof(
UInt64
); break;
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
10752
typeof(System.
UInt64
),
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
6243
case KnownElements.UInt64: t = typeof(System.
UInt64
); break;
src\Framework\System\Windows\Window.cs (1)
6891
var
intValue = (ulong)(taskbarInfo.ProgressValue * precisionValue);
System (38)
compmod\microsoft\csharp\csharpcodeprovider.cs (2)
1206
else if (e.Value is
UInt64
) {
1207
Output.Write(((
UInt64
)e.Value).ToString(CultureInfo.InvariantCulture));
compmod\microsoft\visualbasic\VBCodeProvider.cs (2)
1077
else if (e.Value is
UInt64
) {
1078
Output.Write(((
UInt64
)e.Value).ToString(CultureInfo.InvariantCulture));
compmod\system\componentmodel\ReflectTypeDescriptionProvider.cs (6)
131
temp[typeof(
UInt64
)] = typeof(UInt64Converter);
613
UInt64
canExtend = 0;
645
canExtend |= (
UInt64
)1 << curIdx;
662
canExtend |= (
UInt64
)1<<curIdx;
690
if ((curIdx < maxCanExtendResults && (canExtend & ((
UInt64
)1 << curIdx)) != 0 )||
707
if (p != null && ((curIdx < maxCanExtendResults && (canExtend & ((
UInt64
)1 << curIdx)) != 0) ||
compmod\system\componentmodel\UInt64Converter.cs (4)
34
return typeof(
UInt64
);
49
return
UInt64
.Parse(value, NumberStyles.Integer, formatInfo);
57
return
UInt64
.Parse(value, culture);
64
return ((
UInt64
)value).ToString("G", formatInfo);
net\System\Net\NetworkInformation\UnSafeNetInfoNativemethods.cs (24)
217
internal
UInt64
transmitLinkSpeed;
218
internal
UInt64
receiveLinkSpeed;
223
internal
UInt64
luid;
276
internal
UInt64
interfaceLuid;
303
internal
UInt64
transmitLinkSpeed;
304
internal
UInt64
receiveLinkSpeed;
305
internal
UInt64
inOctets;
306
internal
UInt64
inUcastPkts;
307
internal
UInt64
inNUcastPkts;
308
internal
UInt64
inDiscards;
309
internal
UInt64
inErrors;
310
internal
UInt64
inUnknownProtos;
311
internal
UInt64
inUcastOctets;
312
internal
UInt64
inMulticastOctets;
313
internal
UInt64
inBroadcastOctets;
314
internal
UInt64
outOctets;
315
internal
UInt64
outUcastPkts;
316
internal
UInt64
outNUcastPkts;
317
internal
UInt64
outDiscards;
318
internal
UInt64
outErrors;
319
internal
UInt64
outUcastOctets;
320
internal
UInt64
outMulticastOctets;
321
internal
UInt64
outBroadcastOctets;
322
internal
UInt64
outQLen;
System.Activities (1)
System\Activities\Debugger\DebugInfo.cs (1)
367
else if (t == typeof(
UInt64
))
System.AddIn (4)
System\Addin\MiniReflection\MetadataReader\Metadata.cs (3)
243
UInt64
Valid = B.ReadUInt64();
244
UInt64
Sorted = B.ReadUInt64();
247
UInt64
VBit = 1UL;
System\Addin\MiniReflection\MiniParameterInfo.cs (1)
99
return new TypeInfo(typeof(
UInt64
));
System.AddIn.Contract (5)
System\Addin\Contract\RemoteArgument.cs (5)
658
public RemoteArgument(System.
UInt64
value)
667
public RemoteArgument(System.
UInt64
value, bool isByRef)
1375
public System.
UInt64
UInt64Value
1383
return default(System.
UInt64
);
1389
return (System.
UInt64
)this._value;
System.Core (8)
Microsoft\Scripting\Ast\DebugViewWriter.cs (1)
525
if (type == typeof(
UInt64
)) {
Microsoft\Scripting\Ast\ParameterExpression.cs (1)
76
case TypeCode.UInt64: return new PrimitiveParameterExpression<
UInt64
>(name);
Microsoft\Win32\UnsafeNativeMethods.cs (2)
753
public
UInt64
ULong;
775
public
UInt64
FileTime;
System\Diagnostics\Eventing\EventProvider.cs (2)
354
else if (data is
UInt64
)
357
UInt64
* ulongptr = (ulong*)dataBuffer;
System\Diagnostics\Eventing\Reader\NativeWrapper.cs (2)
1245
return ConvertToArray (val,typeof(
UInt64
), sizeof(
UInt64
));
System.Data (58)
fx\src\data\Microsoft\SqlServer\Server\MetadataUtilsSmi.cs (1)
109
ht.Add( typeof( System.
UInt64
), ExtendedClrTypeCode.UInt64 );
fx\src\data\System\Data\CodeGen\datacache.cs (1)
855
col.DataType == typeof(Int64) || col.DataType == typeof(
UInt64
)
fx\src\data\System\Data\ColumnTypeConverter.cs (1)
43
typeof(
UInt64
),
fx\src\data\System\Data\Common\BigIntegerStorage.cs (4)
67
else if (value.GetType() == typeof(
UInt64
)) { return (BigInteger)(
UInt64
)value; }
83
else if (type == typeof(
UInt64
)) { return checked((
UInt64
)value); }
fx\src\data\System\Data\Common\ByteStorage.cs (1)
31
UInt64
sum = defaultValue;
fx\src\data\System\Data\Common\DataStorage.cs (1)
83
typeof(
UInt64
),
fx\src\data\System\Data\Common\ObjectStorage.cs (2)
238
else if (valType == typeof(
UInt64
)){
239
values[recordNo] = BitConverter.GetBytes((
UInt64
)value);
fx\src\data\System\Data\Common\SQLConvert.cs (6)
136
return (
UInt64
) value;
184
return (
UInt64
) value;
226
return (
UInt64
) value;
270
return (
UInt64
) value;
514
return ((IConvertible)(
UInt64
)value).ToString(formatProvider);
761
return XmlConvert.ToString((
UInt64
) value);
fx\src\data\System\Data\Common\UInt16Storage.cs (1)
31
UInt64
sum = defaultValue;
fx\src\data\System\Data\Common\UInt32Storage.cs (2)
31
UInt64
sum = defaultValue;
34
checked { sum += (
UInt64
) values[record];}
fx\src\data\System\Data\Common\UInt64Storage.cs (24)
18
private const
UInt64
defaultValue =
UInt64
.MinValue;
20
private
UInt64
[] values;
23
: base(column, typeof(
UInt64
), defaultValue, StorageType.UInt64) {
31
UInt64
sum = defaultValue;
54
UInt64
mean;
55
checked {mean = (
UInt64
)(Decimal)(meanSum / (Decimal)meanCount);}
97
UInt64
min =
UInt64
.MaxValue;
111
UInt64
max =
UInt64
.MinValue;
136
throw ExprException.Overflow(typeof(
UInt64
));
142
UInt64
valueNo1 = values[recordNo1];
143
UInt64
valueNo2 = values[recordNo2];
162
UInt64
valueNo1 = values[recordNo];
166
return valueNo1.CompareTo((
UInt64
)value);
188
UInt64
value = values[record];
208
UInt64
[] newValues = new
UInt64
[capacity];
221
return XmlConvert.ToString((
UInt64
)value);
225
return new
UInt64
[recordCount];
229
UInt64
[] typedStore = (
UInt64
[]) store;
235
values = (
UInt64
[]) store;
fx\src\data\System\Data\OleDb\ColumnBinding.cs (4)
487
Value_UI8((
UInt64
) value);
1040
internal
UInt64
Value_UI8() {
1043
return unchecked((
UInt64
) RowBinding.ReadInt64(ValueOffset));
1045
private void Value_UI8(
UInt64
value) {
fx\src\data\System\Data\OleDb\PropertyInfoSet.cs (1)
163
case VarEnum.VT_UI8: return typeof(System.
UInt64
);
fx\src\data\System\Data\SqlClient\SqlDataReader.cs (1)
3637
if (!_stateObj.Parser.TrySkipPlpValue(
UInt64
.MaxValue, _stateObj, out ignored)) {
fx\src\data\System\Data\SqlClient\TdsEnums.cs (1)
359
public const
UInt64
UDTNULL = 0xffffffffffffffff;
fx\src\data\System\Data\SqlClient\TdsParser.cs (2)
3801
if (!TrySkipPlpValue(
UInt64
.MaxValue, stateObj, out ignored)) {
4917
if (!TrySkipPlpValue(
UInt64
.MaxValue, stateObj, out ignored)) {
fx\src\data\System\Data\XDRSchema.cs (1)
249
new NameType("ui8" , typeof(
UInt64
) ), /* XDR */
fx\src\data\System\Data\xmlsaver.cs (1)
236
if (type == typeof(
UInt64
))
fx\src\data\System\Data\XMLSchema.cs (3)
1589
new NameType("nonNegativeInteger" , typeof(
UInt64
) ), /* XSD Apr */
1592
new NameType("positiveInteger" , typeof(
UInt64
) ), /* XSD Apr */
1598
new NameType("unsignedLong" , typeof(
UInt64
) ), /* XSD Apr */
System.Data.Entity (11)
System\Data\Common\EntitySql\AST\Literal.cs (2)
289
UInt64
value;
290
if (!
UInt64
.TryParse(numberPart, NumberStyles.Integer, CultureInfo.InvariantCulture, out value))
System\Data\Objects\DataClasses\StructuralObject.cs (8)
1371
protected internal static
UInt64
SetValidValue(
UInt64
value, string propertyName)
1388
protected internal static
UInt64
SetValidValue(
UInt64
value)
1407
protected internal static Nullable<
UInt64
> SetValidValue(Nullable<
UInt64
> value, string propertyName)
1424
protected internal static Nullable<
UInt64
> SetValidValue(Nullable<
UInt64
> value)
System\Data\Objects\Internal\EntityProxyFactory.cs (1)
1255
propertyType == typeof(
UInt64
)||
System.Data.Linq (1)
SqlClient\Query\SqlMethodCallConverter.cs (1)
2421
targetType = typeof(
UInt64
);
System.Data.Services.Client (2)
System\Data\Services\Client\ClientConvert.cs (2)
347
return XmlConvert.ToString((
UInt64
)propertyValue);
483
types[(int)StorageType.UInt64] = typeof(
UInt64
);
System.Data.SqlXml (1)
System\Xml\Xsl\XsltOld\Processor.cs (1)
216
parameter is Int64 || parameter is
UInt64
||
System.IO.Log (5)
System\IO\Log\LogWriteRestartAreaState.cs (1)
492
if (this.newBaseLsn !=
UInt64
.MaxValue)
System\IO\Log\SequenceNumber.cs (4)
46
if (value ==
UInt64
.MaxValue)
48
this.sequenceNumberLow =
UInt64
.MaxValue;
69
return new SequenceNumber(
UInt64
.MaxValue,
UInt64
.MaxValue);
System.Management (24)
Instrumentation\SchemaMapping.cs (2)
411
else if(t2 == typeof(
UInt64
) || t2 == typeof(Int64) || t2 == typeof(Double))
530
else if(t2 == typeof(
UInt64
))
InteropClasses\WMIInterop.cs (4)
834
[PreserveSig] int ReadQWORD_([In] Int32 lHandle, [Out] out
UInt64
pqw);
835
[PreserveSig] int WriteQWORD_([In] Int32 lHandle, [In]
UInt64
pw);
1080
[PreserveSig] int GetInfo_([In] UInt32 uRequestedInfo, [Out] out
UInt64
puResponse);
1091
[PreserveSig] int GetInfo_([In] UInt32 uRequestedInfo, [Out] out
UInt64
puResponse);
property.cs (14)
300
val = new
UInt64
[length];
303
((
UInt64
[])val) [i] = Convert.ToUInt64((String)(wmiValueArray.GetValue(i)),(IFormatProvider)CultureInfo.CurrentCulture.GetFormat(typeof(System.
UInt64
)));
356
val = Convert.ToUInt64((String)wmiValue,(IFormatProvider)CultureInfo.CurrentCulture.GetFormat(typeof(System.
UInt64
)));
460
((String[])(wmiValue))[i] = (Convert.ToUInt64(valArray.GetValue(i),(IFormatProvider)culInfo.GetFormat(typeof(System.
UInt64
)))).ToString((IFormatProvider)culInfo.GetFormat(typeof(System.
UInt64
)));
567
wmiValue = (Convert.ToUInt64(val,(IFormatProvider)culInfo.GetFormat(typeof(System.
UInt64
)))).ToString((IFormatProvider)culInfo.GetFormat(typeof(System.
UInt64
)));
693
else if (elementType == typeof(System.
UInt64
))
701
((string[])wmiValue) [i] = ((System.
UInt64
)(arrayValue[i])).ToString((IFormatProvider)culInfo.GetFormat(typeof(System.
UInt64
)));
780
else if (valueType == typeof(System.
UInt64
))
783
wmiValue = ((System.
UInt64
)val).ToString((IFormatProvider)culInfo.GetFormat(typeof(System.
UInt64
)));
WmiGenerator.cs (4)
1889
Int64 test = System.Convert.ToInt64(ValueMap[i],(IFormatProvider)CultureInfo.InvariantCulture.GetFormat(typeof(System.
UInt64
)));
1897
typeof(System.
UInt64
))) == 0)
1993
Int64 test = System.Convert.ToInt64(BitMap[i],(IFormatProvider)CultureInfo.InvariantCulture.GetFormat(typeof(System.
UInt64
)));
2009
if( (System.Convert.ToInt64(BitMap[i],(IFormatProvider)CultureInfo.InvariantCulture.GetFormat(typeof(System.
UInt64
))) == 0) ) // Bug No: 121987
System.Messaging (2)
System\Messaging\ActiveXMessageFormatter.cs (2)
372
else if (obj is
UInt64
)
375
byte[] bytes = BitConverter.GetBytes((
UInt64
)obj);
System.Numerics (17)
System\Numerics\BigInteger.cs (16)
175
public bool Equals(
UInt64
other)
227
public int CompareTo(
UInt64
other)
455
public BigInteger(
UInt64
value)
1277
public static explicit operator
UInt64
(BigInteger value)
1659
public static bool operator <(BigInteger left,
UInt64
right)
1664
public static bool operator <=(BigInteger left,
UInt64
right)
1669
public static bool operator >(BigInteger left,
UInt64
right)
1674
public static bool operator >=(BigInteger left,
UInt64
right)
1679
public static bool operator ==(BigInteger left,
UInt64
right)
1684
public static bool operator !=(BigInteger left,
UInt64
right)
1690
public static bool operator <(
UInt64
left, BigInteger right)
1695
public static bool operator <=(
UInt64
left, BigInteger right)
1700
public static bool operator >(
UInt64
left, BigInteger right)
1705
public static bool operator >=(
UInt64
left, BigInteger right)
1710
public static bool operator ==(
UInt64
left, BigInteger right)
1715
public static bool operator !=(
UInt64
left, BigInteger right)
System\Numerics\Complex.cs (1)
232
public static implicit operator Complex(
UInt64
value) {
System.Runtime.Remoting (1)
metadata\sudscommon.cs (1)
87
internal static Type typeofUInt64 = typeof(
UInt64
);
System.Runtime.Serialization (14)
System\Runtime\Serialization\DataContract.cs (1)
754
type = typeof(
UInt64
);
System\Runtime\Serialization\Json\JsonReaderDelegator.cs (1)
337
internal override
UInt64
ReadElementContentAsUnsignedLong()
System\Runtime\Serialization\XmlReaderDelegator.cs (2)
652
internal virtual
UInt64
ReadElementContentAsUnsignedLong()
666
internal virtual
UInt64
ReadContentAsUnsignedLong()
System\Xml\XmlBinaryWriter.cs (1)
529
public override void WriteUInt64Text(
UInt64
value)
System\Xml\XmlConverter.cs (6)
339
static public
UInt64
ToUInt64(string value)
359
static public
UInt64
ToUInt64(byte[] buffer, int offset, int count)
422
static public string ToString(
UInt64
value) { return value.ToString(NumberFormatInfo.InvariantInfo); }
449
else if (value is
UInt64
)
450
return ToString((
UInt64
)value);
1024
static public int ToChars(
UInt64
value, byte[] buffer, int offset)
System\Xml\XmlNodeWriter.cs (2)
90
public abstract void WriteUInt64Text(
UInt64
value);
136
public override void WriteUInt64Text(
UInt64
value) { }
System\Xml\XmlSigningNodeWriter.cs (1)
241
public override void WriteUInt64Text(
UInt64
value)
System.ServiceModel (7)
System\ServiceModel\Channels\ReliableDuplexSessionChannel.cs (2)
18
UInt64
ackVersion = 1;
343
UInt64
oldAckVersion = 0;
System\ServiceModel\Channels\ReliableSessionBindingElement.cs (1)
741
UInt64
milliseconds = Convert.ToUInt64(timeSpan.TotalMilliseconds);
System\ServiceModel\Channels\ReliableSessionBindingElementImporter.cs (1)
248
UInt64
milliseconds = 0;
System\ServiceModel\Channels\WsrmFault.cs (1)
562
if (!
UInt64
.TryParse(maxMessageNumberString, out maxMessageNumber)
System\ServiceModel\MsmqIntegration\ActiveXSerializer.cs (2)
365
else if (obj is
UInt64
)
368
byte[] bytes = BitConverter.GetBytes((
UInt64
)obj);
System.ServiceModel.Internals (21)
System\Runtime\Diagnostics\DiagnosticEventProvider.cs (2)
286
else if (data is
UInt64
)
289
UInt64
* ulongptr = (ulong*)dataBuffer;
System\Runtime\Diagnostics\EtwProvider.cs (12)
748
eventDataPtr[0].DataPointer = (
UInt64
)(&value1);
768
eventDataPtr[0].DataPointer = (
UInt64
)(&value1);
771
eventDataPtr[1].DataPointer = (
UInt64
)(&value2);
791
eventDataPtr[0].DataPointer = (
UInt64
)(&value1);
794
eventDataPtr[1].DataPointer = (
UInt64
)(&value2);
797
eventDataPtr[2].DataPointer = (
UInt64
)(&value3);
817
eventDataPtr[0].DataPointer = (
UInt64
)(&value1);
837
eventDataPtr[0].DataPointer = (
UInt64
)(&value1);
840
eventDataPtr[1].DataPointer = (
UInt64
)(&value2);
860
eventDataPtr[0].DataPointer = (
UInt64
)(&value1);
863
eventDataPtr[1].DataPointer = (
UInt64
)(&value2);
866
eventDataPtr[2].DataPointer = (
UInt64
)(&value3);
System\Runtime\Interop\UnsafeNativeMethods.cs (1)
33
internal
UInt64
DataPointer;
System\Runtime\TypeHelper.cs (6)
365
result = (T)(object)(
UInt64
)byteSource;
417
result = (T)(object)(
UInt64
)uint16Source;
463
result = (T)(object)(
UInt64
)uint32Source;
496
UInt64
uint64Source = (
UInt64
)source;
529
result = (T)(object)(
UInt64
)charSource;
System.ServiceModel.Web (3)
System\ServiceModel\Dispatcher\QueryStringConverter.cs (3)
37
this.defaultSupportedQueryStringTypes.Add(typeof(
UInt64
), null);
101
return parameter == null ? default(
UInt64
) : XmlConvert.ToUInt64(parameter);
200
return XmlConvert.ToString((
UInt64
) parameter);
System.Web (6)
Security\AuthStoreRoleProvider.cs (1)
694
args[0] = (
UInt64
)token;
State\SessionStateItemCollection.cs (1)
185
t=typeof(
UInt64
);
UI\PropertyMapper.cs (1)
119
(type == typeof(
UInt64
)) ||
Util\altserialization.cs (3)
112
else if (value is
UInt64
) {
114
writer.Write((
UInt64
) value);
145
writer.Write((
UInt64
)v.ToUInt64());
System.Web.DataVisualization (4)
Common\DataManager\DataPoint.cs (3)
1530
else if(columnDataType == typeof(
UInt64
))
2062
else if(value is
UInt64
)
2064
return (double)((
UInt64
)value);
Common\DataManager\DataSeries.cs (1)
934
type == typeof(
UInt64
) ||
System.Web.Entity (2)
System\Data\WebControls\EntityDataSourceUtil.cs (2)
370
return typeof(
UInt64
);
423
return typeof(
UInt64
);
System.Web.Extensions (3)
Script\Serialization\JavaScriptSerializer.cs (1)
483
if ((underlyingType == typeof(Int64)) || (underlyingType == typeof(
UInt64
))) {
UI\WebControls\Dynamic.cs (2)
610
typeof(
UInt64
),
961
if (!
UInt64
.TryParse(text, out value))
System.Web.Services (1)
System\Web\Services\Protocols\Scalars.cs (1)
73
type == typeof(
UInt64
) ||
System.Windows.Forms (19)
parent\parent\parent\public\Internal\NDP\Inc\IsolationInterop.cs (15)
1041
UInt64
HashReference(
1046
UInt64
HashDefinition(
1150
UInt64
HashReference(
1155
UInt64
HashDefinition(
1686
[MarshalAs(UnmanagedType.U8)] public
UInt64
SizeReclaimationLimit;
1687
[MarshalAs(UnmanagedType.U8)] public
UInt64
RuntimeLimit;
1829
UInt64
ulonglongQuota,
1831
ref
UInt64
SizeSharedWithExternalDeployment,
1832
ref
UInt64
SizeConsumedByInputDeploymentArray
2084
public
UInt64
QueryChangeID(IDefinitionIdentity asm)
2086
UInt64
ChangeId;
2269
[In]
UInt64
ulonglongQuota,
2271
[Out, In] ref
UInt64
SizeSharedWithExternalDeployment,
2272
[Out, In] ref
UInt64
SizeConsumedByInputDeploymentArray
2330
UInt64
QueryChangeID(
winforms\Managed\System\WinForms\ComponentModel\COM2Interop\COM2TypeInfoProcessor.cs (1)
966
return typeof(
UInt64
);
winforms\Managed\System\WinForms\DataGridTable.cs (1)
1474
dataType.Equals(typeof(
UInt64
)) ||
winforms\Managed\System\WinForms\NativeMethods.cs (2)
4365
else if (t == typeof(
UInt64
)) {
4468
return (
UInt64
)longVal;
System.Windows.Forms.DataVisualization (4)
Common\DataManager\DataPoint.cs (3)
1530
else if(columnDataType == typeof(
UInt64
))
2062
else if(value is
UInt64
)
2064
return (double)((
UInt64
)value);
Common\DataManager\DataSeries.cs (1)
934
type == typeof(
UInt64
) ||
System.Xml (22)
System\Xml\BinaryXml\XmlBinaryReader.cs (3)
2896
map[(int)BinXmlToken.XSD_UNSIGNEDLONG] = typeof(
UInt64
);
3935
UInt64
GetUInt64(int pos) {
3939
return (
UInt64
)((ulong)hi) << 32 | lo;
System\Xml\Schema\XmlValueConverter.cs (2)
824
if (value < (decimal)
UInt64
.MinValue || value > (decimal)
UInt64
.MaxValue)
System\Xml\Serialization\CodeExporter.cs (1)
290
else if (type == typeof(
UInt64
)) {
System\Xml\Serialization\PrimitiveXmlSerializers.cs (2)
135
WriteElementStringRaw(@"unsignedLong", @"", System.Xml.XmlConvert.ToString((System.
UInt64
)((System.
UInt64
)o)));
System\Xml\Serialization\Types.cs (2)
466
AddPrimitive(typeof(
UInt64
), "unsignedLong", "UInt64", TypeFlags.CanBeAttributeValue | TypeFlags.CanBeElementValue | TypeFlags.XmlEncodingNotRequired);
562
AddSoapEncodedPrimitive(typeof(
UInt64
), "unsignedLong", ns, "UInt64", new XmlQualifiedName("string", XmlSchema.Namespace), TypeFlags.CanBeAttributeValue | TypeFlags.CanBeElementValue | TypeFlags.XmlEncodingNotRequired);
System\Xml\Serialization\XmlCodeExporter.cs (1)
243
type == typeof(
UInt64
)) {
System\Xml\Serialization\XmlSerializationReader.cs (3)
354
return typeof(
UInt64
);
417
return typeof(
UInt64
);
744
value = default(Nullable<
UInt64
>);
System\Xml\Serialization\XmlSerializationWriter.cs (1)
288
value = XmlConvert.ToString((
UInt64
)o);
System\Xml\XmlConvert.cs (5)
712
public static string ToString(
UInt64
value) {
1018
public static
UInt64
ToUInt64 (string s) {
1019
return
UInt64
.Parse(s, NumberStyles.AllowLeadingWhite|NumberStyles.AllowTrailingWhite, NumberFormatInfo.InvariantInfo);
1023
internal static Exception TryToUInt64(string s, out
UInt64
result) {
1024
if (!
UInt64
.TryParse(s, NumberStyles.AllowLeadingWhite|NumberStyles.AllowTrailingWhite, NumberFormatInfo.InvariantInfo, out result)) {
System\Xml\XPath\Internal\ExtensionQuery.cs (2)
104
if (value is
UInt64
) return (double)(
UInt64
)value;
WindowsBase (66)
Base\MS\Internal\IO\Packaging\CompoundFile\PrivateUnsafeNativeCompoundFileMethods.cs (14)
151
UInt64
offset,
162
UInt64
offset,
185
void UnsafeNativeILockBytes.SetSize(
UInt64
cb )
192
UInt64
libOffset,
193
UInt64
cb,
201
UInt64
libOffset,
202
UInt64
cb,
245
UInt64
offset,
250
UInt64
offset,
255
void SetSize(
UInt64
cb );
257
UInt64
libOffset,
258
UInt64
cb,
261
UInt64
libOffset,
262
UInt64
cb,
Base\MS\Internal\IO\Packaging\OlePropertyStructs.cs (1)
226
internal
UInt64
uhVal;
Base\MS\Internal\IO\Zip\ZipIOBlockManager.cs (5)
613
internal static int CopyBytes(
UInt64
value, byte[] buffer, int offset)
615
Debug.Assert(checked(buffer.Length-offset) >= sizeof(
UInt64
));
623
internal static
UInt64
ConvertToUInt64(UInt32 loverAddressValue, UInt32 higherAddressValue)
625
return checked((
UInt64
)loverAddressValue + (((
UInt64
)higherAddressValue) << 32));
Base\MS\Internal\IO\Zip\ZipIOExtraFieldZip64Element.cs (15)
67
if (size < sizeof(
UInt64
))
72
size -= sizeof(
UInt64
);
79
if (size < sizeof(
UInt64
))
84
size -= sizeof(
UInt64
);
91
if (size < sizeof(
UInt64
))
96
size -= sizeof(
UInt64
);
183
size += sizeof(
UInt64
);
188
size += sizeof(
UInt64
);
193
size += sizeof(
UInt64
);
233
_uncompressedSize = (
UInt64
)value;
250
_compressedSize = (
UInt64
)value;
267
_offsetOfLocalHeader = (
UInt64
)value;
335
private
UInt64
_uncompressedSize;
336
private
UInt64
_compressedSize;
337
private
UInt64
_offsetOfLocalHeader;
Base\MS\Internal\IO\Zip\ZipIOLocalFileDataDescriptor.cs (6)
160
writer.Write((
UInt64
)_compressedSize); // 8 bytes
161
writer.Write((
UInt64
)_uncompressedSize); // 8 bytes
219
UInt64
suspectCompressedSize,
220
UInt64
suspectUncompressedSize)
228
((
UInt64
) compressedSizeFromCentralDir == suspectCompressedSize) &&
229
((
UInt64
) uncompressedSizeFromCentralDir == suspectUncompressedSize) &&
Base\MS\Internal\IO\Zip\ZipIOZip64EndOfCentralDirectoryBlock.cs (11)
130
UInt64
centralDirCount = (
UInt64
)_blockManager.CentralDirectoryBlock.Count;
131
UInt64
centralDirBlockSize = (
UInt64
)_blockManager.CentralDirectoryBlock.Size;
132
UInt64
centralDirOffset = (
UInt64
)_blockManager.CentralDirectoryBlock.Offset;
435
private
UInt64
_sizeOfZip64EndOfCentralDirectory = _fixedMinimalValueOfSizeOfZip64EOCD;
440
private
UInt64
_totalNumberOfEntriesInTheCentralDirectoryOnThisDisk; // all int64s declared as signed values
441
private
UInt64
_totalNumberOfEntriesInTheCentralDirectory; // as we can not suport true unsigned 64 bit sizes
442
private
UInt64
_sizeOfTheCentralDirectory; // as a result of limitations in Stream interface
443
private
UInt64
_offsetOfStartOfCentralDirectoryWithRespectToTheStartingDiskNumber;
Base\MS\Internal\IO\Zip\ZipIOZip64EndOfCentralDirectoryLocatorBlock.cs (4)
118
UInt64
offsetOfStartOfZip64EndOfCentralDirectoryRecord =
119
(
UInt64
)_blockManager.Zip64EndOfCentralDirectoryBlock.Offset;
261
if ((
UInt64
)_offset <= _offsetOfStartOfZip64EndOfCentralDirectoryRecord) // we assume that _offset >=0
285
private
UInt64
_offsetOfStartOfZip64EndOfCentralDirectoryRecord;
Base\System\Windows\Markup\TypeConverterHelper.cs (3)
197
else if (typeof(
UInt64
).IsAssignableFrom(type))
281
else if (type == typeof(
UInt64
))
381
else if (typeof(
UInt64
).IsAssignableFrom(type))
Shared\MS\Internal\DoubleUtil.cs (3)
295
[FieldOffset(0)] internal
UInt64
UintValue;
308
UInt64
exp = t.UintValue & 0xfff0000000000000;
309
UInt64
man = t.UintValue & 0x000fffffffffffff;
Shared\MS\Utility\TraceProvider.cs (1)
324
else if (data is
UInt64
)
Shared\MS\Win32\NativeMethodsCLR.cs (1)
4780
return (
UInt64
)longVal;
Shared\MS\Win32\UnsafeNativeMethodsEventTrace.cs (2)
146
public
UInt64
HistoricalContext;
147
public
UInt64
TimeStamp;