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

/vbox/include/iprt/
H A Dcdefs.h1318 * IPRT provides the macros RT_LIKELY() and RT_UNLIKELY() as a way to utilize
1323 * - Generally, use RT_UNLIKELY() with error condition checks (unless you
1338 * and RT_UNLIKELY(). Should you wish for prediction free status checks,
1344 * @see RT_UNLIKELY
1346 /** @def RT_UNLIKELY
1358 # define RT_UNLIKELY(expr) __builtin_expect(!!(expr), 0) macro
1361 # define RT_UNLIKELY(expr) (expr) macro
1365 # define RT_UNLIKELY(expr) (expr) macro

Completed in 579 milliseconds