HomeSort by relevance Sort by last modified time
    Searched refs:SWR_ASSUME (Results 1 - 2 of 2) sorted by null

  /external/mesa3d/src/gallium/drivers/swr/rasterizer/common/
swr_assert.h 35 // - SWR_ASSUME(expression, ...): Tell compiler that the expression is true.
48 // SWR_ASSUME if SWR_ASSERT is disabled.
50 // error checking (see SWR_ASSUME)
73 #define SWR_ASSUME(e, ...) _SWR_MACRO_START __assume(e); _SWR_MACRO_END
75 #define SWR_ASSUME(e, ...) _SWR_MACRO_START __builtin_assume(e); _SWR_MACRO_END
77 #define SWR_ASSUME(e, ...) _SWR_MACRO_START ((e) ? ((void)0) : __builtin_unreachable()); _SWR_MACRO_END
79 #define SWR_ASSUME(e, ...) _SWR_MACRO_START ASSUME(e); _SWR_MACRO_END
193 #define SWR_ASSUME_ASSERT(e, ...) SWR_ASSUME(e, ##__VA_ARGS__)
200 #define SWR_REL_ASSUME_ASSERT(e, ...) SWR_ASSUME(e, ##__VA_ARGS__)
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
utils.h 325 SWR_ASSUME(false); return nullptr;
346 SWR_ASSUME(false); return nullptr;

Completed in 839 milliseconds