/prebuilts/ndk/current/platforms/android-23/arch-x86/usr/include/sys/ |
cdefs.h | 303 * to evaluate to true, and __predict_false() if you expect the 308 * * Generally, __predict_false() error condition checks (unless 325 #define __predict_false(exp) __builtin_expect((exp) != 0, 0) macro 328 #define __predict_false(exp) (exp) macro
|
/prebuilts/ndk/current/platforms/android-23/arch-x86_64/usr/include/sys/ |
cdefs.h | 303 * to evaluate to true, and __predict_false() if you expect the 308 * * Generally, __predict_false() error condition checks (unless 325 #define __predict_false(exp) __builtin_expect((exp) != 0, 0) macro 328 #define __predict_false(exp) (exp) macro
|
/prebuilts/ndk/current/platforms/android-24/arch-arm/usr/include/sys/ |
cdefs.h | 303 * to evaluate to true, and __predict_false() if you expect the 308 * * Generally, __predict_false() error condition checks (unless 325 #define __predict_false(exp) __builtin_expect((exp) != 0, 0) macro 328 #define __predict_false(exp) (exp) macro
|
/prebuilts/ndk/current/platforms/android-24/arch-arm64/usr/include/sys/ |
cdefs.h | 303 * to evaluate to true, and __predict_false() if you expect the 308 * * Generally, __predict_false() error condition checks (unless 325 #define __predict_false(exp) __builtin_expect((exp) != 0, 0) macro 328 #define __predict_false(exp) (exp) macro
|
/prebuilts/ndk/current/platforms/android-24/arch-mips/usr/include/sys/ |
cdefs.h | 303 * to evaluate to true, and __predict_false() if you expect the 308 * * Generally, __predict_false() error condition checks (unless 325 #define __predict_false(exp) __builtin_expect((exp) != 0, 0) macro 328 #define __predict_false(exp) (exp) macro
|
/prebuilts/ndk/current/platforms/android-24/arch-mips64/usr/include/sys/ |
cdefs.h | 303 * to evaluate to true, and __predict_false() if you expect the 308 * * Generally, __predict_false() error condition checks (unless 325 #define __predict_false(exp) __builtin_expect((exp) != 0, 0) macro 328 #define __predict_false(exp) (exp) macro
|
/prebuilts/ndk/current/platforms/android-24/arch-x86/usr/include/sys/ |
cdefs.h | 303 * to evaluate to true, and __predict_false() if you expect the 308 * * Generally, __predict_false() error condition checks (unless 325 #define __predict_false(exp) __builtin_expect((exp) != 0, 0) macro 328 #define __predict_false(exp) (exp) macro
|
/prebuilts/ndk/current/platforms/android-24/arch-x86_64/usr/include/sys/ |
cdefs.h | 303 * to evaluate to true, and __predict_false() if you expect the 308 * * Generally, __predict_false() error condition checks (unless 325 #define __predict_false(exp) __builtin_expect((exp) != 0, 0) macro 328 #define __predict_false(exp) (exp) macro
|
/prebuilts/ndk/current/platforms/android-3/arch-arm/usr/include/sys/ |
cdefs.h | 303 * to evaluate to true, and __predict_false() if you expect the 308 * * Generally, __predict_false() error condition checks (unless 325 #define __predict_false(exp) __builtin_expect((exp) != 0, 0) macro 328 #define __predict_false(exp) (exp) macro
|
/prebuilts/ndk/current/platforms/android-4/arch-arm/usr/include/sys/ |
cdefs.h | 303 * to evaluate to true, and __predict_false() if you expect the 308 * * Generally, __predict_false() error condition checks (unless 325 #define __predict_false(exp) __builtin_expect((exp) != 0, 0) macro 328 #define __predict_false(exp) (exp) macro
|
/prebuilts/ndk/current/platforms/android-5/arch-arm/usr/include/sys/ |
cdefs.h | 303 * to evaluate to true, and __predict_false() if you expect the 308 * * Generally, __predict_false() error condition checks (unless 325 #define __predict_false(exp) __builtin_expect((exp) != 0, 0) macro 328 #define __predict_false(exp) (exp) macro
|
/prebuilts/ndk/current/platforms/android-8/arch-arm/usr/include/sys/ |
cdefs.h | 303 * to evaluate to true, and __predict_false() if you expect the 308 * * Generally, __predict_false() error condition checks (unless 325 #define __predict_false(exp) __builtin_expect((exp) != 0, 0) macro 328 #define __predict_false(exp) (exp) macro
|
/prebuilts/ndk/current/platforms/android-9/arch-arm/usr/include/sys/ |
cdefs.h | 303 * to evaluate to true, and __predict_false() if you expect the 308 * * Generally, __predict_false() error condition checks (unless 325 #define __predict_false(exp) __builtin_expect((exp) != 0, 0) macro 328 #define __predict_false(exp) (exp) macro
|
/prebuilts/ndk/current/platforms/android-9/arch-mips/usr/include/sys/ |
cdefs.h | 303 * to evaluate to true, and __predict_false() if you expect the 308 * * Generally, __predict_false() error condition checks (unless 325 #define __predict_false(exp) __builtin_expect((exp) != 0, 0) macro 328 #define __predict_false(exp) (exp) macro
|
/prebuilts/ndk/current/platforms/android-9/arch-x86/usr/include/sys/ |
cdefs.h | 303 * to evaluate to true, and __predict_false() if you expect the 308 * * Generally, __predict_false() error condition checks (unless 325 #define __predict_false(exp) __builtin_expect((exp) != 0, 0) macro 328 #define __predict_false(exp) (exp) macro
|
/bionic/libc/bionic/ |
pthread_rwlock.cpp | 231 if (__predict_false(attr != NULL)) { 278 if (__predict_false(!__state_owned_by_readers(new_state))) { // Happens when reader count overflows.
|
system_properties.cpp | [all...] |
pthread_mutex.cpp | 481 if (__predict_false(!atomic_compare_exchange_weak_explicit(&mutex->state,
|
/bionic/libm/upstream-freebsd/lib/msun/src/ |
s_tanhl.c | 132 if (__predict_false(ix<BIAS-(LDBL_MANT_DIG+1)/2)) { /* |x|<TINY */
|
/frameworks/av/media/libstagefright/ |
MPEG4Writer.cpp | 47 #ifndef __predict_false 48 #define __predict_false(exp) __builtin_expect((exp) != 0, 0) macro 52 ( (__predict_false(condition)) ? false : ({ \ [all...] |