Home
last modified time | relevance | path

Searched refs:fl_bxa (Results 1 – 4 of 4) sorted by relevance

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