1 write to Low
Microsoft.ML.DataView (1)
DataViewRowId.cs (1)
33
Low
= low;
39 references to Low
Microsoft.ML.Data (12)
Data\Conversion.cs (9)
843
public void Convert(in UG src, ref U1 dst) => dst = src.High == 0 && src.
Low
<= U1.MaxValue ? (U1)src.
Low
: (U1)0;
851
public void Convert(in UG src, ref U2 dst) => dst = src.High == 0 && src.
Low
<= U2.MaxValue ? (U2)src.
Low
: (U2)0;
859
public void Convert(in UG src, ref U4 dst) => dst = src.High == 0 && src.
Low
<= U4.MaxValue ? (U4)src.
Low
: (U4)0;
867
public void Convert(in UG src, ref U8 dst) => dst = src.High == 0 ? src.
Low
: (U8)0;
923
public void Convert(in UG src, ref SB dst) { ClearDst(ref dst); dst.AppendFormat("0x{0:x16}{1:x16}", src.High, src.
Low
); }
948
public void Convert(in UG src, ref TX dst) => dst = string.Format("0x{0:x16}{1:x16}", src.High, src.
Low
).AsMemory();
DataLoadSave\Binary\UnsafeTypeOps.cs (1)
198
public override void Write(DataViewRowId a, BinaryWriter writer) { writer.Write(a.
Low
); writer.Write(a.High); }
Transforms\Hashing.cs (2)
868
var hash = Hashing.MurmurRound(seed, Utils.GetLo(value.
Low
));
869
var hi = Utils.GetHi(value.
Low
);
Microsoft.ML.DataView (11)
DataViewRowId.cs (11)
40
return string.Format("{0:x16}{1:x16}", High,
Low
);
46
return result == 0 ?
Low
.CompareTo(other.
Low
) : result;
51
return
Low
== other.
Low
&& High == other.High;
66
(uint)
Low
^ (uint)(
Low
>> 32) ^
125
ulong h1 =
Low
;
146
ulong h1 =
Low
;
168
var h1 =
Low
;
172
ulong k1 = other.
Low
; // First 8 bytes.
Microsoft.ML.StandardTrainers (8)
Standard\SdcaBinary.cs (8)
389
if (id.High > 0 || id.
Low
>= (ulong)maxTrainingExamples)
397
if (id.
Low
> idLoMax)
398
idLoMax = id.
Low
;
1119
Contracts.Assert((long)id.
Low
< maxTrainingExamples);
1120
return (long)id.
Low
;
1150
Contracts.Assert((long)id.
Low
< maxTrainingExamples);
1151
return (long)id.
Low
;
1357
ulong lo = value.
Low
;
Microsoft.ML.Transforms (8)
MissingValueReplacingUtils.cs (8)
107
ulong resLo = left.
Low
+ right;
116
ulong resLo = left.
Low
- right;
117
if (resLo > left.
Low
)
124
return left.High == 0 && left.
Low
== right;
129
return left.High > 0 || left.
Low
>= right;
134
return left.High > 0 || left.
Low
> right;
142
return value.High * ((double)(1UL << 32) * (1UL << 32)) + value.
Low
;
476
Contracts.Assert(count.High != 0 || count.
Low
>= (ulong)_cna);