Searched defs:SIGN (Results 1 – 12 of 12) sorted by relevance
63 #define SIGN(x) ( (x)<0 ? -1:((x)>0?1:0 ) ) macro
47 #define SIGN(x) ( x<0 ? -1:( x>0 ? 1:0 ) ) macro
57 #define SIGN(x) (((x) < 0) ? -1 : 1) macro
32 #define SIGN(Number) (((Number) < 0) ? -1 : 1) macro
93 static final int SIGN = -128; field in Base64
44 #define SIGN(x) ((x) >= 0 ? ((x)>0 ? 1: 0) : -1) macro
101 #define SIGN(x) (((x) >= 0) ? (((x) > 0) ? 1 : 0) : -1) macro
243 #define SIGN 2 /* unsigned/signed long */ macro
1167 public static final Field SIGN = new Field("sign"); field in NumberFormat.Field
1724 public static final Field SIGN = new Field("sign"); field in NumberFormat.Field
1818 public static final Field SIGN = new Field("sign"); field in NumberFormat.Field
165 #define SIGN 0x80000000U macro