Home
last modified time | relevance | path

Searched refs:UNLIKELY (Results 1 – 6 of 6) sorted by relevance

/device/google/contexthub/firmware/os/inc/
Dtoolchain.h39 #define UNLIKELY(x) (x) macro
83 #define UNLIKELY(x) (__builtin_expect(x, 0))
Dutil.h54 if (UNLIKELY(n == 0)) in LOG2_FLOOR()
/device/google/contexthub/lefty/
DLefty.h21 #undef UNLIKELY
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dobmalloc.c11 # define UNLIKELY(value) __builtin_expect((value), 0) macro
13 # define UNLIKELY(value) (value) macro
755 if (UNLIKELY(running_on_valgrind == -1)) in PyObject_Malloc()
757 if (UNLIKELY(running_on_valgrind)) in PyObject_Malloc()
964 if (UNLIKELY(running_on_valgrind > 0)) in PyObject_Free()
1199 if (UNLIKELY(running_on_valgrind > 0)) in PyObject_Realloc()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dobmalloc.c36 # define UNLIKELY(value) __builtin_expect((value), 0) macro
38 # define UNLIKELY(value) (value) macro
798 if (UNLIKELY(running_on_valgrind == -1)) in PyObject_Malloc()
800 if (UNLIKELY(running_on_valgrind)) in PyObject_Malloc()
1008 if (UNLIKELY(running_on_valgrind > 0)) in PyObject_Free()
1248 if (UNLIKELY(running_on_valgrind > 0)) in PyObject_Realloc()
/device/google/contexthub/firmware/os/platform/stm32/
Ddma.c223 if (UNLIKELY(!state->callback)) { in dmaIsr()