Search | Google it | Results 1 - 1 of 1 for fundef:__predict_false from t2ex/bsd_source/lib/libc/src_bsd/include/sys/cdefs.h (0.00 seconds) |
202: #define __predict_true(exp) __builtin_expect(((exp) != 0), 1) 203: #define __predict_false(exp) __builtin_expect(((exp) != 0), 0) 204: #else 205: #define __predict_true(exp) ((exp) != 0) 206: #define __predict_false(exp) ((exp) != 0) 207: #endif