Home
last modified time | relevance | path

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

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