Lines Matching defs:one
93 struct crypto_bignum *tmp, *pm1, *one;
97 one = crypto_bignum_init_set((const u8 *) "\x01", 1);
98 if (!tmp || !pm1 || !one ||
99 crypto_bignum_sub(prime, one, pm1) < 0 ||
101 crypto_bignum_add(tmp, one, tmp) < 0) {
107 crypto_bignum_deinit(one, 0);
226 struct crypto_bignum *tmp, *one;
236 one = crypto_bignum_init_uint(1);
241 !tmp || !one ||
243 crypto_bignum_add(prime, one, tmp) < 0 ||
250 crypto_bignum_deinit(one, 0);