Searched defs:RT_LIKELY (Results 1 - 1 of 1) sorted by relevance

/vbox/include/iprt/
H A Dcdefs.h1310 /** @def RT_LIKELY
1318 * IPRT provides the macros RT_LIKELY() and RT_UNLIKELY() as a way to utilize
1325 * and/or RT_LIKELY() with success condition checks, assuming you want
1337 * - Note that RT_SUCCESS() and RT_FAILURE() already makes use of RT_LIKELY()
1349 * See the usage instructions give in the RT_LIKELY() docs.
1353 * @see RT_LIKELY
1357 # define RT_LIKELY(expr) __builtin_expect(!!(expr), 1) macro
1360 # define RT_LIKELY(expr) (expr) macro
1364 # define RT_LIKELY(expr) (expr) macro

Completed in 73 milliseconds