7 references to One
System.Private.CoreLib (7)
src\libraries\System.Private.CoreLib\src\System\Int128.cs (7)
824
result |= ((
One
<< ((Size * 8) - 1)) >> (((Size - source.Length) * 8) - 1));
909
result |= ((
One
<< ((Size * 8) - 1)) >> (((Size - source.Length) * 8) - 1));
1050
public static Int128 operator --(Int128 value) => value -
One
;
1053
public static Int128 operator checked --(Int128 value) => checked(value -
One
);
1113
public static Int128 operator ++(Int128 value) => value +
One
;
1116
public static Int128 operator checked ++(Int128 value) => checked(value +
One
);
1144
static Int128 IMultiplicativeIdentity<Int128, Int128>.MultiplicativeIdentity =>
One
;