Home
last modified time | relevance | path

Searched refs:nuint (Results 1 – 25 of 25) sorted by relevance

/dports/lang/mono/mono-5.10.1.57/mono/mini/
H A Dbuiltin-types.cs280 var z = new nuint (new nuint (20u)); in test_0_nuint_ctor()
1709 public static nuint operator + (nuint v) { return new nuint (+v.v); } in operator +() argument
1710 public static nuint operator ~ (nuint v) { return new nuint (~v.v); } in operator ~() argument
1734 public static nuint operator + (nuint l, nuint r) { return new nuint (l.v + r.v); } in operator +() argument
1735 public static nuint operator - (nuint l, nuint r) { return new nuint (l.v - r.v); } in operator -() argument
1736 public static nuint operator * (nuint l, nuint r) { return new nuint (l.v * r.v); } in operator *() argument
1737 public static nuint operator / (nuint l, nuint r) { return new nuint (l.v / r.v); } in operator /() argument
1738 public static nuint operator % (nuint l, nuint r) { return new nuint (l.v % r.v); } in operator %() argument
1739 public static nuint operator & (nuint l, nuint r) { return new nuint (l.v & r.v); } in operator &() argument
1740 public static nuint operator | (nuint l, nuint r) { return new nuint (l.v | r.v); } in operator |() argument
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corert/src/System.Private.CoreLib/src/System/
H A DBuffer.cs18 using nuint = System.UInt64; typedef
20 using nuint = System.UInt32; typedef
31 nuint uSrcLen; in BlockCopy()
32 nuint uDstLen; in BlockCopy()
43 uSrcLen = (nuint)src.Length; in BlockCopy()
81 nuint uCount = (nuint)count; in BlockCopy()
82 nuint uSrcOffset = (nuint)srcOffset; in BlockCopy()
83 nuint uDstOffset = (nuint)dstOffset; in BlockCopy()
262 Memmove(dest, src, (nuint)len); in Memcpy()
276 if (((nuint)dest - (nuint)src < len) || ((nuint)src - (nuint)dest < len)) goto PInvoke; in Memmove()
[all …]
H A DArray.CoreRT.cs21 using nuint = System.UInt64; typedef
23 using nuint = System.UInt32; typedef
440 nuint sourceElementSize = sourceArray.ElementSize; in CopyImplValueTypeArrayToReferenceArray()
467 nuint destinationElementSize = destinationArray.ElementSize; in CopyImplReferenceArrayToValueTypeArray()
518 nuint cbElementSize = sourceArray.ElementSize; in CopyImplValueTypeArrayWithInnerGcRefs()
523 pSourceElement += (nuint)length * cbElementSize; in CopyImplValueTypeArrayWithInnerGcRefs()
567 nuint elementSize = sourceArray.ElementSize; in CopyImplValueTypeArrayNoInnerGcRefs()
572 nuint cbCopy = elementSize * (nuint)length; in CopyImplValueTypeArrayNoInnerGcRefs()
590 nuint srcElementSize = sourceArray.ElementSize; in CopyImplPrimitiveTypeWithWidening()
591 nuint destElementSize = destinationArray.ElementSize; in CopyImplPrimitiveTypeWithWidening()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corert/src/Runtime.Base/src/System/Runtime/
H A DThunkPool.cs44 using nuint = System.UInt64; typedef
47 using nuint = System.UInt32; typedef
57 public const nuint PageSizeMask = 0xFFF;
58 public const nuint AllocationGranularityMask = 0xFFFF;
115 Debug.Assert(((nuint)thunkDataBlock % Constants.PageSize) == 0); in ThunksHeap()
171 Debug.Assert(((nuint)thunkDataBlock % Constants.PageSize) == 0); in ExpandHeap()
230 …int thunkIndex = (int)(((nuint)nextAvailableThunkPtr) - ((nuint)nextAvailableThunkPtr & ~Constants… in AllocateThunk()
266 nuint thunkAddressValue = (nuint)ClearThumbBit(thunkAddress); in IsThunkInHeap()
272 if (thunkAddressValue >= (nuint)currentBlock._blockBaseAddress && in IsThunkInHeap()
273 …thunkAddressValue < (nuint)currentBlock._blockBaseAddress + (nuint)(Constants.NumThunksPerBlock * … in IsThunkInHeap()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corert/src/System.Private.CoreLib/shared/System/
H A DSpan.NonGeneric.cs13 using nuint = System.UInt64; typedef
15 using nuint = System.UInt32; typedef
183 nuint byteCount = (nuint)elementsCount * (nuint)Unsafe.SizeOf<T>(); in CopyTo()
203 internal static unsafe void ClearWithoutReferences(ref byte b, nuint byteLength) in ClearWithoutReferences()
415 nuint i = 0; // byte offset at which we're copying in ClearWithoutReferences()
446 nuint end = byteLength - 16; in ClearWithoutReferences()
457 nuint counter; in ClearWithoutReferences()
521 internal static unsafe void ClearWithReferences(ref IntPtr ip, nuint pointerSizeLength) in ClearWithReferences()
528 nuint i = 0; in ClearWithReferences()
529 nuint n = 0; in ClearWithReferences()
[all …]
H A DUIntPtr.cs11 using nuint = System.UInt64; typedef
13 using nuint = System.UInt32; typedef
183 return new UIntPtr((nuint)pointer._value + (nuint)offset); in operator +()
196 return new UIntPtr((nuint)pointer._value - (nuint)offset); in operator -()
205 return sizeof(nuint);
218 return ((nuint)_value).ToString(CultureInfo.InvariantCulture); in ToString()
H A DSpan.cs14 using nuint = System.UInt64; typedef
16 using nuint = System.UInt32; typedef
209 …(ref Unsafe.As<T, IntPtr>(ref _pointer.Value), (nuint)_length * (nuint)(Unsafe.SizeOf<T>() / sizeo… in Clear()
213 …arWithoutReferences(ref Unsafe.As<T, byte>(ref _pointer.Value), (nuint)_length * (nuint)Unsafe.Siz… in Clear()
234 nuint length = (uint)_length; in Fill()
242 nuint elementSize = (uint)Unsafe.SizeOf<T>(); in Fill()
243 nuint i = 0; in Fill()
244 for (; i < (length & ~(nuint)7); i += 8) in Fill()
255 if (i < (length & ~(nuint)3)) in Fill()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/Common/src/CoreLib/System/
H A DSpan.NonGeneric.cs13 using nuint = System.UInt64; typedef
15 using nuint = System.UInt32; typedef
259 nuint byteCount = (nuint)elementsCount * (nuint)Unsafe.SizeOf<T>(); in CopyTo()
279 internal static unsafe void ClearWithoutReferences(ref byte b, nuint byteLength) in ClearWithoutReferences()
491 nuint i = 0; // byte offset at which we're copying in ClearWithoutReferences()
522 nuint end = byteLength - 16; in ClearWithoutReferences()
533 nuint counter; in ClearWithoutReferences()
597 internal static unsafe void ClearWithReferences(ref IntPtr ip, nuint pointerSizeLength) in ClearWithReferences()
604 nuint i = 0; in ClearWithReferences()
605 nuint n = 0; in ClearWithReferences()
[all …]
H A DUIntPtr.cs11 using nuint = System.UInt64; typedef
13 using nuint = System.UInt32; typedef
183 return new UIntPtr((nuint)pointer._value + (nuint)offset); in operator +()
196 return new UIntPtr((nuint)pointer._value - (nuint)offset); in operator -()
205 return sizeof(nuint);
218 return ((nuint)_value).ToString(CultureInfo.InvariantCulture); in ToString()
H A DSpan.cs14 using nuint = System.UInt64; typedef
16 using nuint = System.UInt32; typedef
209 …(ref Unsafe.As<T, IntPtr>(ref _pointer.Value), (nuint)_length * (nuint)(Unsafe.SizeOf<T>() / sizeo… in Clear()
213 …arWithoutReferences(ref Unsafe.As<T, byte>(ref _pointer.Value), (nuint)_length * (nuint)Unsafe.Siz… in Clear()
234 nuint length = (uint)_length; in Fill()
242 nuint elementSize = (uint)Unsafe.SizeOf<T>(); in Fill()
243 nuint i = 0; in Fill()
244 for (; i < (length & ~(nuint)7); i += 8) in Fill()
255 if (i < (length & ~(nuint)3)) in Fill()
/dports/lang/mono/mono-5.10.1.57/external/corert/src/System.Private.StackTraceMetadata/src/Internal/StackTraceMetadata/
H A DStackTraceMetadata.cs19 using nuint = System.UInt64; typedef
22 using nuint = System.UInt32; typedef
56 int rva = (int)((nuint)methodStartAddress - (nuint)moduleStartAddress); in GetMethodNameFromStartAddressIfAvailable()
231 int methodRva = (int)((nuint)pointer - (nuint)handle.OsModuleBase); in PopulateRvaToTokenMap()
/dports/lang/mono/mono-5.10.1.57/external/corert/src/System.Private.CoreLib/src/System/Runtime/InteropServices/
H A DPInvokeMarshal.cs16 using nuint = System.UInt64; typedef
18 using nuint = System.UInt32; typedef
128 nuint bytesToCopy = (nuint)length * destination.ElementSize; in CopyToManaged()
129 nuint startOffset = (nuint)startIndex * destination.ElementSize; in CopyToManaged()
153 nuint bytesToCopy = (nuint)length * source.ElementSize; in CopyToNative()
154 nuint startOffset = (nuint)startIndex * source.ElementSize; in CopyToNative()
168 … byte* p = (byte*)Unsafe.AsPointer(ref arr.GetRawArrayData()) + (nuint)index * arr.ElementSize; in UnsafeAddrOfPinnedArrayElement()
/dports/lang/mono/mono-5.10.1.57/external/nunit-lite/NUnitLite-1.0.0/src/framework/Constraints/
H A DNumerics.cs84 if (obj is System.nuint) return true; in IsFixedPointNumeric()
128 _ulong = (expected is nuint || actual is nuint); in AreEqual()
144 _uint = (expected is nuint || actual is nuint); in AreEqual()
399 _ulong = (expected is nuint || actual is nuint); in Compare()
415 _uint = (expected is nuint || actual is nuint); in Compare()
/dports/lang/mono/mono-5.10.1.57/external/corert/src/Test.CoreLib/src/System/Runtime/
H A DRuntimeImports.cs12 using nuint = System.UInt64; typedef
14 using nuint = System.UInt32; typedef
111 …nal static extern unsafe void RhBulkMoveWithWriteBarrier(ref byte dmem, ref byte smem, nuint size); in RhBulkMoveWithWriteBarrier()
/dports/lang/mono/mono-5.10.1.57/external/corert/src/System.Private.CoreLib/shared/Internal/Runtime/CompilerServices/
H A DUnsafe.cs10 using nuint = System.UInt64; typedef
13 using nuint = System.UInt32; typedef
150 internal static ref T AddByteOffset<T>(ref T source, nuint byteOffset) in AddByteOffset()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/Common/src/CoreLib/Internal/Runtime/CompilerServices/
H A DUnsafe.cs10 using nuint = System.UInt64; typedef
13 using nuint = System.UInt32; typedef
150 internal static ref T AddByteOffset<T>(ref T source, nuint byteOffset) in AddByteOffset()
/dports/lang/mono/mono-5.10.1.57/external/corert/src/System.Private.CoreLib/src/System/Runtime/
H A DRuntimeImports.cs14 using nuint = System.UInt64; typedef
16 using nuint = System.UInt32; typedef
662 …nal static extern unsafe void RhBulkMoveWithWriteBarrier(ref byte dmem, ref byte smem, nuint size); in RhBulkMoveWithWriteBarrier()
871 internal static extern unsafe void memmove(byte* dmem, byte* smem, nuint size); in memmove()
874 internal static extern unsafe void memset(byte* mem, int value, nuint size); in memset()
878 internal unsafe static void RhZeroMemory(ref byte b, nuint byteLength) in RhZeroMemory()
888 memset((byte*)p, 0, (nuint)byteLength); in RhZeroMemory()
/dports/lang/go-devel/go-becaeea1199b875bc24800fa88f2f4fea119bf78/src/cmd/compile/internal/walk/
H A Dassign.go493 nuint := typecheck.Conv(nn, types.Types[types.TUINT])
495 nif.Cond = ir.NewBinaryExpr(base.Pos, ir.OGT, nuint, scapuint)
660 nuint := typecheck.Conv(nn, types.Types[types.TUINT])
662 nif := ir.NewIfStmt(base.Pos, ir.NewBinaryExpr(base.Pos, ir.OGT, nuint, capuint), nil, nil)
/dports/www/nextcloud/nextcloud/apps-pkg/text/js/highlight/
H A Dcsharp.js.map1 …',\n 'enum',\n 'float',\n 'int',\n 'long',\n 'nint',\n 'nuint',\n 'object',\n…
/dports/lang/go-devel/go-dragonfly-amd64-bootstrap/src/cmd/compile/internal/gc/
H A Dwalk.go2636 nuint := conv(nn, types.Types[TUINT])
2638 nif.Left = nod(OGT, nuint, scapuint)
2808 nuint := conv(nn, types.Types[TUINT])
2810 nif := nod(OIF, nod(OGT, nuint, capuint), nil)
/dports/textproc/ro-hunspell/ro-hunspell-3.3.10/
H A Dro_RO.dic92824 obișnuint/Q
H A Dro_RO-ante1993.dic92824 obișnuint/Q
/dports/editors/texstudio/texstudio-4.1.2/utilities/dictionaries/
H A Dro_RO-Romanian.dic92824 obișnuint/Q
/dports/www/dooble/dooble-2021.12.05/Dictionaries/ro/
H A Dro_RO.dic92490 obișnuint/Q
/dports/www/mattermost-webapp/mattermost/client/
H A Dmain.ea67f64bfaca6bdc766a.js.map1 …',\n 'enum',\n 'float',\n 'int',\n 'long',\n 'nint',\n 'nuint',\n 'object',\n…