Searched defs:__predict_false (Results 1 - 4 of 4) sorted by relevance

/freebsd-11-stable/contrib/bmake/
H A Dbuf.h93 #define __predict_false(x) (x) macro
/freebsd-11-stable/sys/sys/
H A Dcdefs.h466 #define __predict_false(exp) __builtin_expect((exp), 0) macro
469 #define __predict_false(exp) (exp) macro
/freebsd-11-stable/tests/sys/opencrypto/
H A Dcryptodevh.py77 def __predict_false(exp): return __builtin_expect((exp), 0) function
81 def __predict_false(exp): return (exp) function
/freebsd-11-stable/crypto/openssh/
H A Ddefines.h863 # define __predict_false(exp) __builtin_expect(((exp) != 0), 0) macro
866 # define __predict_false(exp) ((exp) != 0) macro

Completed in 99 milliseconds