7 references to One
System.Private.CoreLib (7)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int128.cs (7)
825
result |= ((
One
<< ((Size * 8) - 1)) >> (((Size - source.Length) * 8) - 1));
903
result |= ((
One
<< ((Size * 8) - 1)) >> (((Size - source.Length) * 8) - 1));
1044
public static Int128 operator --(Int128 value) => value -
One
;
1047
public static Int128 operator checked --(Int128 value) => checked(value -
One
);
1107
public static Int128 operator ++(Int128 value) => value +
One
;
1110
public static Int128 operator checked ++(Int128 value) => checked(value +
One
);
1138
static Int128 IMultiplicativeIdentity<Int128, Int128>.MultiplicativeIdentity =>
One
;