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