Home
last modified time | relevance | path

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

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