Searched defs:__predict_false (Results 1 – 7 of 7) sorted by relevance
40 #define __predict_false(exp) __builtin_expect((exp) != 0, 0) macro
38 #define __predict_false(exp) __builtin_expect((exp) != 0, 0) macro
79 #define __predict_false(exp) __builtin_expect((exp) != 0, 0) macro
887 # define __predict_false(exp) __builtin_expect(((exp) != 0), 0) macro890 # define __predict_false(exp) ((exp) != 0) macro
48 def __predict_false(exp): return __builtin_expect((exp), 0) function52 def __predict_false(exp): return (exp) function