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)
57 #define SWR_ASSUME(e, ...) __assume(e)
59 #define SWR_ASSUME(e, ...) __builtin_assume(e)
61 #define SWR_ASSUME(e, ...) ((e) ? ((void)0) : __builtin_unreachable())
63 #define SWR_ASSUME(e, ...) ASSUME(e)
150 #define SWR_ASSUME_ASSERT(e, ...) SWR_ASSUME(e, ##__VA_ARGS__)
156 #define SWR_REL_ASSUME_ASSERT(e, ...) SWR_ASSUME(e, ##__VA_ARGS__)
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
utils.h     [all...]

Completed in 682 milliseconds