HomeSort by relevance Sort by last modified time
    Searched defs:__predict_true (Results 1 - 7 of 7) sorted by null

  /system/core/libutils/include/utils/
FastStrcmp.h 23 #ifndef __predict_true
24 #define __predict_true(exp) __builtin_expect((exp) != 0, 1) macro
45 return __predict_true(n > 0) &&
46 ((*l != *r) || (__predict_true(n > 1) && cmp(l + 1, r + 1, n - 1)));
52 return __predict_true(n > 0) &&
53 ((tolower(*l) != tolower(*r)) || (__predict_true(n > 1) && cmp(l + 1, r + 1, n - 1)));
61 return __predict_true(n > 0) &&
62 ((*l != *r) || (__predict_true(n > 1) && cmp(l + 1, r + 1, n - 1)));
67 return (*l != *r) || (__predict_true(*l) && cmp(l + 1, r + 1));
72 return (tolower(*l) != tolower(*r)) || (__predict_true(*l) && cmp(l + 1, r + 1))
    [all...]
  /device/linaro/bootloader/edk2/StdLib/Include/sys/
EfiCdefs.h 285 * compiler feature. Use __predict_true() if you expect the expression
293 * document it), and/or __predict_true() `no-error' condition
307 #define __predict_true(exp) __builtin_expect((exp) != 0, 1) macro
310 #define __predict_true(exp) (exp) macro
  /bionic/libc/include/sys/
cdefs.h 132 * compiler feature. Use __predict_true() if you expect the expression
140 * document it), and/or __predict_true() `no-error' condition
153 #define __predict_true(exp) __builtin_expect((exp) != 0, 1) macro
  /device/linaro/bootloader/arm-trusted-firmware/include/lib/stdlib/sys/
cdefs.h 351 * compiler feature. Use __predict_true() if you expect the expression
359 * document it), and/or __predict_true() `no-error' condition
373 #define __predict_true(exp) __builtin_expect((exp), 1) macro
376 #define __predict_true(exp) (exp) macro
  /external/python/cpython2/Lib/plat-freebsd6/
IN.py 46 def __predict_true(exp): return __builtin_expect((exp), 1) function
50 def __predict_true(exp): return (exp) function
  /external/python/cpython2/Lib/plat-freebsd7/
IN.py 46 def __predict_true(exp): return __builtin_expect((exp), 1) function
50 def __predict_true(exp): return (exp) function
  /external/python/cpython2/Lib/plat-freebsd8/
IN.py 46 def __predict_true(exp): return __builtin_expect((exp), 1) function
50 def __predict_true(exp): return (exp) function

Completed in 293 milliseconds