gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 1 of 1 for fundef:__predict_false from t2ex/bsd_source/t2ex/network/net/src_bsd/sys/cdefs.h (0.00 seconds)
t2ex
bsd_source/t2ex/network/net/src_bsd/sys/cdefs.h - 13.5KB - 402 lines
319: #define __predict_true(exp)     __builtin_expect((exp) != 0, 1)
320: #define __predict_false(exp)    __builtin_expect((exp) != 0, 0)
321: #else
322: #define __predict_true(exp)     (exp)
323: #define __predict_false(exp)    (exp)
324: #endif