D | basic-ops.h | 35 #define ANDIF(x, y) ((x) && (y)) argument 36 #define ORIF(x, y) ((x) || (y)) argument 38 #define SUBBI(x, y) ((x) - (y)) argument 39 #define ANDBI(x, y) ((x) & (y)) argument 40 #define ORBI(x, y) ((x) | (y)) argument 41 #define XORBI(x, y) ((x) ^ (y)) argument 42 #define NEGBI(x) (- (x)) argument 43 #define NOTBI(x) (! (BI) (x)) argument 44 #define INVBI(x) (~ (x)) argument 45 #define EQBI(x, y) ((BI) (x) == (BI) (y)) argument [all …]
|