1 write to High
Microsoft.ML.DataView (1)
DataViewRowId.cs (1)
34
High
= high;
34 references to High
Microsoft.ML.Data (10)
Data\Conversion.cs (6)
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 (3)
872
if (old && value.
High
!= 0)
874
hash = Hashing.MurmurRound(hash, Utils.GetLo(value.
High
));
875
hi = Utils.GetHi(value.
High
);
Microsoft.ML.DataView (12)
DataViewRowId.cs (12)
40
return string.Format("{0:x16}{1:x16}",
High
, Low);
45
int result =
High
.CompareTo(other.
High
);
51
return Low == other.Low &&
High
== other.
High
;
67
(uint)(
High
<< 7) ^ (uint)(
High
>> 57) ^ (uint)(
High
>> (57 - 32)));
126
ulong h2 =
High
;
147
ulong h2 =
High
;
169
var h2 =
High
;
173
ulong k2 = other.
High
; // Second 8 bytes.
Microsoft.ML.StandardTrainers (5)
Standard\SdcaBinary.cs (5)
389
if (id.
High
> 0 || id.Low >= (ulong)maxTrainingExamples)
396
Contracts.Assert(id.
High
== 0);
1118
Contracts.Assert(id.
High
== 0);
1149
Contracts.Assert(id.
High
== 0);
1358
ulong hi = value.
High
;
Microsoft.ML.Transforms (7)
MissingValueReplacingUtils.cs (7)
106
ulong resHi = left.
High
;
115
ulong resHi = left.
High
;
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);