5 instantiations of Byte
PresentationCore (4)
PresentationFramework (1)
531 references to Byte
CodeGenerator (5)
dotnet-svcutil-lib (20)
Microsoft.AspNetCore.Antiforgery (1)
Microsoft.AspNetCore.Antiforgery.Test (1)
Microsoft.AspNetCore.Components (1)
Microsoft.AspNetCore.Components.Server (13)
Microsoft.AspNetCore.Components.Server.Tests (1)
Microsoft.AspNetCore.Http.Abstractions (1)
Microsoft.AspNetCore.Http.Connections.Tests (1)
Microsoft.AspNetCore.Mvc.TagHelpers (1)
Microsoft.AspNetCore.Routing (1)
Microsoft.AspNetCore.Server.HttpSys (1)
Microsoft.AspNetCore.Server.IIS (1)
Microsoft.AspNetCore.Server.Kestrel.Core (10)
Microsoft.AspNetCore.Server.Kestrel.Core.Tests (9)
Microsoft.AspNetCore.Shared.Tests (3)
Microsoft.AspNetCore.SignalR.Common.Tests (2)
Microsoft.AspNetCore.SignalR.Microbenchmarks (2)
Microsoft.AspNetCore.SignalR.Protocols.MessagePack (1)
Microsoft.AspNetCore.WebUtilities (2)
Microsoft.AspNetCore.WebUtilities.Microbenchmarks (1)
Microsoft.AspNetCore.WebUtilities.Tests (1)
Microsoft.Build (1)
Microsoft.Build.Tasks.Core (7)
Microsoft.CodeAnalysis (23)
Microsoft.CodeAnalysis.CodeStyle (16)
Microsoft.CodeAnalysis.CSharp (1)
Microsoft.CodeAnalysis.CSharp.Features (1)
Microsoft.CodeAnalysis.CSharp.Symbol.UnitTests (2)
Microsoft.CodeAnalysis.Debugging.Package (4)
Microsoft.CodeAnalysis.ExpressionEvaluator.ExpressionCompiler (1)
Microsoft.CodeAnalysis.Features (5)
Microsoft.CodeAnalysis.Rebuild (2)
Microsoft.CodeAnalysis.Remote.Workspaces (1)
Microsoft.CodeAnalysis.Scripting (1)
Microsoft.CodeAnalysis.Scripting.Desktop.UnitTests (2)
Microsoft.CodeAnalysis.Test.Utilities (1)
Microsoft.CodeAnalysis.UnitTests (1)
Microsoft.CodeAnalysis.Workspaces (17)
Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost (2)
Microsoft.CodeAnalysis.Workspaces.UnitTests (19)
Microsoft.Data.Analysis (17)
Microsoft.DotNet.StrongName (1)
Microsoft.Extensions.Diagnostics.Testing.Tests (1)
Microsoft.Maui (2)
Microsoft.Maui.Controls (2)
Microsoft.Maui.Controls.Build.Tasks (1)
Microsoft.Maui.Controls.Xaml (2)
Microsoft.Maui.Graphics (4)
Microsoft.Maui.Graphics.Skia (20)
Microsoft.Maui.Graphics.Win2D.WinUI.Desktop (8)
Microsoft.ML.Core (2)
Microsoft.ML.Data (66)
Data\Conversion.cs (56)
29using U1 = Byte;
158AddStd<U1, U1>(Convert);
159AddStd<U1, U2>(Convert);
160AddStd<U1, U4>(Convert);
161AddStd<U1, U8>(Convert);
162AddStd<U1, UG>(Convert);
163AddStd<U1, R4>(Convert);
164AddStd<U1, R8>(Convert);
165AddAux<U1, SB>(Convert);
166AddStd<U1, BL>(Convert);
167AddStd<U1, TX>(Convert);
169AddStd<U2, U1>(Convert);
180AddStd<U4, U1>(Convert);
191AddStd<U8, U1>(Convert);
202AddStd<UG, U1>(Convert);
223AddStd<TX, U1>(Convert);
286AddIsDef<U1>(IsDefault);
295AddHasZero<U1>(HasZero);
304AddTryParse<U1>(TryParse);
784private bool IsDefault(in U1 src) => src == 0;
795private bool HasZero(in VBuffer<U1> src) { if (!src.IsDense) return true; var srcValues = src.GetValues(); for (int i = 0; i < srcValues.Length; i++) { if (srcValues[i] == 0) return true; } return false; }
839public void Convert(in U1 src, ref U1 dst) => dst = src;
840public void Convert(in U2 src, ref U1 dst) => dst = src <= U1.MaxValue ? (U1)src : (U1)0;
841public void Convert(in U4 src, ref U1 dst) => dst = src <= U1.MaxValue ? (U1)src : (U1)0;
842public void Convert(in U8 src, ref U1 dst) => dst = src <= U1.MaxValue ? (U1)src : (U1)0;
843public void Convert(in UG src, ref U1 dst) => dst = src.High == 0 && src.Low <= U1.MaxValue ? (U1)src.Low : (U1)0;
847public void Convert(in U1 src, ref U2 dst) => dst = src;
855public void Convert(in U1 src, ref U4 dst) => dst = src;
863public void Convert(in U1 src, ref U8 dst) => dst = src;
871public void Convert(in U1 src, ref UG dst) => dst = new UG(src, 0);
883public void Convert(in U1 src, ref R4 dst) => dst = src;
901public void Convert(in U1 src, ref R8 dst) => dst = src;
919public void Convert(in U1 src, ref SB dst) => ClearDst(ref dst).Append(src);
944public void Convert(in U1 src, ref TX dst) => dst = src.ToString().AsMemory();
964public void Convert(in U1 src, ref BL dst) => dst = System.Convert.ToBoolean(src);
985public bool TryParse(in TX src, out U1 dst)
988if (!TryParse(in src, out res) || res > U1.MaxValue)
993dst = (U1)res;
1485private U1 ParseU1(in TX span)
1490if (res > U1.MaxValue)
1492return (U1)res;
1649public void Convert(in TX span, ref U1 value)
Microsoft.ML.FastTree (4)
Microsoft.ML.ImageAnalytics (2)
Microsoft.ML.OnnxTransformer (3)
Microsoft.ML.Parquet (2)
Microsoft.Net.Http.Headers (5)
mscorlib (1)
netstandard (1)
PresentationBuildTasks (4)
PresentationCore (108)
MS\Internal\Media\ParserStreamGeometryContext.cs (10)
308Byte currentByte;
373private static void DeserializeFillRule(BinaryReader br, Byte firstByte, StreamGeometry geometry)
386private static void DeserializeBeginFigure(BinaryReader br, Byte firstByte, StreamGeometryContext sc)
397private static void DeserializeLineTo(BinaryReader br, Byte firstByte, StreamGeometryContext sc)
443private static void DeserializePolyLineTo(BinaryReader br, Byte firstByte, StreamGeometryContext sc)
454private static void DeserializePolyQuadraticBezierTo(BinaryReader br, Byte firstByte, StreamGeometryContext sc)
465private static void DeserializePolyBezierTo(BinaryReader br, Byte firstByte, StreamGeometryContext sc)
531private static IList<Point> DeserializeListOfPointsAndTwoBools(BinaryReader br, Byte firstByte, out bool bool1, out bool bool2)
556private static void DeserializePointAndTwoBools(BinaryReader br, Byte firstByte, out Point point, out bool bool1, out bool bool2)
665Byte packedByte = PackByte(opCode, bool1, bool2);
System\Windows\Media\Animation\Generated\ByteAnimation.cs (32)
32private Byte[] _keyValues;
47Type typeofProp = typeof(Byte?);
56new PropertyMetadata((Byte?)null, propCallback),
63new PropertyMetadata((Byte?)null, propCallback),
70new PropertyMetadata((Byte?)null, propCallback),
94public ByteAnimation(Byte toValue, Duration duration)
106public ByteAnimation(Byte toValue, Duration duration, FillBehavior fillBehavior)
119public ByteAnimation(Byte fromValue, Byte toValue, Duration duration)
132public ByteAnimation(Byte fromValue, Byte toValue, Duration duration, FillBehavior fillBehavior)
205protected override Byte GetCurrentValueCore(Byte defaultOriginValue, Byte defaultDestinationValue, AnimationClock animationClock)
222Byte from = new Byte();
223Byte to = new Byte();
224Byte accumulated = new Byte();
225Byte foundation = new Byte();
339Byte accumulator = AnimatedTypeHelpers.SubtractByte(to, from);
364_keyValues = new Byte[2];
371_keyValues = new Byte[2];
378_keyValues = new Byte[1];
385_keyValues = new Byte[1];
391_keyValues = new Byte[1];
412Byte? typedValue = (Byte?)value;
432public Byte? From
436return (Byte?)GetValue(FromProperty);
452public Byte? To
456return (Byte?)GetValue(ToProperty);
472public Byte? By
476return (Byte?)GetValue(ByProperty);
PresentationFramework (14)
ReachFramework (58)
Roslyn.Test.PdbUtilities (8)
System.Linq.Expressions (3)
System.Private.CoreLib (3)
System.Reflection.Metadata (2)
System.Runtime (1)