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

  /device/linaro/bootloader/edk2/StdLib/Include/sys/
EfiCdefs.h 286 * to evaluate to true, and __predict_false() if you expect the
291 * * Generally, __predict_false() error condition checks (unless
308 #define __predict_false(exp) __builtin_expect((exp) != 0, 0) macro
311 #define __predict_false(exp) (exp) macro
  /bionic/libc/include/sys/
cdefs.h 104 * to evaluate to true, and __predict_false() if you expect the
109 * * Generally, __predict_false() error condition checks (unless
125 #define __predict_false(exp) __builtin_expect((exp) != 0, 0) macro
  /device/linaro/bootloader/arm-trusted-firmware/include/lib/stdlib/sys/
cdefs.h 352 * to evaluate to true, and __predict_false() if you expect the
357 * * Generally, __predict_false() error condition checks (unless
374 #define __predict_false(exp) __builtin_expect((exp), 0) macro
377 #define __predict_false(exp) (exp) macro
  /external/openssh/
defines.h 863 # define __predict_false(exp) __builtin_expect(((exp) != 0), 0) macro
866 # define __predict_false(exp) ((exp) != 0) macro
  /external/python/cpython2/Lib/plat-freebsd6/
IN.py 48 def __predict_false(exp): return __builtin_expect((exp), 0) function
52 def __predict_false(exp): return (exp) function
  /external/python/cpython2/Lib/plat-freebsd7/
IN.py 48 def __predict_false(exp): return __builtin_expect((exp), 0) function
52 def __predict_false(exp): return (exp) function
  /external/python/cpython2/Lib/plat-freebsd8/
IN.py 48 def __predict_false(exp): return __builtin_expect((exp), 0) function
52 def __predict_false(exp): return (exp) function
  /frameworks/av/media/libstagefright/
MPEG4Writer.cpp 54 #ifndef __predict_false
55 #define __predict_false(exp) __builtin_expect((exp) != 0, 0) macro
59 ( (__predict_false(condition)) ? false : ({ \
    [all...]

Completed in 304 milliseconds