You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
#include "test_I.h"
int test_I_logbitp (int iterations) { int error = 0; int i; // Check against ash and oddp.
for (i = iterations; i > 0; i--) { uintL a = random32() % 1024; cl_I b = testrandom_I(); ASSERT2(logbitp(a,b) == oddp(ash(b,-(sintL)a)), a,b); } // Check against ash and logand.
for (i = iterations; i > 0; i--) { uintL a = random32() % 1024; cl_I b = testrandom_I(); ASSERT2(logbitp(a,b) == !zerop(logand(b,ash(1,(sintL)a))), a,b); } // Check against each other.
for (i = iterations; i > 0; i--) { uintL a = random32() % 1024; cl_I b = testrandom_I(); ASSERT2(logbitp((cl_I)a,b) == logbitp(a,b), a,b); } return error; }
|