7 references to One
System.Private.CoreLib (7)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int128.cs (7)
819
result |= ((
One
<< ((Size * 8) - 1)) >> (((Size - source.Length) * 8) - 1));
897
result |= ((
One
<< ((Size * 8) - 1)) >> (((Size - source.Length) * 8) - 1));
1038
public static Int128 operator --(Int128 value) => value -
One
;
1041
public static Int128 operator checked --(Int128 value) => checked(value -
One
);
1101
public static Int128 operator ++(Int128 value) => value +
One
;
1104
public static Int128 operator checked ++(Int128 value) => checked(value +
One
);
1132
static Int128 IMultiplicativeIdentity<Int128, Int128>.MultiplicativeIdentity =>
One
;