Home
last modified time | relevance | path

Searched defs:fn_bxa (Results 1 - 4 of 4) sorted by relevance

/third_party/ltp/tools/sparse/sparse-src/validation/optim/
H A Dfact-add-mul.c19 int fn_bxa(int b, int x, int a) { return ((x * b) + (a * x)) == ((b + a) * x); } in fn_bxa() function
H A Dfact-and-ior.c19 int fn_bxa(int b, int x, int a) { return ((x | b) & (a | x)) == ((b & a) | x); } in fn_bxa() function
H A Dfact-xor-and.c19 int fn_bxa(int b, int x, int a) { return ((x & b) ^ (a & x)) == ((b ^ a) & x); } in fn_bxa() function
H A Dfact-ior-and.c19 int fn_bxa(int b, int x, int a) { return ((x & b) | (a & x)) == ((b | a) & x); } in fn_bxa() function

Completed in 1 milliseconds