HomeSort by: relevance | last modified time | path
    Searched defs:__predict_false (Results 1 - 4 of 4) sorted by relevancy

  /src/common/lib/libc/gen/
rbtree.c 41 #ifndef __predict_false
42 #define __predict_false(exp) (exp) macro
221 if (__predict_false(diff == 0)) {
264 if (__predict_false(parent == (struct rb_node *)(void *)&rbt->rbt_root)) {
442 if (__predict_false(RB_ROOT_P(rbt, grandpa))) {
533 if (__predict_false(rbt->rbt_minmax[RB_POSITION(self)] == self)) {
540 if (__predict_false(was_root)) {
599 if (__predict_false(RB_RED_P(standin_son))) {
684 if (__predict_false(rbt->rbt_minmax[RB_POSITION(self)] == self))
743 if (__predict_false(was_root))
    [all...]
  /src/lib/librumpuser/
rumpuser_port.h 239 #define __predict_false(a) a macro
  /src/sys/sys/
cdefs.h 530 * to evaluate to true, and __predict_false() if you expect the
535 * * Generally, __predict_false() error condition checks (unless
559 #define __predict_false(exp) __builtin_expect((exp) ? 1 : 0, 0) macro
562 #define __predict_false(exp) (exp) macro
  /src/tools/compat/
compat_defs.h 162 #undef __predict_false
163 #define __predict_false(x) (x) macro

Completed in 16 milliseconds