HomeSort by: relevance | last modified time | path
    Searched defs:SGN (Results 1 - 12 of 12) sorted by relevancy

  /src/external/lgpl3/gmp/dist/tests/mpf/
t-cmp_d.c 28 #define SGN(n) ((n) > 0 ? 1 : (n) < 0 ? -1 : 0)
36 if (SGN(got) != cmp)
t-cmp_si.c 25 #define SGN(x) ((x) < 0 ? -1 : (x) == 0 ? 0 : 1)
95 if (SGN (got) != data[i].want)
108 if (SGN (got) != data[i].want)
  /src/external/lgpl3/gmp/dist/tests/mpq/
t-cmp_si.c 28 #define SGN(x) ((x)<0 ? -1 : (x) != 0)
82 if (SGN(got) != data[i].want)
97 if (SGN(got) != data[i].want)
t-cmp.c 26 #define SGN(x) ((x) < 0 ? -1 : (x) > 0 ? 1 : 0)
92 if (SGN (ccref) != SGN (cc))
t-cmp_ui.c 26 #define SGN(x) ((x) < 0 ? -1 : (x) > 0 ? 1 : 0)
92 if (SGN (ccref) != SGN (cc))
98 if (SGN (ccref) != SGN (cc))
107 if (SGN (ccref) != SGN (cc))
t-cmp_z.c 26 #define SGN(x) ((x) < 0 ? -1 : (x) > 0 ? 1 : 0)
80 if (ccref != SGN (cc))
137 if (SGN (ccref) != SGN (cc))
  /src/external/lgpl3/gmp/dist/tests/mpz/
t-cmp_si.c 25 #define SGN(x) ((x) < 0 ? -1 : (x) == 0 ? 0 : 1)
75 if (SGN (got) != data[i].want)
t-cmp_d.c 32 #define SGN(n) ((n) > 0 ? 1 : (n) < 0 ? -1 : 0)
41 if (SGN(got) != cmp)
61 if (SGN(got) != cmpabs)
  /src/games/phantasia/
macros.h 8 #define SGN(X) ((X) < 0 ? -1 : 1)
  /src/games/atc/
def.h 56 #define SGN(x) ((x < 0) ? -1 : ((x > 0) ? 1 : 0))
  /src/external/lgpl3/gmp/dist/mini-gmp/tests/
t-cmp_d.c 28 #define SGN(n) ((n) > 0 ? 1 : (n) < 0 ? -1 : 0)
37 if (SGN(got) != cmp)
58 if (SGN(got) != cmpabs)
  /src/lib/libc/isc/
ev_timers.c 111 #define SGN(x) ((x) < 0 ? (-1) : (x) > 0 ? (1) : (0));
116 return SGN(s);
119 return SGN(n);

Completed in 35 milliseconds