Lines Matching refs:b1
25 static BIGNUM *b1; variable
33 b1 = BN_new(); in FuzzerInitialize()
72 OPENSSL_assert(BN_bin2bn(buf, l1, b1) == b1); in FuzzerTestOneInput()
73 BN_set_negative(b1, s1); in FuzzerTestOneInput()
83 OPENSSL_assert(BN_div(b3, b4, b1, b2, ctx)); in FuzzerTestOneInput()
84 if (BN_is_zero(b1)) in FuzzerTestOneInput()
86 else if (BN_is_negative(b1)) in FuzzerTestOneInput()
95 success = success && BN_cmp(b5, b1) == 0; in FuzzerTestOneInput()
97 BN_print_fp(stdout, b1); in FuzzerTestOneInput()
107 printf("%d %d %d %d %d %d %d\n", BN_is_negative(b1), in FuzzerTestOneInput()
112 BN_cmp(b5, b1)); in FuzzerTestOneInput()
125 BN_free(b1); in FuzzerCleanup()