Home
last modified time | relevance | path

Searched defs:SGN (Results 1 – 15 of 15) sorted by relevance

/netbsd-src/external/lgpl3/gmp/dist/tests/mpf/
H A Dt-cmp_d.c28 #define SGN(n) ((n) > 0 ? 1 : (n) < 0 ? -1 : 0) macro
H A Dt-cmp_si.c25 #define SGN(x) ((x) < 0 ? -1 : (x) == 0 ? 0 : 1) macro
/netbsd-src/external/lgpl3/gmp/dist/tests/mpz/
H A Dt-cmp_si.c25 #define SGN(x) ((x) < 0 ? -1 : (x) == 0 ? 0 : 1) macro
H A Dt-cmp_d.c32 #define SGN(n) ((n) > 0 ? 1 : (n) < 0 ? -1 : 0) macro
/netbsd-src/external/lgpl3/gmp/dist/tests/mpq/
H A Dt-cmp.c26 #define SGN(x) ((x) < 0 ? -1 : (x) > 0 ? 1 : 0) macro
H A Dt-cmp_si.c28 #define SGN(x) ((x)<0 ? -1 : (x) != 0) macro
H A Dt-cmp_ui.c26 #define SGN(x) ((x) < 0 ? -1 : (x) > 0 ? 1 : 0) macro
H A Dt-cmp_z.c26 #define SGN(x) ((x) < 0 ? -1 : (x) > 0 ? 1 : 0) macro
/netbsd-src/games/phantasia/
H A Dmacros.h8 #define SGN(X) ((X) < 0 ? -1 : 1) macro
/netbsd-src/games/atc/
H A Ddef.h56 #define SGN(x) ((x < 0) ? -1 : ((x > 0) ? 1 : 0)) macro
/netbsd-src/external/lgpl3/gmp/dist/mini-gmp/tests/
H A Dt-cmp_d.c28 #define SGN(n) ((n) > 0 ? 1 : (n) < 0 ? -1 : 0) macro
/netbsd-src/lib/libc/isc/
H A Dev_timers.c111 #define SGN(x) ((x) < 0 ? (-1) : (x) > 0 ? (1) : (0)); in evCmpTime() macro
/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Dpretty-print.h336 #define pp_wide_int(PP, W, SGN) \ argument
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dpretty-print.h336 #define pp_wide_int(PP, W, SGN) \ argument
/netbsd-src/external/lgpl3/gmp/dist/demos/perl/
H A DGMP.xs334 #define SGN(x) ((x)<0 ? -1 : (x) != 0) macro