Searched defs:SGN (Results 1 – 15 of 15) sorted by relevance
28 #define SGN(n) ((n) > 0 ? 1 : (n) < 0 ? -1 : 0) macro
25 #define SGN(x) ((x) < 0 ? -1 : (x) == 0 ? 0 : 1) macro
32 #define SGN(n) ((n) > 0 ? 1 : (n) < 0 ? -1 : 0) macro
26 #define SGN(x) ((x) < 0 ? -1 : (x) > 0 ? 1 : 0) macro
28 #define SGN(x) ((x)<0 ? -1 : (x) != 0) macro
8 #define SGN(X) ((X) < 0 ? -1 : 1) macro
56 #define SGN(x) ((x < 0) ? -1 : ((x > 0) ? 1 : 0)) macro
111 #define SGN(x) ((x) < 0 ? (-1) : (x) > 0 ? (1) : (0)); in evCmpTime() macro
336 #define pp_wide_int(PP, W, SGN) \ argument
334 #define SGN(x) ((x)<0 ? -1 : (x) != 0) macro