10 instantiations of BigInt
System (10)
security\system\security\cryptography\bigint.cs (9)
344BigInt dividend = new BigInt(); 346BigInt divisor = new BigInt(); 367BigInt hold = new BigInt(); 448BigInt c = new BigInt(); 449BigInt tmp = new BigInt(); 471BigInt ten = new BigInt(0xA); 472BigInt numerator = new BigInt(); 473BigInt quotient = new BigInt(); 474BigInt remainder = new BigInt();
security\system\security\cryptography\x509\x509certificate2collection.cs (1)
469BigInt h = new BigInt();
33 references to BigInt
System (33)
security\system\security\cryptography\bigint.cs (32)
105public static bool operator < (BigInt value1, BigInt value2) { 125public static bool operator > (BigInt value1, BigInt value2) { 145public static bool operator == (BigInt value1, BigInt value2) { 165public static bool operator != (BigInt value1, BigInt value2) { 170if (obj is BigInt) { 171return (this == (BigInt) obj); 188internal static void Add (BigInt a, byte b, ref BigInt c) { 210internal static void Negate (ref BigInt a) { 227internal static void Subtract (BigInt a, BigInt b, ref BigInt c) { 282private static void Multiply (BigInt a, int b, ref BigInt c) { 329internal static void Divide (BigInt numerator, BigInt denominator, ref BigInt quotient, ref BigInt remainder) { 344BigInt dividend = new BigInt(); 346BigInt divisor = new BigInt(); 367BigInt hold = new BigInt(); 396internal void CopyFrom (BigInt a) { 448BigInt c = new BigInt(); 449BigInt tmp = new BigInt(); 471BigInt ten = new BigInt(0xA); 472BigInt numerator = new BigInt(); 473BigInt quotient = new BigInt(); 474BigInt remainder = new BigInt();
security\system\security\cryptography\x509\x509certificate2collection.cs (1)
469BigInt h = new BigInt();