Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/bmake/
H A Dbuf.h93 #define __predict_false(x) (x) macro
/freebsd-12.1/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-12.1/crypto/openssh/
H A Ddefines.h862 # define __predict_false(exp) __builtin_expect(((exp) != 0), 0) macro
865 # define __predict_false(exp) ((exp) != 0) macro
/freebsd-12.1/sys/sys/
H A Dcdefs.h455 #define __predict_false(exp) __builtin_expect((exp), 0) macro
458 #define __predict_false(exp) (exp) macro