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

/freebsd-current/tools/build/cross-build/include/common/sys/
H A Dcdefs.h107 #define __predict_false(exp) __builtin_expect((exp), 0) macro
/freebsd-current/tests/sys/opencrypto/
H A Dcryptodevh.py56 def __predict_false(exp): return __builtin_expect((exp), 0) function
60 def __predict_false(exp): return (exp) function
/freebsd-current/sys/sys/
H A Dcdefs.h425 #define __predict_false(exp) __builtin_expect((exp), 0) macro
428 #define __predict_false(exp) (exp) macro
/freebsd-current/crypto/openssh/
H A Ddefines.h924 # define __predict_false(exp) __builtin_expect(((exp) != 0), 0) macro
927 # define __predict_false(exp) ((exp) != 0) macro

Completed in 175 milliseconds