Lines Matching refs:lshift1
1326 BIGNUM *a = NULL, *lshift1 = NULL, *zero = NULL, *ret = NULL; in file_lshift1() local
1331 || !TEST_ptr(lshift1 = getBN(s, "LShift1")) in file_lshift1()
1342 || !equalBN("A + A", lshift1, ret) in file_lshift1()
1344 || !equalBN("A * 2", lshift1, ret) in file_lshift1()
1345 || !TEST_true(BN_div(ret, remainder, lshift1, two, ctx)) in file_lshift1()
1349 || !equalBN("A << 1", lshift1, ret) in file_lshift1()
1350 || !TEST_true(BN_rshift1(ret, lshift1)) in file_lshift1()
1352 || !TEST_true(BN_rshift1(ret, lshift1)) in file_lshift1()
1357 if (!TEST_true(BN_set_bit(lshift1, 0)) in file_lshift1()
1358 || !TEST_true(BN_div(ret, NULL /* rem */ , lshift1, two, ctx)) in file_lshift1()
1360 || !TEST_true(BN_rshift1(ret, lshift1)) in file_lshift1()
1367 BN_free(lshift1); in file_lshift1()