Lines Matching defs:one
90 struct crypto_bignum *tmp, *pm1, *one;
94 one = crypto_bignum_init_set((const u8 *) "\x01", 1);
95 if (!tmp || !pm1 || !one ||
96 crypto_bignum_sub(prime, one, pm1) < 0 ||
98 crypto_bignum_add(tmp, one, tmp) < 0) {
104 crypto_bignum_deinit(one, 0);
223 struct crypto_bignum *tmp, *one;
233 one = crypto_bignum_init_uint(1);
238 !tmp || !one ||
240 crypto_bignum_add(prime, one, tmp) < 0 ||
247 crypto_bignum_deinit(one, 0);